/* ============================================================
   Couture Drapes Studio — style.css
   Editorial luxury: ivory / champagne / taupe / charcoal
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --ivory:      #f6f1e9;
  --cream:      #efe7db;
  --champagne:  #e8dcc7;
  --beige:      #ddd0bd;
  --taupe:      #a9968170;
  --taupe-solid:#8c7a63;
  --gold:       #b8975a;
  --gold-soft:  #cdb489;
  --charcoal:   #1f1c18;
  --ink:        #2a2621;
  --line:       #cdbfa9;

  --bg:   var(--ivory);
  --text: var(--ink);

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Jost", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1440px;
  --gutter: clamp(1.25rem, 5vw, 6rem);
  --section-y: clamp(4.5rem, 11vw, 10rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(0.95rem, 0.4vw + 0.85rem, 1.05rem);
  line-height: 1.75;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; }
::selection { background: var(--gold-soft); color: var(--charcoal); }

/* ---------- TYPE HELPERS ---------- */
.kicker {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--taupe-solid);
  margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: 0.9rem;
}
.kicker::before { content: ""; width: 2.4rem; height: 1px; background: var(--gold); }

.h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
}

/* ---------- LAYOUT ---------- */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--section-y) var(--gutter);
}
.section__head { max-width: 46rem; margin-bottom: clamp(2.5rem, 6vw, 5rem); }
.section__intro {
  margin-top: 1.4rem;
  font-size: 1.05rem;
  color: #52493d;
  max-width: 38rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 1px solid var(--charcoal);
  transition: background .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease);
}
.btn--solid { background: var(--charcoal); color: var(--ivory); }
.btn--solid:hover { background: transparent; color: var(--charcoal); }
.btn--ghost { border-color: currentColor; }
.btn--ghost:hover { background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal); }

/* ---------- NAV ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .5s var(--ease), box-shadow .5s var(--ease), padding .5s var(--ease);
  padding: 1.6rem 0;
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav__brand {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ivory);
  transition: color .5s var(--ease);
}
.nav__links { display: flex; gap: 2.4rem; }
.nav__links a {
  position: relative;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ivory);
  transition: color .5s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform .5s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ivory);
  padding: 0.7rem 1.4rem; border: 1px solid rgba(246,241,233,.5);
  transition: background .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease);
}
.nav__cta:hover { background: var(--ivory); color: var(--charcoal); }

.nav.scrolled {
  background: rgba(246, 241, 233, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding: 0.9rem 0;
}
.nav.scrolled .nav__brand,
.nav.scrolled .nav__links a,
.nav.scrolled .nav__cta { color: var(--charcoal); }
.nav.scrolled .nav__cta { border-color: var(--charcoal); }
.nav.scrolled .nav__cta:hover { background: var(--charcoal); color: var(--ivory); }

/* mobile toggle */
.nav__toggle { display: none; width: 34px; height: 20px; position: relative; }
.nav__toggle span {
  position: absolute; left: 0; width: 100%; height: 1.5px;
  background: var(--ivory); transition: transform .4s var(--ease), opacity .3s, background .5s var(--ease);
}
.nav__toggle span:nth-child(1) { top: 3px; }
.nav__toggle span:nth-child(2) { bottom: 3px; }
.nav.scrolled .nav__toggle span { background: var(--charcoal); }
body.menu-open .nav__toggle span { background: var(--charcoal); }
body.menu-open .nav__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .nav__toggle span:nth-child(2) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--ivory);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem;
  opacity: 0; visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu__links { display: flex; flex-direction: column; align-items: center; gap: 1.8rem; }
.mobile-menu__links a {
  font-family: var(--font-display); font-size: 2rem; color: var(--charcoal);
  opacity: 0; transform: translateY(14px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
body.menu-open .mobile-menu__links a { opacity: 1; transform: none; }
.mobile-menu__cta {
  margin-top: 1rem; font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase;
  border: 1px solid var(--charcoal); padding: 1rem 2rem;
}

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 8rem var(--gutter) 6rem;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(20,18,15,.55) 0%, rgba(20,18,15,.28) 40%, rgba(20,18,15,.62) 100%);
}
.hero__content { max-width: var(--maxw); margin: 0 auto; width: 100%; color: var(--ivory); }
.hero__kicker {
  font-size: 0.74rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 1.8rem;
}
.hero__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(3.2rem, 12vw, 9.5rem); line-height: 0.92;
  letter-spacing: -0.02em;
}
.hero__headline {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.4rem, 3.6vw, 2.6rem); line-height: 1.2;
  margin-top: 1.4rem; white-space: pre-line;
}
.hero__text { max-width: 34rem; margin-top: 1.6rem; color: rgba(246,241,233,.86); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.6rem; }
.hero__actions .btn--solid { background: var(--ivory); color: var(--charcoal); border-color: var(--ivory); }
.hero__actions .btn--solid:hover { background: transparent; color: var(--ivory); }
.hero__actions .btn--ghost { color: var(--ivory); }
.hero__scroll {
  position: absolute; left: 50%; bottom: 2.2rem; transform: translateX(-50%);
  width: 1px; height: 64px; overflow: hidden;
}
.hero__scroll-line {
  display: block; width: 100%; height: 100%;
  background: linear-gradient(var(--gold-soft), transparent);
  animation: scrollLine 2.4s var(--ease) infinite;
}
@keyframes scrollLine { 0% { transform: translateY(-100%); } 60%,100% { transform: translateY(100%); } }

/* ---------- STORY ---------- */
.story {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem); align-items: center;
}
.story__media { position: relative; }
.story__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.story__media::after {
  content: ""; position: absolute; inset: 1.2rem -1.2rem -1.2rem 1.2rem;
  border: 1px solid var(--line); z-index: -1;
}
.story__text p + p { margin-top: 1.1rem; }
.story__highlight {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem); line-height: 1.3;
  color: var(--charcoal);
  margin: 2rem 0; padding-left: 1.4rem; border-left: 1px solid var(--gold);
}
.story__stats { display: flex; flex-wrap: wrap; gap: 2.4rem; margin-top: 2rem; }
.story__stats .stat__value {
  font-family: var(--font-display); font-size: 2.6rem; line-height: 1; color: var(--charcoal);
}
.story__stats .stat__label {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe-solid);
  margin-top: 0.5rem;
}

/* ---------- SERVICES ---------- */
.services { background: var(--cream); max-width: none; }
.services > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.services__layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 6vw, 5rem); }
.services__list { counter-reset: svc; }
.services__list li {
  counter-increment: svc;
  border-top: 1px solid var(--line);
  padding: 1.5rem 0;
  display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; align-items: baseline;
  cursor: default;
  transition: color .4s var(--ease);
}
.services__list li:last-child { border-bottom: 1px solid var(--line); }
.services__list li::before {
  content: "0" counter(svc);
  font-family: var(--font-display); font-size: 0.95rem; color: var(--gold);
}
.services__list h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 2.1rem); line-height: 1.15;
  transition: opacity .4s var(--ease);
}
.services__list .svc__desc {
  font-size: 0.9rem; color: #5a5145; margin-top: 0.35rem;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .5s var(--ease), opacity .4s var(--ease), margin .4s var(--ease);
}
.services__list li.active .svc__desc,
.services__list li:hover .svc__desc { max-height: 6rem; opacity: 1; }
.services__list li:hover h3 { opacity: 0.55; }

.services__preview {
  position: sticky; top: 20vh; align-self: start;
  aspect-ratio: 3/4; overflow: hidden;
  background: var(--beige);
}
.services__preview img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.06);
  transition: opacity .7s var(--ease), transform 1.2s var(--ease);
}
.services__preview img.visible { opacity: 1; transform: scale(1); }

/* ---------- FEATURED ---------- */
.featured__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 3vw, 2.4rem);
}
.project { position: relative; overflow: hidden; display: block; }
.project img {
  width: 100%; height: 100%; object-fit: cover;
  aspect-ratio: 3/2;
  transition: transform 1.1s var(--ease), filter .8s var(--ease);
}
.project--tall img { aspect-ratio: 3/4; }
.project--wide { grid-column: span 2; }
.project--wide img { aspect-ratio: 16/8; }
.project::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(20,18,15,.72));
  opacity: 0; transition: opacity .6s var(--ease);
}
.project:hover img { transform: scale(1.05); }
.project:hover::after { opacity: 1; }
.project__meta {
  position: absolute; left: 0; bottom: 0; z-index: 2;
  padding: clamp(1.2rem, 3vw, 2.2rem);
  color: var(--ivory);
  transform: translateY(12px); opacity: 0;
  transition: transform .6s var(--ease), opacity .6s var(--ease);
}
.project:hover .project__meta { transform: none; opacity: 1; }
.project__cat { font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-soft); }
.project__name { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2rem); margin: 0.4rem 0 0.3rem; }
.project__desc { font-size: 0.85rem; max-width: 26rem; color: rgba(246,241,233,.85); }

/* ---------- GALLERY ---------- */
.gallery { background: var(--charcoal); color: var(--ivory); max-width: none; }
.gallery > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.gallery .kicker { color: var(--gold-soft); }
.gallery .kicker::before { background: var(--gold-soft); }
.gallery .section__intro { color: rgba(246,241,233,.7); }
.gallery__grid { columns: 3 240px; column-gap: clamp(0.8rem, 2vw, 1.4rem); }
.gallery__item {
  break-inside: avoid; margin-bottom: clamp(0.8rem, 2vw, 1.4rem);
  overflow: hidden; position: relative; width: 100%; display: block;
}
.gallery__item img { width: 100%; transition: transform 1s var(--ease), opacity .8s var(--ease); }
.gallery__item::after {
  content: "+"; position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 2rem;
  background: rgba(20,18,15,.35); color: var(--ivory);
  opacity: 0; transition: opacity .5s var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item:hover::after { opacity: 1; }

/* ---------- PACKAGES ---------- */
.packages__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.4rem, 4vw, 3rem); }
.package {
  position: relative;
  border: 1px solid var(--line);
  padding: clamp(2rem, 4vw, 3.4rem);
  background: var(--ivory);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.package--featured { background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal); }
.package:hover { transform: translateY(-6px); box-shadow: 0 24px 60px -30px rgba(31,28,24,.4); }
.package__badge {
  position: absolute; top: -1px; right: -1px;
  background: var(--gold); color: var(--charcoal);
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 0.5rem 1rem;
}
.package__name { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); }
.package__guests { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe-solid); margin-top: 0.4rem; }
.package--featured .package__guests { color: var(--gold-soft); }
.package__price {
  font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3rem);
  margin: 1.4rem 0; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line);
}
.package--featured .package__price { border-color: rgba(246,241,233,.2); }
.package__features li {
  padding: 0.8rem 0 0.8rem 1.6rem; position: relative;
  font-size: 0.92rem; border-bottom: 1px solid var(--line);
}
.package--featured .package__features li { border-color: rgba(246,241,233,.12); }
.package__features li::before {
  content: ""; position: absolute; left: 0; top: 1.35rem;
  width: 6px; height: 6px; border: 1px solid var(--gold); transform: rotate(45deg);
}
.package .btn { margin-top: 2rem; width: 100%; }
.package--featured .btn--solid { background: var(--ivory); color: var(--charcoal); border-color: var(--ivory); }
.package--featured .btn--solid:hover { background: transparent; color: var(--ivory); }

/* ---------- PROCESS ---------- */
.process { background: var(--cream); max-width: none; }
.process > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.4rem, 4vw, 3rem); }
.process__step { border-top: 1px solid var(--gold); padding-top: 1.4rem; }
.process__num { font-family: var(--font-display); font-size: 1rem; color: var(--gold); }
.process__name { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 0.8rem 0 0.5rem; }
.process__text { font-size: 0.9rem; color: #5a5145; }

/* ---------- TESTIMONIALS ---------- */
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.6rem, 4vw, 3rem); }
.testimonial { padding-top: 2.4rem; position: relative; }
.testimonial::before {
  content: "“"; position: absolute; top: -1rem; left: -0.4rem;
  font-family: var(--font-display); font-size: 5rem; color: var(--gold-soft); line-height: 1;
}
.testimonial__quote { font-family: var(--font-display); font-size: 1.35rem; line-height: 1.5; }
.testimonial__author {
  margin-top: 1.4rem; font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--taupe-solid);
}

/* ---------- FINAL CTA ---------- */
.finalcta {
  position: relative; min-height: 82svh;
  display: flex; align-items: center;
  padding: var(--section-y) var(--gutter);
  overflow: hidden;
}
.finalcta__media { position: absolute; inset: 0; z-index: -2; }
.finalcta__media img { width: 100%; height: 100%; object-fit: cover; }
.finalcta__overlay { position: absolute; inset: 0; z-index: -1; background: rgba(20,18,15,.58); }
.finalcta__content { max-width: var(--maxw); margin: 0 auto; width: 100%; color: var(--ivory); }
.finalcta__headline {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.6rem, 8vw, 6rem); line-height: 0.98; white-space: pre-line;
  letter-spacing: -0.01em;
}
.finalcta__text { margin-top: 1.6rem; font-size: 1.1rem; color: rgba(246,241,233,.85); max-width: 32rem; }
.finalcta__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.finalcta__actions .btn--solid { background: var(--ivory); color: var(--charcoal); border-color: var(--ivory); }
.finalcta__actions .btn--solid:hover { background: transparent; color: var(--ivory); }
.finalcta__actions .btn--ghost { color: var(--ivory); }

/* ---------- CONTACT (Instagram DM) ---------- */
.contact { text-align: center; }
.contact__panel {
  max-width: 40rem; margin: 0 auto;
  border: 1px solid var(--line);
  padding: clamp(2.4rem, 6vw, 4.6rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--ivory);
}
.contact__panel .kicker { justify-content: center; }
.contact__panel .section__intro { margin-left: auto; margin-right: auto; }
.contact__dm {
  display: inline-flex; align-items: center; gap: 0.7rem;
  margin-top: 2.2rem;
}
.contact__note {
  margin-top: 1.2rem;
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--taupe-solid);
}

/* ---------- FOOTER ---------- */
.footer { background: var(--charcoal); color: var(--ivory); padding: clamp(3rem, 7vw, 5.5rem) var(--gutter) 2rem; }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(246,241,233,.15);
}
.footer__logo { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 1rem; }
.footer__brand p { color: rgba(246,241,233,.6); font-size: 0.88rem; }
.footer__nav { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__nav a, .footer__contact a { font-size: 0.8rem; letter-spacing: 0.1em; color: rgba(246,241,233,.7); }
.footer__nav a:hover, .footer__contact a:hover { color: var(--gold-soft); }
.footer__contact { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__copy {
  max-width: var(--maxw); margin: 1.6rem auto 0; text-align: center;
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(246,241,233,.4);
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(18,16,13,.94);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(1rem, 5vw, 4rem);
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__figure { max-width: 90vw; max-height: 88vh; text-align: center; }
.lightbox__figure img {
  max-width: 100%; max-height: 82vh; object-fit: contain; margin: 0 auto;
  transition: opacity .3s var(--ease);
}
.lightbox__figure figcaption {
  margin-top: 1rem; color: rgba(246,241,233,.6);
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
}
.lightbox__close, .lightbox__nav {
  position: absolute; color: var(--ivory);
  font-size: 2rem; line-height: 1; width: 3.4rem; height: 3.4rem;
  display: grid; place-items: center;
  transition: color .3s var(--ease), background .3s var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { color: var(--gold-soft); }
.lightbox__close { top: 1.2rem; right: 1.4rem; font-size: 2.6rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); font-family: var(--font-display); font-size: 3rem; }
.lightbox__nav--prev { left: 0.6rem; }
.lightbox__nav--next { right: 0.6rem; }

/* ---------- FLOATING CONTACT ---------- */
.floating-contact {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem);
  z-index: 120;
  width: 3.4rem; height: 3.4rem; border-radius: 50%;
  background: var(--charcoal); color: var(--ivory);
  display: grid; place-items: center;
  box-shadow: 0 12px 30px -12px rgba(31,28,24,.6);
  transform: translateY(1rem); opacity: 0; pointer-events: none;
  transition: transform .5s var(--ease), opacity .5s var(--ease), background .4s var(--ease);
}
.floating-contact.visible { transform: none; opacity: 1; pointer-events: auto; }
.floating-contact:hover { background: var(--gold); color: var(--charcoal); }

/* ---------- IMAGE FALLBACK ---------- */
img.img-missing {
  background: linear-gradient(135deg, var(--champagne), var(--beige));
  min-height: 220px;
  position: relative;
}
img.img-missing::after {
  content: attr(data-label);
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--font-display); font-style: italic; font-size: 1rem;
  color: var(--taupe-solid); text-align: center; padding: 1rem;
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav__links { gap: 1.6rem; }
  .services__layout { grid-template-columns: 1fr; }
  .services__preview { display: none; }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 40rem; }
  .contact { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: block; }
  .story { grid-template-columns: 1fr; }
  .story__media::after { display: none; }
  .featured__grid { grid-template-columns: 1fr; }
  .project--wide { grid-column: auto; }
  .project--wide img, .project img, .project--tall img { aspect-ratio: 3/2; }
  .project__meta { transform: none; opacity: 1; }
  .project::after { opacity: 1; }
  .packages__grid { grid-template-columns: 1fr; }
  .gallery__grid { columns: 2 160px; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 460px) {
  :root { --gutter: 1.25rem; }
  .hero__actions .btn, .finalcta__actions .btn { width: 100%; }
  .contact__form { grid-template-columns: 1fr; }
  .gallery__grid { columns: 1; }
  .story__stats { gap: 1.6rem; }
}
