@import url('https://api.fontshare.com/v2/css?f[]=general-sans@200,300,400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,200..700;1,9..40,200..700&display=swap');

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  --black: #000;
  --white: #fff;
  --dark: #0a0a0a;
  --dark-2: #111;
  --dark-3: #1a1a1a;
  --gray: #888;
  --gray-light: #bbb;
  --gray-lighter: #f5f5f5;
  --gray-border: #222;

  --font-primary: 'General Sans', 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'General Sans', 'DM Sans', sans-serif;

  --header-height: 72px;
  --bottom-bar-height: 64px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-bottom: var(--bottom-bar-height);
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition);
}

a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 8vw, 7rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1rem, 1.5vw, 1.25rem); }

p {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--gray-light);
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; }
.text-gray { color: var(--gray); }

/* ========================================
   UTILITY / LAYOUT
   ======================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--dark);
}

.section-light {
  background: var(--white);
  color: var(--black);
}

.section-light p {
  color: #555;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Section header */
.section-header {
  margin-bottom: 64px;
}

.section-header .label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}

.section-light .section-header .label {
  color: #888;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 560px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered p {
  margin: 0 auto;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-white {
  background: var(--white);
  color: var(--black);
}

.btn-white:hover {
  background: var(--gray-lighter);
  opacity: 1;
}

.btn-black {
  background: var(--black);
  color: var(--white);
}

.btn-black:hover {
  background: var(--dark-2);
  opacity: 1;
}

.btn-outline {
  border: 1px solid var(--white);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  opacity: 1;
}

.btn-outline-dark {
  border: 1px solid var(--black);
  color: var(--black);
  background: transparent;
}

.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
  opacity: 1;
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 40px;
}

.header-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width var(--transition);
}

.header-nav a:hover::after,
.header-nav a.active::after {
  width: 100%;
}

.header-nav a:hover {
  opacity: 1;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-cta .btn {
  padding: 10px 24px;
  font-size: 0.8rem;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.hero-logo {
  width: 80px;
  height: auto;
  margin: 0 auto 32px;
  opacity: 0.9;
}

.hero h1 {
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1;
}

.hero .hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.4rem);
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 40px;
}

.hero .btn {
  margin-top: 8px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounceDown 2s infinite;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ========================================
   MARQUEE
   ======================================== */
.marquee {
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
  background: var(--black);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 20s linear infinite;
}

.marquee-track span {
  flex-shrink: 0;
  padding: 0 24px;
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
}

.marquee-track .dot {
  color: var(--white);
  padding: 0 8px;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================================
   SERVICE CARDS
   ======================================== */
.service-card {
  background: var(--dark-2);
  border: 1px solid var(--gray-border);
  padding: 48px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  background: var(--dark-3);
  transform: translateY(-4px);
}

.service-card .card-number {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.service-card .card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}

.service-card .card-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
}

.service-card h3 {
  margin-bottom: 12px;
  font-weight: 600;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 24px;
}

.service-card .card-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
}

.service-card .card-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.service-card:hover .card-link svg {
  transform: translateX(4px);
}

/* ========================================
   ABOUT PREVIEW
   ======================================== */
.about-preview .about-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--dark-2);
}

.about-preview .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-preview .about-image .placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--gray-border);
}

.about-text .label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}

.about-text h2 {
  margin-bottom: 24px;
}

.about-text p {
  margin-bottom: 32px;
}

/* ========================================
   REVIEWS
   ======================================== */
.reviews-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0 24px;
  scrollbar-width: none;
}

.reviews-slider::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 360px;
  scroll-snap-align: start;
  background: var(--dark-2);
  border: 1px solid var(--gray-border);
  padding: 40px 32px;
  position: relative;
}

.review-card .review-quote {
  font-size: 2rem;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1;
}

.review-card p {
  font-size: 0.95rem;
  color: var(--gray-light);
  margin-bottom: 24px;
  line-height: 1.6;
}

.review-card .review-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
}

.review-card .review-stars {
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-top: 4px;
}

/* ========================================
   CTA BAND
   ======================================== */
.cta-band {
  padding: 80px 0;
  text-align: center;
  background: var(--white);
  color: var(--black);
}

.cta-band h2 {
  margin-bottom: 24px;
  color: var(--black);
}

.cta-band p {
  color: #555;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   PRICE LIST
   ======================================== */
.price-category {
  margin-bottom: 64px;
}

.price-category:last-child {
  margin-bottom: 0;
}

.price-category h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-border);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}

.price-item:hover {
  padding-left: 12px;
}

.price-item .service-name {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-light);
}

.price-item .service-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  margin-left: 24px;
}

.section-light .price-category h3 {
  border-bottom-color: #ddd;
  color: var(--black);
}

.section-light .price-item {
  border-bottom-color: #eee;
}

.section-light .price-item .service-name {
  color: #555;
}

.section-light .price-item .service-price {
  color: var(--black);
}

/* ========================================
   TEAM
   ======================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
}

.team-card {
  text-align: center;
}

.team-card .team-photo {
  aspect-ratio: 3/4;
  background: var(--dark-2);
  border: 1px solid var(--gray-border);
  margin-bottom: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card .team-photo .placeholder {
  color: var(--gray);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-card .team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-card .team-role {
  font-size: 0.85rem;
  color: var(--gray);
  letter-spacing: 0.05em;
}

/* ========================================
   GALLERY
   ======================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--dark-2);
  border: 1px solid var(--gray-border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--transition);
}

.gallery-item:hover::after {
  background: rgba(0,0,0,0.2);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2001;
}

/* ========================================
   CONTACT
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-form .form-group {
  margin-bottom: 24px;
}

.contact-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--dark-2);
  border: 1px solid var(--gray-border);
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--white);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-item .info-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item .info-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
}

.contact-info-item h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 0.95rem;
}

.map-container {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--dark-2);
  border: 1px solid var(--gray-border);
  overflow: hidden;
  margin-top: 48px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(1);
}

.map-container .placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--gray-border);
  background: var(--black);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand .footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray);
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--gray);
  padding: 4px 0;
}

.footer-col a:hover {
  color: var(--white);
  opacity: 1;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gray-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  opacity: 1;
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--gray-border);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ========================================
   FIXED BOTTOM BAR
   ======================================== */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--bottom-bar-height);
  background: var(--white);
  display: flex;
  z-index: 900;
  border-top: 1px solid #e0e0e0;
}

.bottom-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
  border-right: 1px solid #e0e0e0;
  text-decoration: none;
}

.bottom-bar a:last-child {
  border-right: none;
}

.bottom-bar a:hover {
  background: var(--black);
  color: var(--white);
  opacity: 1;
}

.bottom-bar a svg {
  width: 22px;
  height: 22px;
}

/* WhatsApp specific */
.bottom-bar .bar-whatsapp {
  background: #25D366;
  color: var(--white);
}

.bottom-bar .bar-whatsapp:hover {
  background: #1da851;
  color: var(--white);
}

/* Randevu, telefon, harita — WhatsApp ile aynı mantık: dolgu renk + beyaz ikon */
.bottom-bar .bar-randevu {
  background: #c9a227;
  color: var(--white);
}

.bottom-bar .bar-randevu:hover {
  background: #a68620;
  color: var(--white);
}

.bottom-bar .bar-phone {
  background: #2563eb;
  color: var(--white);
}

.bottom-bar .bar-phone:hover {
  background: #1d4ed8;
  color: var(--white);
}

.bottom-bar .bar-maps {
  background: #ea4335;
  color: var(--white);
}

.bottom-bar .bar-maps:hover {
  background: #c5221f;
  color: var(--white);
}

/* ========================================
   PAGE HERO (sub pages)
   ======================================== */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: var(--dark);
  border-bottom: 1px solid var(--gray-border);
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 560px;
  margin: 0 auto;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
  .header-nav { display: none; }
  .header-cta .btn { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: flex; }

  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .contact-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .team-grid { gap: 32px; }

  .section { padding: 72px 0; }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --header-height: 64px;
    --bottom-bar-height: 60px;
  }

  .header-inner { padding: 0 20px; }

  .container, .container-wide { padding: 0 16px; }

  .grid-3 { grid-template-columns: 1fr; }

  .hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
    letter-spacing: 0.05em;
  }

  .hero .hero-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
  }

  .section { padding: 56px 0; }
  .section-header { margin-bottom: 40px; }

  .review-card { flex: 0 0 300px; padding: 32px 24px; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .price-item { padding: 12px 0; }

  .cta-band { padding: 56px 0; }

  .page-hero { padding: 120px 0 56px; }
}
