/* ============================================================
   JOLANTA YOUNG — HIGH FASHION EDITORIAL
   Palette: #0a0a0a (black) · #f0ead8 (cream) · #c9a96e (gold)
   Fonts: Cormorant Garamond (serif) · Heebo (sans)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:  #0a0a0a;
  --cream:  #f0ead8;
  --gold:   #c9a96e;
  --gold-lt:#e8d5b0;
  --white:  #ffffff;
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Heebo', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  cursor: none;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

/* CUSTOM CURSOR */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 32px; height: 32px;
  border: 1px solid rgba(201,169,110,.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform .12s ease;
}

/* HEADER */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 48px;
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,169,110,.1);
  transition: background .4s, padding .4s;
}
.site-header.scrolled {
  background: rgba(10,10,10,.96);
  padding: 16px 48px;
}
.logo {
  font-family: var(--serif);
  font-size: 1.05rem; font-weight: 400;
  letter-spacing: .12em; color: var(--cream);
  text-transform: uppercase;
  flex-shrink: 0;
}
/* FULL NAV */
.site-nav {
  display: flex; align-items: center; gap: 32px;
  flex: 1; justify-content: center;
  flex-wrap: nowrap; overflow: visible;
}
.nav-link {
  font-size: .65rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(240,234,216,.7); font-family: var(--sans); font-weight: 300;
  transition: color .2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--gold); }
/* BOOK BUTTON */
.nav-book-btn {
  flex-shrink: 0;
  font-size: .6rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); font-family: var(--sans); font-weight: 400;
  border: 1px solid var(--gold); padding: 10px 20px;
  white-space: nowrap;
  transition: background .25s, color .25s;
}
.nav-book-btn:hover { background: var(--gold); color: var(--black); }
/* HAMBURGER — mobile only */
.hamburger {
  background: none; border: none; cursor: none;
  display: none;
  flex-direction: column;
  gap: 5px; padding: 8px;
  min-width: 44px; min-height: 44px;
  align-items: flex-end; justify-content: center;
}
.hamburger span {
  display: block; height: 1px; background: var(--cream);
  transition: width .3s, opacity .3s, transform .3s;
}
.hamburger span:nth-child(1) { width: 28px; }
.hamburger span:nth-child(2) { width: 20px; }
.hamburger span:nth-child(3) { width: 28px; }
.hamburger:hover span { background: var(--gold); }
.hamburger.active span:nth-child(1) { width: 28px; transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { width: 28px; transform: translateY(-6px) rotate(-45deg); }

/* OVERLAY MENU */
.overlay-menu {
  position: fixed; inset: 0; background: var(--black);
  z-index: 990; display: flex; flex-direction: column;
  justify-content: center; padding: 80px 10vw;
  opacity: 0; visibility: hidden;
  transition: opacity .5s ease, visibility .5s ease;
}
.overlay-menu.open { opacity: 1; visibility: visible; }
.overlay-close {
  position: absolute; top: 28px; right: 48px;
  background: none; border: none; color: var(--cream);
  font-size: 1.4rem; cursor: none; padding: 8px;
  min-width: 44px; min-height: 44px; transition: color .2s;
}
.overlay-close:hover { color: var(--gold); }
.overlay-nav { display: flex; flex-direction: column; gap: 0; }
.overlay-link {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300; line-height: 1.1; color: var(--cream);
  letter-spacing: -.01em;
  transition: color .3s, letter-spacing .3s;
  position: relative; display: inline-block;
}
.overlay-link::before {
  content: attr(data-num);
  font-family: var(--sans); font-size: .65rem;
  font-weight: 300; letter-spacing: .15em; color: var(--gold);
  position: absolute; top: .8em; left: -3.5rem;
}
.overlay-link:hover { color: var(--gold); letter-spacing: .02em; }
.overlay-footer {
  position: absolute; bottom: 48px; left: 10vw;
  font-size: .75rem; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(240,234,216,.5);
  display: flex; gap: 3rem; align-items: center;
}
.overlay-socials { display: flex; gap: 1.5rem; }
.overlay-socials a:hover { color: var(--gold); }

/* SHARED LABELS & RULES */
.ed-label {
  font-family: var(--sans); font-size: .65rem;
  font-weight: 400; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); display: block;
}
.ed-rule { width: 40px; height: 1px; background: var(--gold); margin: 16px 0 32px; }
.ed-body {
  font-family: var(--sans); font-size: .95rem;
  font-weight: 300; line-height: 1.9;
  color: rgba(240,234,216,.8); margin-bottom: 1.4rem;
}

/* REVEAL ANIMATION */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s ease, transform .9s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* HERO */
.ed-hero { position: relative; width: 100vw; height: 100dvh; overflow: hidden; }
.ed-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center 15%;
}
.ed-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,.15) 0%, rgba(10,10,10,.05) 40%, rgba(10,10,10,.6) 100%);
}
.ed-hero-content { position: absolute; bottom: 10vh; left: 6vw; right: 6vw; z-index: 2; }
.ed-hero-content .ed-label { margin-bottom: 20px; color: var(--cream); text-shadow: 0 1px 6px rgba(0,0,0,.7); letter-spacing: .25em; }
.ed-hero-headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 7.5vw, 8rem);
  font-weight: 300; line-height: 1.05;
  color: var(--cream); letter-spacing: -.01em;
}
.ed-hero-headline em { color: var(--gold); font-style: italic; font-weight: 300; }
.ed-hero-scroll {
  position: absolute; right: 48px; bottom: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 12px; z-index: 2;
}
.ed-hero-scroll span {
  font-size: .6rem; letter-spacing: .25em;
  text-transform: uppercase; color: rgba(240,234,216,.6); writing-mode: vertical-rl;
}
.ed-scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* FULL BLEED */
.ed-fullbleed { position: relative; width: 100vw; height: 100vh; overflow: hidden; }
.ed-fullbleed img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.ed-fullbleed-caption { position: absolute; bottom: 48px; left: 6vw; z-index: 2; }
.ed-caption-right { left: auto; right: 6vw; text-align: right; }
.ed-caption-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  font-weight: 300; color: var(--cream); margin-top: 8px;
}

/* EDITORIAL INTRO */
.ed-intro { padding: 120px 6vw; max-width: 1400px; margin: 0 auto; }
.ed-intro-inner { display: grid; grid-template-columns: 200px 1fr; gap: 80px; align-items: start; }
.ed-intro-label { padding-top: 8px; }
.ed-section-head {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 300; line-height: 1.1;
  color: var(--cream); letter-spacing: -.01em; margin-bottom: 32px;
}
.ed-section-head em { color: var(--gold); font-style: italic; }
.ed-stats { display: flex; gap: 48px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(201,169,110,.25); }
.ed-stat { display: flex; flex-direction: column; gap: 4px; }
.ed-stat-num { font-family: var(--serif); font-size: 3rem; font-weight: 300; color: var(--gold); line-height: 1; }
.ed-stat-label { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(240,234,216,.5); }

/* PORTRAIT + TEXT SPREAD */
.ed-spread-a { display: grid; grid-template-columns: 55% 1fr; min-height: 90vh; align-items: stretch; }
.ed-spread-a-img { overflow: hidden; display: flex; }
.ed-spread-a-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; flex: 1; }
.ed-spread-a-text {
  padding: 80px 6vw 80px 5vw;
  display: flex; flex-direction: column; justify-content: center; background: var(--black);
}
.ed-spread-a-text .ed-label { margin-bottom: 24px; }
.ed-spread-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 6rem);
  font-weight: 300; line-height: 1.05; color: var(--cream); margin-bottom: 32px;
}
.ed-spread-title em { color: var(--gold); font-style: italic; }
.ed-pull-quote {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-style: italic; font-weight: 300; color: var(--gold-lt); line-height: 1.6;
  border-left: 2px solid var(--gold); padding-left: 24px; margin-top: 40px;
}

/* DUO */
.ed-duo { display: grid; grid-template-columns: 60% 1fr; min-height: 85vh; gap: 0; align-items: stretch; }
.ed-duo-large { position: relative; overflow: hidden; display: flex; }
.ed-duo-large img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; flex: 1; }
.ed-duo-small { display: flex; flex-direction: column; background: var(--black); padding: 60px 5vw 60px 4vw; }
.ed-duo-small img { width: 100%; height: 55%; object-fit: cover; object-position: center top; margin-bottom: 32px; display: block; }
.ed-duo-caption { margin-bottom: 20px; }
.ed-duo-caption .ed-label { margin-bottom: 6px; }
.ed-duo-text .ed-body { margin-top: 24px; }

/* MEGA PULL QUOTE */
.ed-quote-section {
  padding: 140px 6vw; text-align: center;
  border-top: 1px solid rgba(201,169,110,.15); border-bottom: 1px solid rgba(201,169,110,.15);
}
.ed-mega-quote {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 7rem);
  font-weight: 300; font-style: italic; line-height: 1.15;
  color: var(--cream); letter-spacing: -.01em; max-width: 1000px; margin: 0 auto 32px;
}
.ed-mega-quote em { color: var(--gold); }
.ed-quote-attr { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(240,234,216,.4); }

/* THREE COLUMN TRIO */
.ed-trio { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: end; gap: 4px; }
.ed-trio-item { position: relative; overflow: hidden; }
.ed-trio-tall  { height: 85vh; }
.ed-trio-mid   { height: 65vh; }
.ed-trio-short { height: 75vh; }
.ed-trio-item img { height: 100%; object-fit: cover; }
.ed-trio-caption { position: absolute; bottom: 24px; left: 20px; }
.ed-trio-caption .ed-label { margin-bottom: 4px; }
.ed-trio-caption .ed-caption-title { font-size: clamp(1.1rem, 2vw, 1.8rem); }

/* SERVICES */
.ed-spread-b { display: grid; grid-template-columns: 1fr 42%; min-height: 100vh; overflow: hidden; }
.ed-spread-b-text { padding: 100px 5vw 100px 6vw; background: var(--black); }
.ed-spread-b-text .ed-label { margin-bottom: 0; }
.ed-brand-stmt {
  font-family: var(--serif); font-size: clamp(1rem, 1.4vw, 1.3rem);
  font-style: italic; font-weight: 300; color: rgba(240,234,216,.7); line-height: 1.7;
  margin-bottom: 56px; padding-bottom: 40px; border-bottom: 1px solid rgba(201,169,110,.2);
}
.ed-gold-italic { color: var(--gold); font-style: italic; }
.ed-service-list { display: flex; flex-direction: column; gap: 0; }
.ed-svc-item { display: grid; grid-template-columns: 48px 1fr; gap: 24px; padding: 36px 0; border-bottom: 1px solid rgba(240,234,216,.08); }
.ed-svc-item:last-child { border-bottom: none; }
.ed-svc-num { font-family: var(--serif); font-size: 2.5rem; font-weight: 300; color: rgba(201,169,110,.35); line-height: 1; padding-top: 4px; }
.ed-svc-title { font-family: var(--serif); font-size: clamp(1.2rem, 1.8vw, 1.7rem); font-weight: 400; color: var(--cream); margin-bottom: 10px; letter-spacing: .01em; }
.ed-svc-desc { font-size: .85rem; font-weight: 300; color: rgba(240,234,216,.6); line-height: 1.75; margin-bottom: 16px; }
.ed-svc-tiers { display: flex; flex-direction: column; margin-bottom: 16px; }
.ed-tier { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px solid rgba(240,234,216,.07); }
.ed-tier:last-child { border-bottom: none; }
.ed-tier-name { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(240,234,216,.5); }
.ed-tier-price { font-family: var(--serif); font-size: 1rem; font-weight: 300; color: var(--gold); }
.ed-enquire { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 2px; transition: color .2s, border-color .2s; display: inline-block; margin-top: 4px; }
.ed-enquire:hover { color: var(--cream); border-color: var(--cream); }
.ed-spread-b-img { position: sticky; top: 0; height: 100vh; overflow: hidden; max-width: 100%; }
.ed-spread-b-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }

/* CONTACT */
.ed-contact { padding: 120px 6vw; border-top: 1px solid rgba(201,169,110,.15); }
.ed-contact-inner { display: grid; grid-template-columns: 380px 1fr; gap: 80px; max-width: 1400px; margin: 0 auto; }
.ed-contact-left { padding-top: 8px; }
.ed-contact-details { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.ed-contact-details a { color: var(--gold-lt); }
.ed-contact-details a:hover { color: var(--gold); }
.ed-contact-socials { display: flex; gap: 20px; margin-top: 32px; }
.ed-contact-socials a { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(240,234,216,.5); border-bottom: 1px solid transparent; transition: color .2s, border-color .2s; }
.ed-contact-socials a:hover { color: var(--gold); border-color: var(--gold); }

.ed-form { display: flex; flex-direction: column; gap: 0; }
.ed-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.ed-form-group { display: flex; flex-direction: column; gap: 8px; }
.ed-form-full { margin-bottom: 24px; }
.ed-form-group label { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.ed-form-group input, .ed-form-group select, .ed-form-group textarea {
  background: transparent; border: none; border-bottom: 1px solid rgba(240,234,216,.2);
  color: var(--cream); font-family: var(--sans); font-size: 1rem; font-weight: 300;
  padding: 10px 0; outline: none; transition: border-color .3s; min-height: 44px; cursor: none; width: 100%;
}
.ed-form-group select option { background: var(--black); color: var(--cream); }
.ed-form-group textarea { resize: vertical; min-height: 120px; }
.ed-form-group input:focus, .ed-form-group select:focus, .ed-form-group textarea:focus { border-bottom-color: var(--gold); }
.ed-form-group input::placeholder, .ed-form-group textarea::placeholder { color: rgba(240,234,216,.25); }
.ed-form-check { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 32px; }
.ed-form-check input[type="checkbox"] { width: 16px; height: 16px; min-height: 16px; accent-color: var(--gold); margin-top: 3px; cursor: none; }
.ed-form-check label { font-size: .75rem; color: rgba(240,234,216,.5); letter-spacing: .05em; cursor: none; }
.ed-submit { background: transparent; border: 1px solid var(--gold); color: var(--gold); font-family: var(--sans); font-size: .7rem; font-weight: 400; letter-spacing: .2em; text-transform: uppercase; padding: 18px 40px; cursor: none; transition: background .3s, color .3s; align-self: flex-start; }
.ed-submit:hover { background: var(--gold); color: var(--black); }
.ed-form-success { display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 80px 40px; gap: 16px; }
.ed-form-success.show { display: flex; }
.ed-success-icon { font-size: 3rem; color: var(--gold); border: 1px solid var(--gold); width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.ed-form-success h3 { font-family: var(--serif); font-size: 1.8rem; font-weight: 300; color: var(--cream); }
.ed-form-success p { color: rgba(240,234,216,.6); font-size: .9rem; }

/* FOOTER */
.ed-footer { padding: 64px 6vw; border-top: 1px solid rgba(201,169,110,.15); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.ed-footer-logo { font-family: var(--serif); font-size: 1.5rem; font-weight: 300; letter-spacing: .15em; text-transform: uppercase; color: var(--cream); }
.ed-footer-tagline { font-family: var(--serif); font-size: .9rem; font-style: italic; color: rgba(240,234,216,.4); }
.ed-footer-links { display: flex; gap: 32px; margin: 8px 0; }
.ed-footer-links a { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(240,234,216,.4); transition: color .2s; }
.ed-footer-links a:hover { color: var(--gold); }
.ed-footer-copy { font-size: .65rem; letter-spacing: .1em; color: rgba(240,234,216,.25); }

/* LIGHTBOX */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.96); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lb-close, .lb-prev, .lb-next { position: absolute; background: none; border: none; color: var(--cream); cursor: none; padding: 12px; min-width: 44px; min-height: 44px; transition: color .2s; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: var(--gold); }
.lb-close { top: 24px; right: 24px; font-size: 1.2rem; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); font-size: 2rem; }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); font-size: 2rem; }
.lb-img-wrap { max-width: 90vw; max-height: 88vh; display: flex; align-items: center; justify-content: center; }
.lb-img-wrap img { max-width: 100%; max-height: 88vh; width: auto; height: auto; object-fit: contain; }
.lb-caption { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 20px; align-items: center; font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(240,234,216,.5); }
.lb-caption span:nth-child(2) { color: var(--cream); font-family: var(--serif); font-size: .9rem; font-style: italic; text-transform: none; letter-spacing: 0; }

/* MASONRY GALLERY — CSS columns (even, zero-gap) */
.ed-masonry { background: var(--black); padding: 0; overflow: hidden; }
.ed-masonry-grid {
  columns: 3;
  column-gap: 0;
  width: 100%;
}
.ed-mason-item {
  break-inside: avoid;
  overflow: hidden;
  cursor: none;
  line-height: 0;
  position: relative;
  display: block;
}
.ed-mason-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.ed-mason-item:hover img { transform: scale(1.04); }
.ed-mason-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 20px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  opacity: 0;
  transition: opacity .4s;
  line-height: 1.4;
}
.ed-mason-item:hover .ed-mason-cap { opacity: 1; }
.ed-mason-cap .ed-label { display: block; margin-bottom: 4px; font-size: .55rem; letter-spacing: .18em; color: var(--gold); }
.ed-mason-cap p { font-family: var(--serif); font-size: 1rem; font-style: italic; color: var(--cream); margin: 0; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .ed-spread-a { grid-template-columns: 1fr 1fr; }
  .ed-spread-b { grid-template-columns: 1fr; }
  .ed-spread-b-img { display: none; }
  .ed-contact-inner { grid-template-columns: 1fr; gap: 60px; }
}
@media (max-width: 900px) {
  .site-nav { display: none; }
  .nav-book-btn { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 768px) {
  .ed-masonry-grid { columns: 2; }
  .site-header { padding: 20px 24px; }
  .site-header.scrolled { padding: 14px 24px; }
  .overlay-close { right: 24px; }
  .overlay-footer { flex-direction: column; gap: 12px; bottom: 32px; left: 6vw; }
  .ed-hero-content { bottom: 8vh; left: 5vw; right: 5vw; }
  .ed-hero-headline { font-size: clamp(2.4rem, 9vw, 4rem); }
  .ed-hero-scroll { right: 20px; bottom: 20px; }
  .ed-fullbleed { height: 70vh; }
  .ed-intro { padding: 80px 5vw; }
  .ed-intro-inner { grid-template-columns: 1fr; gap: 32px; }
  .ed-intro-label { display: flex; align-items: center; gap: 16px; }
  .ed-intro-label .ed-rule { margin: 0; }
  .ed-spread-a { grid-template-columns: 1fr; min-height: auto; }
  .ed-spread-a-img { height: 60vw; }
  .ed-spread-a-text { padding: 48px 5vw; }
  .ed-duo { grid-template-columns: 1fr; min-height: auto; }
  .ed-duo-large { height: 60vw; }
  .ed-duo-small { padding: 40px 5vw; }
  .ed-duo-small img { height: 50vw; }
  .ed-quote-section { padding: 80px 5vw; }
  .ed-trio { grid-template-columns: 1fr; gap: 2px; }
  .ed-trio-tall, .ed-trio-mid, .ed-trio-short { height: 70vw; }
  .ed-spread-b-text { padding: 80px 5vw; }
  .ed-contact { padding: 80px 5vw; }
  .ed-form-row { grid-template-columns: 1fr; gap: 16px; }
  .ed-stats { gap: 28px; flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .ed-masonry-grid { columns: 1; }
  .ed-hero-headline { font-size: clamp(2rem, 10vw, 3rem); }
  .ed-section-head { font-size: clamp(2rem, 8vw, 3rem); }
  .ed-mega-quote { font-size: clamp(2rem, 8vw, 3.5rem); }
  .ed-spread-title { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .ed-trio-tall, .ed-trio-mid, .ed-trio-short { height: 85vw; }
  .ed-stats { flex-direction: column; gap: 20px; }
  .ed-footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
}

/* ===== TESTIMONIALS SECTION ===== */
.ed-testimonials {
  background: var(--black);
  padding: 120px 60px;
}
.ed-testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.ed-testimonials-label {
  margin-bottom: 64px;
}
.ed-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
}
.ed-testimonial-card {
  border: 1px solid rgba(201,169,110,.15);
  padding: 56px 48px;
  position: relative;
  background: rgba(201,169,110,.02);
  transition: border-color .3s;
}
.ed-testimonial-card:hover {
  border-color: rgba(201,169,110,.35);
}
.ed-testimonial-quote {
  font-family: var(--serif);
  font-size: 6rem;
  line-height: .7;
  color: var(--gold);
  opacity: .35;
  margin-bottom: 24px;
  font-weight: 300;
}
.ed-testimonial-text {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 32px;
  border: none;
  padding: 0;
}
.ed-testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ed-testimonial-name {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 300;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 768px) {
  .ed-testimonials {
    padding: 80px 24px;
  }
  .ed-testimonial-card {
    padding: 40px 28px;
  }
  .ed-testimonial-text {
    font-size: 1.2rem;
  }
}

/* ===== ANNOUNCEMENT BANNER ===== */
.announce-banner {
  position: relative;
  width: 100%;
  background: #c9a96e;
  color: #0a0a0a;
  text-align: center;
  padding: 11px 52px 11px 16px;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 10000;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.announce-text {
  display: inline;
}
.announce-link {
  color: #0a0a0a;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.announce-link:hover { opacity: .75; }
.announce-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: #0a0a0a;
  line-height: 1;
  padding: 4px 6px;
  opacity: .6;
  transition: opacity .2s;
  flex-shrink: 0;
}
.announce-close:hover { opacity: 1; }

@media (max-width: 768px) {
  .announce-banner {
    font-size: .62rem;
    padding: 10px 40px 10px 12px;
    text-align: left;
    justify-content: flex-start;
    letter-spacing: .05em;
    line-height: 1.7;
  }
  .announce-text {
    display: block;
  }
}

/* ===== LOGO TAGLINE ===== */
.logo-tagline {
  display: block;
  font-family: var(--sans);
  font-size: .52rem;
  font-weight: 300;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .8;
  margin-top: 2px;
  line-height: 1;
}
