/* ── Portfolio (Wedding Stories) — mockup ─────────────────── */
.page-stories {
  overflow: hidden;
  background: var(--white);
}

/* scroll container between fixed header + footer */
.stories-main {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: var(--footer-h);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.stories-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 100px) var(--pad-x) 40px;
}

/* intro */
.stories-intro {
  text-align: center;
  margin-bottom: clamp(52px, 9vw, 96px);
}
.stories-intro .eyebrow {
  font-family: 'GT America Expanded', var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--grey);
}
.stories-intro .lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(19px, 2.6vw, 26px);
  line-height: 1.5;
  color: var(--black);
  max-width: 560px;
  margin: 20px auto 0;
  text-wrap: balance;
}

/* each wedding story */
.story {
  margin-bottom: clamp(72px, 11vw, 128px);
  text-align: center;
}
.story-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.story-figure {
  overflow: hidden;
  background: rgba(0, 0, 0, 0.04);
}
.story-figure img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(28%);
  transition: filter 0.9s ease, transform 1.3s cubic-bezier(0.2, 0, 0.2, 1);
}
.story-link:hover .story-figure img {
  filter: grayscale(0%);
  transform: scale(1.02);
}

.story-names {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(25px, 3.2vw, 36px);
  letter-spacing: 0.01em;
  line-height: 1.15;
  color: var(--black);
  margin-top: 28px;
}
.story-venue {
  font-family: 'GT America Expanded', var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 14px;
}
.story-caption {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(15px, 1.9vw, 18px);
  line-height: 1.55;
  color: var(--black);
  max-width: 500px;
  margin: 16px auto 0;
  text-wrap: balance;
  opacity: 0.9;
}

/* closing invitation */
.stories-cta {
  text-align: center;
  border-top: 1px solid rgba(136, 136, 136, 0.22);
  padding: clamp(52px, 8vw, 92px) 0 44px;
  margin-top: clamp(20px, 4vw, 44px);
}
.stories-cta .quiet {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--black);
}
.stories-cta a {
  display: inline-block;
  margin-top: 22px;
  font-family: 'GT America Expanded', var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: opacity var(--transition);
}
.stories-cta a:hover { opacity: 0.55; }

@media (max-width: 640px) {
  .story { margin-bottom: 64px; }
  .story-names { margin-top: 20px; }
}

/* ── Individual Wedding Page ──────────────────────────────── */
.page-wedding { overflow: hidden; background: var(--white); }
.wedding-main {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  bottom: var(--footer-h);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.wedding-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  padding: clamp(50px, 8vw, 100px) var(--pad-x) clamp(38px, 5vw, 60px);
}
.wedding-head .eyebrow {
  font-family: 'GT America Expanded', var(--font-sans);
  font-size: 10px; font-weight: 500; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--grey);
}
.wedding-names {
  font-family: var(--font-serif); font-weight: 300;
  font-size: clamp(30px, 4.6vw, 52px); line-height: 1.08;
  letter-spacing: 0.01em; color: var(--black); margin-top: 18px;
}
.wedding-meta {
  font-family: 'GT America Expanded', var(--font-sans);
  font-size: 10px; font-weight: 500; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--grey); margin-top: 16px;
}
.wedding-story {
  font-family: var(--font-serif); font-style: italic; font-weight: 300;
  font-size: clamp(16px, 2vw, 19px); line-height: 1.65; color: var(--black);
  margin-top: 26px; text-wrap: balance; opacity: 0.92;
}

.wedding-gallery {
  max-width: 1120px; margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex; flex-direction: column; gap: clamp(10px, 1.4vw, 18px);
}
.w-full img, .w-pair img {
  width: 100%; height: auto; display: block; cursor: zoom-in;
  transition: opacity var(--transition);
}
.w-full img:hover, .w-pair img:hover { opacity: 0.9; }
.w-pair {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(10px, 1.4vw, 18px);
}
@media (max-width: 640px) {
  .w-pair { grid-template-columns: 1fr; }
}

.wedding-foot {
  text-align: center;
  border-top: 1px solid rgba(136,136,136,0.22);
  margin: clamp(56px, 8vw, 96px) auto 0;
  max-width: 1120px;
  padding: clamp(52px, 8vw, 90px) var(--pad-x) 48px;
}
.wedding-foot .quiet {
  font-family: var(--font-serif); font-style: italic; font-weight: 300;
  font-size: clamp(22px, 3vw, 30px); color: var(--black);
}
.wedding-foot .cta {
  display: inline-block; margin-top: 22px;
  font-family: 'GT America Expanded', var(--font-sans);
  font-size: 10px; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--black); text-decoration: none; border-bottom: 1px solid currentColor;
  padding-bottom: 4px; transition: opacity var(--transition);
}
.wedding-foot .cta:hover { opacity: 0.55; }
.wedding-foot .back {
  display: block; margin-top: 34px;
  font-family: 'GT America Expanded', var(--font-sans);
  font-size: 9px; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--grey); text-decoration: none;
}
.wedding-foot .back:hover { color: var(--black); }

/* single featured portrait, centered */
.w-solo { display: flex; justify-content: center; }
.w-solo img { width: auto; max-width: 62%; height: auto; display: block; cursor: zoom-in; transition: opacity var(--transition); }
.w-solo img:hover { opacity: 0.9; }
@media (max-width: 640px) { .w-solo img { max-width: 88%; } }

/* ── Cohesion with site brand: upright GT America headings, sans body, NO cursive/italic ── */
.story-names, .wedding-names {
  font-family: 'GT America Expanded', var(--font-sans);
  font-style: normal; text-transform: uppercase; font-weight: 500;
  letter-spacing: 0.08em; color: var(--black);
}
.wedding-names { font-size: clamp(23px, 3.4vw, 38px); line-height: 1.18; }
.story-names   { font-size: clamp(18px, 2.3vw, 25px); line-height: 1.2; }

.stories-intro .lede, .story-caption, .wedding-story {
  font-family: var(--font-sans); font-style: normal; font-weight: 400;
}
.stories-intro .lede { font-size: clamp(14px,1.7vw,16px); line-height: 1.7; letter-spacing: 0.01em; opacity: 1; }
.story-caption { font-size: clamp(12px,1.4vw,13px); line-height: 1.6; letter-spacing: 0.02em; opacity: 0.85; }
.wedding-story { font-size: clamp(13px,1.5vw,14.5px); line-height: 1.85; letter-spacing: 0.01em; opacity: 1; }

.stories-cta .quiet, .wedding-foot .quiet {
  font-family: 'GT America Expanded', var(--font-sans);
  font-style: normal; text-transform: uppercase; font-weight: 500;
  letter-spacing: 0.18em; font-size: clamp(13px,1.6vw,15px);
}

/* ── Wedding credits ──────────────────────────────────────── */
.wedding-credits { max-width: 560px; margin: 0 auto; padding: clamp(46px,7vw,74px) var(--pad-x) 0; text-align: center; }
.credits-label {
  font-family: 'GT America Expanded', var(--font-sans);
  font-size: 10px; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--grey); margin-bottom: 24px;
}
.credits-list { display: grid; grid-template-columns: 1fr 1fr; column-gap: 18px; row-gap: 11px; align-items: baseline; }
.credits-list dt {
  font-family: 'GT America Expanded', var(--font-sans);
  font-size: 9.5px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--grey); text-align: right;
}
.credits-list dd { margin: 0; font-family: var(--font-sans); font-size: 13px; line-height: 1.4; color: var(--black); text-align: left; }

/* ── Wedding testimonial (couple's words) ─────────────────── */
.wedding-testimonial { max-width: 660px; margin: 0 auto; text-align: center; padding: clamp(58px,8vw,100px) var(--pad-x) 0; }
.wedding-testimonial blockquote {
  margin: 0; font-family: var(--font-sans); font-weight: 300;
  font-size: clamp(18px, 2.3vw, 23px); line-height: 1.6; letter-spacing: 0.005em;
  color: var(--black); text-wrap: balance;
}
.wedding-testimonial .attr {
  display: block; margin-top: 26px;
  font-family: 'GT America Expanded', var(--font-sans);
  font-size: 10px; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--grey);
}

/* testimonial-forward landing cards (Alice-style) */
.story-caption { max-width: 460px; margin-left: auto; margin-right: auto; }

/* ── Editorial single-column gallery (clean, spacious) ────── */
.wedding-gallery { gap: clamp(44px, 6.5vw, 104px) !important; }
.shot { display: flex; justify-content: center; }
.shot img { width: auto; height: auto; display: block; cursor: zoom-in; transition: opacity var(--transition); }
.shot.portrait img { max-width: 53%; max-height: 90vh; }
.shot.wide img { max-width: 80%; }
.shot img:hover { opacity: 0.9; }
@media (max-width: 700px) {
  .shot.portrait img { max-width: 84%; }
  .shot.wide img { max-width: 100%; }
}

/* ── Equal-height editorial grid (clean, uniform rows) ────── */
.wedding-gallery { max-width: 1240px !important; gap: 14px !important; padding: 0 16px !important; }
.wrow { display: grid; gap: 14px; grid-auto-rows: min(72vh, 760px); flex-shrink: 0; }
.wrow.one { grid-template-columns: 1fr; }
.wrow.two { grid-template-columns: 1fr 1fr; }
.wrow img { width: 100%; height: 100%; object-fit: cover; display: block; cursor: zoom-in; transition: opacity var(--transition); }
.wrow img:hover { opacity: 0.9; }
@media (max-width: 700px) { .wrow { height: auto; grid-template-columns: 1fr; } .wrow img { height: auto; } }

/* ── Portfolio landing as a clean 2-col grid of wedding cards ── */
.stories-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,3.4vw,52px) clamp(18px,2.4vw,32px); max-width: 1180px; margin: 0 auto; }
.wcard { text-decoration: none; color: inherit; display: block; text-align: center; }
.wcard-img { overflow: hidden; }
.wcard-img img { width: 100%; height: clamp(380px, 52vh, 600px); object-fit: cover; display: block; filter: grayscale(26%); transition: filter .9s ease, transform 1.3s cubic-bezier(.2,0,.2,1); }
.wcard:hover .wcard-img img { filter: grayscale(0%); transform: scale(1.02); }
.wcard .story-names { margin-top: 20px; }
.wcard .story-venue { margin-top: 10px; }
@media (max-width: 700px) { .stories-grid { grid-template-columns: 1fr; } }

/* landscape hero cards, single column (Alice Mahran style) */
.stories-grid { grid-template-columns: 1fr !important; gap: clamp(56px, 7.5vw, 104px) !important; max-width: 1080px; }
.wcard-img img { height: auto !important; aspect-ratio: 3 / 2; }


/* ── Alice-style grid of wedding galleries ── */
.stories-grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: clamp(34px,3.6vw,56px) clamp(20px,2.4vw,40px) !important; max-width: 1260px; margin: 0 auto; }
.wcard-img img { aspect-ratio: 4/5 !important; height: auto !important; width: 100%; object-fit: cover; }
.wcard .story-names { margin-top: 16px; font-size: clamp(12px,1.25vw,13.5px) !important; letter-spacing: 0.16em !important; }
.wcard .story-venue { margin-top: 8px; font-size: 9.5px !important; letter-spacing: 0.2em; }
@media (max-width: 900px) { .stories-grid { grid-template-columns: 1fr 1fr !important; } }
@media (max-width: 600px) { .stories-grid { grid-template-columns: 1fr !important; } }

/* ── Option 1 chosen: three-across classic, a touch bigger ── */
.stories-grid { max-width: 1320px !important; gap: 48px 38px !important; }
.wcard .story-names { font-size: 15px !important; letter-spacing: 0.16em !important; margin-top: 18px !important; }
.wcard .story-venue { font-size: 10px !important; letter-spacing: 0.2em !important; margin-top: 9px !important; }

/* widen the grid wrapper so cards are full size (match the mockup) */
.stories-inner { max-width: 1360px !important; }

/* ── Match site body type: intro in Cormorant serif (like About/Collections) ── */
.stories-intro .lede {
  font-family: var(--font-serif) !important;
  font-size: clamp(15px, 1.4vw, 18px) !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
  letter-spacing: 0.01em !important;
}

/* credit links — subtle, on-brand (no bright blue) */
.credits-list dd a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(136,136,136,0.4); padding-bottom: 1px; transition: border-color var(--transition); }
.credits-list dd a:hover { border-color: var(--black); }

/* keep couple names on one clean line (like Amelia & Flynn) */
.wedding-names { white-space: nowrap; }

/* ── Wedding Q&A (Together Journal / Alice style) ── */
.wedding-qa { max-width: 600px; margin: 34px auto 0; text-align: center; }
.qa-item { margin-bottom: 26px; }
.qa-item:last-child { margin-bottom: 0; }
.qa-q {
  font-family: 'GT America Expanded', var(--font-sans);
  font-size: 10px; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--grey); margin-bottom: 11px;
}
.qa-a {
  font-family: var(--font-sans); font-weight: 400;
  font-size: clamp(13px, 1.5vw, 14.5px); line-height: 1.75; letter-spacing: 0.01em;
  color: var(--black); margin: 0; text-wrap: balance;
}

/* ── Refined wedding intro (clean, elevated) ── */
.wedding-qa { max-width: 600px; margin: 42px auto 0; text-align: center; }
.story-lead {
  font-family: var(--font-sans); font-weight: 400;
  font-size: clamp(14px, 1.55vw, 15.5px); line-height: 1.9; letter-spacing: 0.01em;
  color: #111; margin: 0 0 36px; text-wrap: balance;
}
.story-lead:last-child { margin-bottom: 0; }
.story-quote {
  font-family: var(--font-sans); font-weight: 400; font-style: normal;
  font-size: clamp(15px, 1.8vw, 18px); line-height: 1.7; letter-spacing: 0.01em;
  color: #111; margin: 0 auto 36px; max-width: 520px; text-wrap: balance;
}
.qa-item { margin-bottom: 30px; }
.qa-item:last-child { margin-bottom: 0; }

/* ── FINAL: unify the wedding intro so it sits clean (one column, even rhythm) ── */
.wedding-qa { max-width: 540px !important; margin: 32px auto 0 !important; text-align: center; }
.story-lead {
  max-width: 540px !important; margin: 0 auto 40px !important;
  font-size: clamp(13.5px, 1.5vw, 15px) !important; line-height: 1.95 !important;
  letter-spacing: 0.015em !important; color: #1a1a1a !important;
}
.story-lead:last-child { margin-bottom: 0 !important; }
.qa-item { margin-bottom: 32px !important; }
.qa-item:last-child { margin-bottom: 0 !important; }
.qa-q { font-size: 9.5px !important; letter-spacing: 0.32em !important; margin-bottom: 14px !important; }
.qa-a {
  max-width: 540px !important; margin: 0 auto !important;
  font-size: clamp(13.5px, 1.5vw, 15px) !important; line-height: 1.95 !important; letter-spacing: 0.015em !important;
}

/* ── FINAL testimonial redesign: wider, lighter, elevated ── */
.wedding-testimonial { max-width: 880px !important; padding: clamp(70px,9vw,120px) var(--pad-x) 0 !important; }
.wedding-testimonial blockquote {
  font-family: var(--font-sans) !important; font-weight: 200 !important;
  font-size: clamp(21px, 2.6vw, 30px) !important; line-height: 1.5 !important;
  letter-spacing: 0.005em !important; color: #1a1a1a !important; text-wrap: balance;
}
.wedding-testimonial .attr {
  margin-top: 34px !important; font-size: 10px !important; letter-spacing: 0.34em !important;
}

/* ── testimonial → match website body type (Cormorant serif), smaller ── */
.wedding-testimonial { max-width: 720px !important; }
.wedding-testimonial blockquote {
  font-family: var(--font-serif) !important; font-weight: 400 !important; font-style: normal !important;
  font-size: clamp(17px, 1.8vw, 20px) !important; line-height: 1.6 !important;
  letter-spacing: 0.01em !important; color: #1a1a1a !important;
}

/* ── testimonial: match the approved story text (clean sans, normal weight, small) ── */
.wedding-testimonial { max-width: 680px !important; padding-top: clamp(64px,8vw,100px) !important; }
.wedding-testimonial blockquote {
  font-family: var(--font-sans) !important; font-weight: 400 !important; font-style: normal !important;
  font-size: clamp(14px, 1.5vw, 15.5px) !important; line-height: 1.85 !important;
  letter-spacing: 0.015em !important; color: #1a1a1a !important;
}
.wedding-testimonial .attr { margin-top: 28px !important; }

/* ── SCHMICK refinements: rhythm, scale, presence, breathing room ── */
/* 1. tighten intro → gallery */
.wedding-head { padding-bottom: clamp(20px, 2.6vw, 30px) !important; }
/* 2. calm the scale: pairs a touch shorter, full-width features become refined bands (not full-screen) */
.wrow { grid-auto-rows: min(64vh, 640px) !important; }
.wrow.one { grid-auto-rows: min(52vh, 530px) !important; }
/* 3. intro a touch more presence */
.story-lead, .qa-a { font-size: clamp(14px, 1.55vw, 16px) !important; color: #111 !important; line-height: 1.9 !important; }
/* 4. breathing room around the testimonial */
.wedding-testimonial { padding-top: clamp(84px, 10vw, 140px) !important; }
.wedding-credits { padding-top: clamp(56px, 7vw, 90px) !important; }

/* ── full-width feature images show IN FULL (no crop); pairs stay tidy grid ── */
.wrow.one { grid-auto-rows: auto !important; height: auto !important; }
.wrow.one img { height: auto !important; object-fit: contain !important; }

/* ── EVERY image uncropped: single column, full frame, tidy even spacing ── */
.wedding-gallery { max-width: 940px !important; gap: 20px !important; }
.wrow { grid-template-columns: 1fr !important; grid-auto-rows: auto !important; height: auto !important; gap: 20px !important; }
.wrow img { width: 100% !important; height: auto !important; object-fit: contain !important; }

/* ── FINAL: portraits uncropped (pairs, natural shape) + landscapes full-width ── */
.wedding-gallery { max-width: 1120px !important; gap: 16px !important; }
.wrow.two { grid-template-columns: 1fr 1fr !important; grid-auto-rows: auto !important; height: auto !important; gap: 16px !important; align-items: start; }
.wrow.two img { width: 100% !important; height: auto !important; object-fit: initial !important; }
.wrow.one { grid-template-columns: 1fr !important; grid-auto-rows: auto !important; height: auto !important; }
.wrow.one img { width: 100% !important; height: auto !important; object-fit: initial !important; }

/* ── FIX: dark-mode text (use theme var so it flips) ── */
.story-lead, .qa-a, .wedding-testimonial blockquote { color: var(--black) !important; }
html.theme-dark .story-lead, html.theme-dark .qa-a,
html.theme-dark .wedding-testimonial blockquote { color: #f6f3ec !important; }

/* ── FIX: mobile — keep intro text + testimonial within the screen ── */
@media (max-width: 700px) {
  .wedding-head { max-width: 100% !important; }
  .wedding-qa, .story-lead, .qa-a { max-width: 100% !important; }
  .wedding-meta { max-width: 100%; }
  .wedding-testimonial { max-width: 100% !important; }
  .wedding-credits { max-width: 100% !important; }
}

/* ── FIX v2: mobile — stack to single column, everything fits ── */
@media (max-width: 700px) {
  .wedding-main { overflow-x: hidden !important; }
  .wedding-head { max-width: 100% !important; box-sizing: border-box; padding-left: 24px !important; padding-right: 24px !important; }
  .wedding-qa, .story-lead, .qa-a, .wedding-testimonial, .wedding-credits { max-width: 100% !important; width: 100% !important; box-sizing: border-box; }
  .wedding-meta { max-width: 100% !important; letter-spacing: 0.14em !important; }
  .wedding-gallery { max-width: 100% !important; box-sizing: border-box; padding-left: 10px !important; padding-right: 10px !important; gap: 10px !important; }
  .wrow, .wrow.one, .wrow.two { grid-template-columns: 1fr !important; gap: 10px !important; }
  .wrow img { width: 100% !important; height: auto !important; }
}

/* ── MOCKUP: body text in Cormorant serif to match website Collections/About ── */
.story-lead, .qa-a {
  font-family: var(--font-serif) !important; font-weight: 400 !important; font-style: normal !important;
  font-size: clamp(16px, 1.9vw, 20px) !important; line-height: 1.6 !important;
  letter-spacing: 0.01em !important; color: var(--black) !important;
}

/* ── Body size = website About/Collections (~14px serif) ── */
.story-lead, .qa-a {
  font-size: clamp(13.5px, 1.15vw, 14.5px) !important;
  line-height: 1.65 !important;
  text-wrap: initial !important;
}
/* ── Mobile: viewport-based widths so text never overflows ── */
@media (max-width: 700px) {
  .wedding-head { padding-left: 22px !important; padding-right: 22px !important; }
  .wedding-qa, .story-lead, .qa-a,
  .wedding-testimonial, .wedding-testimonial blockquote, .wedding-credits {
    max-width: 88vw !important; width: auto !important; box-sizing: border-box !important;
    margin-left: auto !important; margin-right: auto !important;
  }
  .wedding-meta { max-width: 90vw !important; white-space: normal !important; letter-spacing: 0.08em !important; font-size: 9px !important; }
  .story-lead, .qa-a { font-size: 14px !important; }
}

/* ── testimonial quote: serif (match body) but larger, as a feature ── */
.wedding-testimonial blockquote {
  font-family: var(--font-serif) !important; font-weight: 400 !important; font-style: normal !important;
  font-size: clamp(19px, 2.1vw, 24px) !important; line-height: 1.5 !important;
  letter-spacing: 0.01em !important; color: var(--black) !important;
}
html.theme-dark .wedding-testimonial blockquote { color: #f6f3ec !important; }

/* ── testimonial quote wider, aligned to the image/gallery width ── */
.wedding-testimonial { max-width: 1000px !important; }

/* ── quote a touch smaller ── */
.wedding-testimonial blockquote { font-size: clamp(16px, 1.7vw, 20px) !important; }

/* ── Portfolio landing: landscape two-across gallery cards ── */
.stories-grid { grid-template-columns: 1fr 1fr !important; gap: clamp(44px,4.5vw,66px) clamp(28px,3vw,44px) !important; max-width: 1240px !important; }
.wcard-img img { aspect-ratio: 3 / 2 !important; height: auto !important; }
@media (max-width: 700px) { .stories-grid { grid-template-columns: 1fr !important; } }

/* ── Portfolio hero cards: rich full colour, no grayscale, no zoom/crop ── */
.wcard-img img { filter: none !important; transform: none !important; object-fit: cover !important; }
.wcard:hover .wcard-img img { filter: none !important; transform: none !important; }

/* ══ DEPLOY: comprehensive mobile (overrides all prior) ══ */
@media (max-width: 700px) {
  html, body { overflow-x: hidden !important; }
  .wedding-main { overflow-x: hidden !important; }
  .wedding-head { width: 100% !important; max-width: 100% !important; padding: 40px 22px 16px !important; box-sizing: border-box !important; }
  .wedding-qa { width: 100% !important; max-width: 100% !important; }
  .story-lead, .qa-a { width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; }
  .wedding-names { font-size: clamp(21px, 6.5vw, 30px) !important; }
  .wedding-meta { font-size: 8.5px !important; letter-spacing: 0.05em !important; }
  .qa-q { white-space: normal !important; }
  .wedding-gallery { max-width: 100% !important; padding: 0 12px !important; box-sizing: border-box !important; }
  .wrow, .wrow.one, .wrow.two { grid-template-columns: 1fr !important; gap: 12px !important; }
  .wrow img { width: 100% !important; height: auto !important; }
  .wedding-testimonial { max-width: 100% !important; padding-left: 22px !important; padding-right: 22px !important; box-sizing: border-box !important; }
  .wedding-testimonial blockquote { max-width: 100% !important; }
  .wedding-credits { max-width: 100% !important; }
  .stories-inner { padding-left: 16px !important; padding-right: 16px !important; }
  .stories-grid { grid-template-columns: 1fr !important; gap: 34px !important; }
}

/* ══ safety net: prevent horizontal scroll + let long names wrap on small screens ══ */
html, body { overflow-x: hidden !important; }
.wedding-names { white-space: normal !important; overflow-wrap: break-word; }


/* ── FIX loading flash: reserve image space upfront (prevents header/gallery overlap on load) ── */
.wrow.two img { aspect-ratio: 2 / 3 !important; object-fit: cover !important; height: auto !important; }
.wrow.one img { aspect-ratio: 3 / 2 !important; object-fit: cover !important; height: auto !important; }

/* ══ FIX: lightbox styling (was only in portfolio.css; wedding pages need it here) ══ */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0, 0, 0, 0.94);
  display: flex; align-items: center; justify-content: center;
  padding: 40px; cursor: pointer;
}
.lightbox[hidden] { display: none; }
.lightbox-img {
  max-width: 92vw; max-height: 92vh; object-fit: contain;
  cursor: default; filter: none; animation: lightboxIn 0.25s ease;
}
.lightbox-close {
  position: absolute; top: 20px; right: 28px;
  background: none; border: none; color: rgba(255,255,255,0.7);
  font-size: 32px; line-height: 1; font-family: var(--font-sans); font-weight: 300;
  cursor: pointer; z-index: 2001;
}
.lightbox-close:hover { color: #fff; }
@keyframes lightboxIn { from { opacity: 0; transform: scale(0.98); } to { opacity: 1; transform: scale(1); } }
