/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --rose:    #c8837a;
  --rose-lt: #e8b4ae;
  --gold:    #c9a96e;
  --gold-lt: #e8d5b0;
  --cream:   #fdf7f0;
  --dark:    #2d2120;
  --mid:     #6b4f4a;
  --light:   #f5ede6;
  --white:   #ffffff;
  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'Montserrat', system-ui, sans-serif;
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--ff-sans);
  font-size: 15px;
  color: var(--dark);
  background: var(--cream);
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Navbar ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

#navbar.scrolled {
  background: rgba(253, 247, 240, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 24px rgba(200,131,122,.12);
  padding: 0;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding var(--transition);
}

#navbar.scrolled .nav-inner { padding: 14px 24px; }

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity var(--transition);
}

.logo:hover { opacity: .9; }

.logo-text {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
  transition: color var(--transition);
}

#navbar.scrolled .logo-text { color: var(--rose); text-shadow: none; }

.logo-img {
  height: 58px;
  width: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid rgba(255,255,255,.7);
  box-shadow: 0 0 0 4px rgba(200,131,122,.35), 0 4px 20px rgba(0,0,0,.3);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.logo:hover .logo-img {
  transform: scale(1.06);
  box-shadow: 0 0 0 5px rgba(200,131,122,.5), 0 6px 28px rgba(0,0,0,.35);
}

#navbar.scrolled .logo-img {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(200,131,122,.2), 0 4px 16px rgba(200,131,122,.25);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}

#navbar.scrolled .nav-links a { color: var(--mid); }

.nav-links a:hover { border-color: var(--rose); color: var(--rose); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background var(--transition);
}
#navbar.scrolled .burger span { background: var(--mid); }

/* ── Hero ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(201,169,110,.25) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 40%, rgba(200,131,122,.30) 0%, transparent 55%),
    linear-gradient(160deg, #3d1f1b 0%, #5c2e28 40%, #3d2015 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8837a' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: .5;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Floating petals */
#hero::before, #hero::after {
  content: '';
  position: absolute;
  border-radius: 50% 30% 50% 30%;
  opacity: .12;
  animation: float 12s ease-in-out infinite;
}
#hero::before {
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--rose-lt), transparent);
  top: -80px; right: -80px;
  animation-delay: -4s;
}
#hero::after {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--gold-lt), transparent);
  bottom: -60px; left: -60px;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-30px) rotate(6deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 80px 24px 40px;
}

.hero-sub {
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

.hero-content h1 {
  font-family: var(--ff-serif);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  letter-spacing: .06em;
  text-shadow: 0 4px 40px rgba(0,0,0,.25);
}

.hero-desc {
  font-family: var(--ff-serif);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-style: italic;
  font-weight: 300;
  color: var(--rose-lt);
  letter-spacing: .08em;
}

.btn-primary {
  margin-top: 12px;
  display: inline-block;
  padding: 14px 40px;
  background: var(--rose);
  color: var(--white);
  font-family: var(--ff-sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: 40px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 6px 30px rgba(200,131,122,.45);
}

.btn-primary:hover {
  background: #b36e65;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(200,131,122,.55);
}

.scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-hint span {
  display: block;
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 12px;
  position: relative;
}

.scroll-hint span::after {
  content: '';
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: rgba(255,255,255,.6);
  border-radius: 2px;
  animation: scroll-bob 2s ease-in-out infinite;
}

@keyframes scroll-bob {
  0%, 100% { top: 5px; opacity: 1; }
  80%       { top: 18px; opacity: 0; }
}

/* ── Section shared ── */
section { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.15;
}

.section-desc {
  margin-top: 14px;
  font-size: .9rem;
  color: var(--mid);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Services ── */
#hizmetler { background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(200,131,122,.15);
  border-radius: 20px;
  padding: 36px 24px 32px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card {
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .5s ease;
  border-radius: inherit;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(200,131,122,.18);
  border-color: var(--rose-lt);
}

.service-card:hover::before { opacity: 1; }

/* 💍 Söz & Nişan — yüzük dalgaları */
[data-theme="nisan"]::before { display: none; }

[data-theme="nisan"] .ring-ripple {
  display: none;
}
[data-theme="nisan"]:hover .ring-ripple {
  display: block;
}
[data-theme="nisan"]:hover {
  box-shadow: 0 16px 48px rgba(201,169,110,.28);
  border-color: var(--gold-lt);
}

.card-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s ease;
}
.service-card:hover .card-canvas { opacity: 1; }

.ring-ripple {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  overflow: hidden;
}

.ring-ripple span {
  position: absolute;
  top: 50%; left: 50%;
  width: 40px; height: 40px;
  margin: -20px 0 0 -20px;
  border-radius: 50%;
  border: 2.5px solid rgba(201,169,110,.7);
  animation: ring-wave 2.4s ease-out infinite;
}
.ring-ripple span:nth-child(2) { animation-delay: .8s; }
.ring-ripple span:nth-child(3) { animation-delay: 1.6s; }

@keyframes ring-wave {
  0%   { transform: scale(.3); opacity: .9; }
  100% { transform: scale(4);  opacity: 0; }
}

/* 🕯️ Kına Gecesi — nefes alan fener parıltısı */
[data-theme="kina"]::before {
  background: radial-gradient(ellipse at 50% 50%,
    rgba(220,90,40,.5)   0%,
    rgba(210,120,60,.35) 30%,
    rgba(200,131,122,.2) 55%,
    transparent          75%);
  animation: lantern 2.4s ease-in-out infinite alternate;
}
@keyframes lantern {
  0%   { transform: scale(.88); }
  100% { transform: scale(1.12); }
}
[data-theme="kina"]:hover {
  box-shadow: 0 16px 48px rgba(220,100,50,.22);
  border-color: rgba(220,130,80,.4);
}

/* 🎂 Doğum Günü — dönen renk çarkı */
[data-theme="dogumgunu"]::before {
  background: conic-gradient(
    rgba(232,100,150,.35)  0deg,
    rgba(255,200,80,.3)    45deg,
    rgba(100,190,220,.3)   90deg,
    rgba(140,210,140,.3)   135deg,
    rgba(200,130,210,.3)   180deg,
    rgba(232,100,150,.3)   225deg,
    rgba(255,200,80,.3)    270deg,
    rgba(100,190,220,.3)   315deg,
    rgba(232,100,150,.35)  360deg
  );
  border-radius: 50%;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  animation: color-wheel 5s linear infinite;
}
@keyframes color-wheel {
  0%   { transform: rotate(0deg)   scale(.85); }
  100% { transform: rotate(360deg) scale(.85); }
}
[data-theme="dogumgunu"]:hover {
  box-shadow: 0 16px 48px rgba(232,100,150,.2);
  border-color: rgba(200,170,220,.5);
}

/* 🍼 Baby Shower — yumuşak kabarcıklar */
[data-theme="babyshower"]::before {
  background-image:
    radial-gradient(circle at 20% 80%, rgba(180,210,240,.5) 12px, transparent 12px),
    radial-gradient(circle at 70% 60%, rgba(240,190,210,.5) 8px,  transparent 8px),
    radial-gradient(circle at 50% 30%, rgba(180,210,240,.4) 16px, transparent 16px),
    radial-gradient(circle at 85% 15%, rgba(240,190,210,.4) 10px, transparent 10px),
    radial-gradient(circle at 10% 40%, rgba(200,230,250,.35) 6px, transparent 6px);
  background-size: 100% 100%;
  animation: bubbles 3s ease-in-out infinite alternate;
}
@keyframes bubbles {
  0%   { transform: translateY(0)    scale(1); }
  100% { transform: translateY(-10px) scale(1.03); }
}
[data-theme="babyshower"]:hover {
  box-shadow: 0 16px 48px rgba(180,210,240,.3);
  border-color: rgba(180,210,240,.5);
}

/* 🎀 Cinsiyet Partisi — pembe/mavi kayıyor */
[data-theme="cinsiyet"]::before {
  background: linear-gradient(105deg,
    rgba(240,180,200,.3) 0%,
    rgba(240,180,200,.15) 45%,
    rgba(170,200,240,.15) 55%,
    rgba(170,200,240,.3) 100%);
  background-size: 200% 200%;
  animation: gender-slide 2.5s ease-in-out infinite alternate;
}
@keyframes gender-slide {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
[data-theme="cinsiyet"]:hover {
  box-shadow: 0 16px 48px rgba(200,180,220,.25);
  border-color: rgba(210,180,220,.5);
}

/* 🌙 Sünnet Mevlidi — yeşil hale */
[data-theme="sunnet"]::before {
  background: radial-gradient(ellipse at 50% 50%,
    rgba(100,180,100,.55) 0%,
    rgba(80,160,90,.3)   35%,
    rgba(60,140,80,.1)   60%,
    transparent          80%);
  animation: sunnet-halo 2.5s ease-in-out infinite alternate;
}
@keyframes sunnet-halo {
  0%   { transform: scale(.82); }
  100% { transform: scale(1.08); }
}
[data-theme="sunnet"]:hover {
  box-shadow: 0 16px 48px rgba(80,160,90,.3);
  border-color: rgba(100,180,100,.45);
}

/* 👰🤵 Bekarlığa Veda — geleneksel altın brokar dalgası */
[data-theme="bekarlik"]::before {
  background:
    repeating-linear-gradient(
      45deg,
      transparent              0px,
      transparent              8px,
      rgba(201,169,110,.18)    8px,
      rgba(201,169,110,.18)    10px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent              0px,
      transparent              8px,
      rgba(232,213,176,.14)    8px,
      rgba(232,213,176,.14)    10px
    ),
    radial-gradient(ellipse at 50% 50%, rgba(201,169,110,.25) 0%, transparent 70%);
  background-size: 20px 20px, 20px 20px, 100% 100%;
  animation: brokar 3s linear infinite;
}
@keyframes brokar {
  0%   { background-position: 0px 0px, 0px 0px, center; }
  100% { background-position: 40px 40px, -40px 40px, center; }
}
[data-theme="bekarlik"]:hover {
  box-shadow: 0 16px 48px rgba(201,169,110,.28);
  border-color: rgba(201,169,110,.5);
}

/* 🍽️ Toplu Yemek — JS canvas */
[data-theme="yemek"]::before { display: none; }
[data-theme="yemek"]:hover {
  box-shadow: 0 16px 48px rgba(201,169,110,.25);
  border-color: rgba(201,169,110,.4);
}

/* ✨ Ve Daha Fazlası — gökkuşağı parıltı kayıyor */
[data-theme="more"]::before {
  background: linear-gradient(110deg,
    rgba(232,140,160,.45),
    rgba(201,169,110,.4),
    rgba(140,190,230,.4),
    rgba(190,140,210,.4),
    rgba(140,210,150,.4),
    rgba(232,140,160,.45));
  background-size: 400% 100%;
  animation: rainbow-shift 3s linear infinite;
}
@keyframes rainbow-shift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 400% 50%; }
}
[data-theme="more"]:hover {
  box-shadow: 0 16px 60px rgba(200,131,122,.22);
  border-color: var(--gold-lt);
}

.service-card--wide {
  grid-column: span 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: left;
  background: linear-gradient(135deg, #fdf2ee 0%, #fdf7f0 100%);
  border-color: var(--gold-lt);
  padding: 32px 40px;
}

.service-card--wide .service-icon { font-size: 2.2rem; flex-shrink: 0; }
.service-card--wide h3 { margin-bottom: 4px; }

.service-icon { font-size: 2.4rem; margin-bottom: 16px; position: relative; z-index: 1; }

.service-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: .83rem;
  color: var(--mid);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ── About ── */
#hakkimizda {
  background: linear-gradient(160deg, #f9ede6 0%, var(--cream) 100%);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-logo-img {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 60% 40% 40% 60% / 55% 55% 45% 45%;
  box-shadow: 0 24px 80px rgba(200,131,122,.35);
  border: 6px solid rgba(200,131,122,.15);
  display: block;
  margin: 0 auto;
}

.about-text .section-tag { display: block; margin-bottom: 10px; }

.about-text h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-text p {
  font-size: .9rem;
  color: var(--mid);
  margin-bottom: 16px;
  line-height: 1.75;
}

.btn-outline {
  display: inline-block;
  margin-top: 12px;
  padding: 13px 36px;
  border: 1.5px solid var(--rose);
  border-radius: 40px;
  color: var(--rose);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn-outline:hover {
  background: var(--rose);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Contact ── */
#iletisim { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.contact-card {
  background: var(--white);
  border: 1px solid rgba(200,131,122,.14);
  border-radius: 18px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(200,131,122,.18);
  border-color: var(--rose-lt);
}

.contact-card--address {
  grid-column: span 4;
  flex-direction: row;
  text-align: left;
  gap: 18px;
  padding: 24px 32px;
}

.contact-card--whatsapp { border-color: rgba(37,211,102,.25); }
.contact-card--whatsapp:hover { border-color: rgba(37,211,102,.5); box-shadow: 0 12px 40px rgba(37,211,102,.12); }

.contact-card--instagram { border-color: rgba(200,131,122,.25); }

.contact-icon { font-size: 2rem; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rose);
}

.contact-value {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--dark);
}

.contact-card--address .contact-value {
  font-size: 1rem;
  line-height: 1.5;
}

.map-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(200,131,122,.15);
  height: 380px;
  border: 1px solid rgba(200,131,122,.12);
}

.map-wrapper iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: saturate(.85) contrast(.95);
}

/* ── Footer ── */
footer {
  background: var(--dark);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--rose-lt);
  letter-spacing: .08em;
}

.footer-copy {
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .06em;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.5);
  transition: color var(--transition), border-color var(--transition), transform var(--transition);
}

.footer-social a:hover {
  color: var(--rose-lt);
  border-color: var(--rose-lt);
  transform: translateY(-3px);
}

.footer-social svg { width: 18px; height: 18px; }

/* ── Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Cookie Banner ── */
#cookieBanner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999;
  background: #2d2120;
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(200,131,122,.35);
  border-radius: 16px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 620px;
  width: calc(100% - 48px);
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
  font-size: .8rem;
  line-height: 1.5;
  transition: opacity .4s ease, transform .4s ease;
}

#cookieBanner.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(16px);
  pointer-events: none;
  visibility: hidden;
}

#cookieBanner p { margin: 0; flex: 1; }
#cookieBanner a { color: var(--rose-lt); text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-actions button {
  padding: 8px 18px;
  border-radius: 20px;
  border: none;
  font-size: .75rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity .2s;
}

.cookie-actions button:hover { opacity: .85; }

#cookieAccept {
  background: var(--rose);
  color: #fff;
}

#cookieReject {
  background: transparent;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.2);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--wide { grid-column: span 2; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-image { max-width: 320px; margin: 0 auto; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-card--address { grid-column: span 2; }
}

@media (max-width: 640px) {
  .burger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh; width: 260px;
    background: rgba(253,247,240,.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transition: right var(--transition);
    box-shadow: -4px 0 40px rgba(0,0,0,.1);
  }

  .nav-links.open { right: 0; }
  .nav-links a { color: var(--mid) !important; font-size: .9rem; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card--wide { grid-column: span 1; flex-direction: column; text-align: center; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-card--address { grid-column: span 1; flex-direction: column; text-align: center; }

  .footer-inner { flex-direction: column; text-align: center; }

  section { padding: 72px 0; }
}
