/* Creations by DGS: bridal lookbook. Photo-first, phone-first, in the colours of her logo
   (blush, mauve, deep rosewood) with a high-contrast serif that echoes the DGS monogram. */
:root {
  --blush: #F8F1EE;          /* main light background */
  --petal: #F1E4E0;          /* alternate light background */
  --white: #FFFCFB;
  --mauve: #9C6E6D;          /* logo mid tone: lines, numerals (decorative) */
  --mauve-text: #85585A;     /* small accent text on light (AA) */
  --rose-light: #E7CBC6;     /* italic words on dark */
  --rosewood: #6E3438;       /* logo deep tone: buttons */
  --rosewood-hover: #57282C;
  --ink: #2E1D1F;            /* headings */
  --body: #3E2F31;           /* body text */
  --muted: #54464A;
  --plum: #2A1A1C;           /* dark sections, footer */
  --on-dark: #FBF3F0;
  --on-dark-muted: rgba(251, 243, 240, .82);
  --line: rgba(46, 29, 31, .13);
  --gradient: linear-gradient(135deg, #946566 0%, #7A4549 45%, #54262B 100%);
  --serif: "Bodoni Moda", "Didot", Georgia, serif;
  --sans: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;
  --wrap: 1200px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 72px; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--blush); color: var(--body); font: 400 17px/1.7 var(--sans); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
figure { margin: 0; }
h1, h2, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.08; margin: 0; color: var(--ink); letter-spacing: -.01em; text-wrap: balance; }
h3 { font: 500 20px/1.35 var(--sans); margin: 0; color: var(--ink); }
h1 em, h2 em { font-style: italic; color: var(--mauve-text); }
p { margin: 0; }
b { font-weight: 500; }
.nowrap { white-space: nowrap; }
.wrap { width: min(var(--wrap), 100% - 40px); margin-inline: auto; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--rosewood); color: #fff; padding: 8px 14px; z-index: 100; }
.skip:focus { left: 16px; }
:focus-visible { outline: 2px solid var(--mauve); outline-offset: 3px; }

.eyebrow { font: 500 12px/1.4 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--mauve-text); margin-bottom: 16px; }
.lead { font-size: 18px; line-height: 1.65; color: var(--muted); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 56px; padding: 0 30px;
  border: 0; border-radius: 999px; background: var(--rosewood); color: #fff; text-decoration: none; cursor: pointer;
  font: 500 14px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase;
  transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
}
.btn:hover { background: var(--rosewood-hover); transform: translateY(-2px); box-shadow: 0 14px 28px -14px rgba(84, 38, 43, .6); }
.btn-white { background: #fff; color: var(--rosewood); }
.btn-white:hover { background: var(--blush); }
.arr { display: inline-block; letter-spacing: 0; font-size: 17px; transition: transform .3s var(--ease); }
.btn:hover .arr, .text-link:hover .arr { transform: translateX(4px); }
.text-link { display: inline-flex; align-items: center; gap: 8px; padding: 4px 0; border: 0; background: none; cursor: pointer; font: 500 14px/1.3 var(--sans); letter-spacing: .1em; text-transform: uppercase; color: var(--rosewood); text-decoration: none; border-bottom: 1px solid currentColor; }
.text-link-light { color: var(--on-dark); }

/* Header: white over the hero, blush once scrolled */
.site-header { position: fixed; inset: 0 0 auto; z-index: 50; color: #fff; transition: background .35s ease, color .35s ease, box-shadow .35s ease; }
.site-header.scrolled, body.menu-open .site-header { background: rgba(248, 241, 238, .96); color: var(--ink); box-shadow: 0 1px 0 var(--line); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; position: relative; z-index: 2; color: inherit; }
.brand-badge { width: 42px; height: 42px; border-radius: 50%; box-shadow: 0 0 0 1px rgba(255, 255, 255, .35); }
.brand-name { font: 400 20px/1 var(--serif); display: flex; flex-direction: column; }
.brand-name small { font: 500 9px/1.6 var(--sans); letter-spacing: .28em; text-transform: uppercase; margin-top: 5px; opacity: .85; }
.menu-toggle { width: 44px; height: 44px; background: none; border: 0; cursor: pointer; position: relative; z-index: 2; color: inherit; }
.menu-toggle span { position: absolute; left: 10px; right: 10px; height: 1.5px; background: currentColor; transition: transform .3s ease, top .3s ease; }
.menu-toggle span:first-child { top: 18px; }
.menu-toggle span:last-child { top: 26px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 22px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 22px; transform: rotate(-45deg); }
.nav { position: fixed; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; background: var(--blush); color: var(--ink); opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s; }
.nav.open { opacity: 1; visibility: visible; }
.nav a { font: 400 32px/1.2 var(--serif); text-decoration: none; }
.nav .nav-cta { margin-top: 14px; font: 500 14px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; background: var(--rosewood); color: #fff; padding: 18px 34px; border-radius: 999px; }
body.menu-open { overflow: hidden; }

/* 1. Hero */
.hero { position: relative; height: 100svh; min-height: 600px; max-height: 1000px; overflow: hidden; background: var(--plum); color: #fff; display: flex; align-items: flex-end; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.8s ease; }
.hero-slide.is-on { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }
.hero-slide.is-on img { animation: kenburns 9s ease-out both; }
@keyframes kenburns { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(26, 14, 16, .45) 0%, rgba(26, 14, 16, 0) 22%, rgba(26, 14, 16, 0) 38%, rgba(26, 14, 16, .6) 62%, rgba(26, 14, 16, .9) 100%); }
.hero-copy { position: relative; z-index: 2; width: min(760px, 100% - 40px); margin: 0 auto; padding-bottom: calc(40px + env(safe-area-inset-bottom)); text-align: center; }
.hero .eyebrow { color: rgba(255, 255, 255, .88); }
.hero h1 { color: #fff; font-size: 44px; line-height: 1.05; }
.hero h1 em { display: block; color: #F3D9D4; }
.hero .lead { color: rgba(255, 255, 255, .9); margin: 18px auto 28px; max-width: 32em; font-size: 17px; }
.hero .btn { width: 100%; max-width: 340px; }
.js .hero-copy > * { opacity: 0; }
.hero.play .hero-copy > * { animation: rise 1.1s var(--ease) both; }
.hero.play .hero-copy > *:nth-child(1) { animation-delay: .3s; }
.hero.play .hero-copy > *:nth-child(2) { animation-delay: .45s; }
.hero.play .hero-copy > *:nth-child(3) { animation-delay: .65s; }
.hero.play .hero-copy > *:nth-child(4) { animation-delay: .8s; }
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* Sections */
.section { padding: 80px 0; }
.section-blush { background: var(--blush); }
.section-petal { background: var(--petal); }
.section-white { background: var(--white); }
.section h2 { font-size: 38px; }
.head { margin-bottom: 36px; }
.head .lead { margin-top: 14px; max-width: 30em; }
.head-center { text-align: center; }
.head-center .lead { margin-inline: auto; }
.head h2 em { display: block; }

/* 2. Real brides: swipeable lookbook */
.lookbook { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 20px; scroll-padding-inline: 20px; scrollbar-width: none; overscroll-behavior-x: contain; }
.lookbook::-webkit-scrollbar { display: none; }
.look { flex: 0 0 82%; scroll-snap-align: start; position: relative; overflow: hidden; border-radius: 4px; background: var(--petal); }
.look-open { display: block; width: 100%; height: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; }
.look img { width: 100%; height: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 22%; transition: transform 1.2s var(--ease); }
.look:hover img { transform: scale(1.04); }
.lookbook-foot { display: flex; flex-direction: column; align-items: center; gap: 22px; margin-top: 22px; }
.dots { display: flex; gap: 8px; }
.dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--line); transition: background .3s, transform .3s; }
.dots span.on { background: var(--rosewood); transform: scale(1.25); }
.dots-light span { background: rgba(255, 255, 255, .35); }
.dots-light span.on { background: #fff; }
.more-link { font: 400 16px/1.5 var(--sans); color: var(--muted); text-align: center; }
.more-link a { color: var(--rosewood); text-underline-offset: 3px; }

/* Photo viewer */
.viewer { border: 0; padding: 0; margin: 0; width: 100vw; height: 100dvh; max-width: none; max-height: none; background: rgba(20, 11, 12, .96); color: #fff; }
.viewer[open] { display: grid; place-items: center; }
.viewer::backdrop { background: rgba(20, 11, 12, .96); }
.viewer img, .viewer video { max-width: 94vw; max-height: 84dvh; width: auto; height: auto; border-radius: 4px; }
.viewer [hidden] { display: none; }
.v-close { position: absolute; top: 14px; right: 14px; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .35); background: none; color: #fff; font-size: 26px; line-height: 1; cursor: pointer; z-index: 2; }
.v-nav { position: absolute; top: 50%; width: 48px; height: 48px; margin-top: -24px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .35); background: rgba(20, 11, 12, .4); color: #fff; font-size: 18px; cursor: pointer; z-index: 2; }
.v-prev { left: 12px; }
.v-next { right: 12px; }
.v-count { position: absolute; bottom: 18px; left: 0; right: 0; text-align: center; font-size: 14px; letter-spacing: .12em; color: rgba(255, 255, 255, .75); }
.viewer.is-video .v-nav, .viewer.is-video .v-count { display: none; }

/* 3 + 4. Services */
.services { display: grid; gap: 56px; }
.focus h2 { font-size: 46px; margin-bottom: 22px; }
.focus h2 em { display: block; }
.focus > p:not(.eyebrow) { color: var(--muted); }
.focus > p + p { margin-top: 14px; }
.focus .btn { width: 100%; margin-top: 30px; }
.others { border-top: 1px solid var(--line); padding-top: 32px; }
.other + .other { margin-top: 30px; padding-top: 30px; border-top: 1px solid var(--line); }
.other h3 { font-size: 21px; margin-bottom: 8px; }
.other p { color: var(--muted); font-size: 17px; margin-bottom: 14px; }

/* 5. Notice */
.notice { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.notice li { display: grid; grid-template-columns: 60px 1fr; column-gap: 8px; padding: 28px 0; border-top: 1px solid var(--line); }
.notice li:last-child { border-bottom: 1px solid var(--line); }
.n-no { grid-row: span 2; font: italic 500 38px/1 var(--serif); color: var(--mauve); }
.notice h3 { font-size: 20px; margin-bottom: 8px; }
.notice p { color: var(--body); font-size: 17px; line-height: 1.65; }

/* 6. Reviews on the logo gradient */
.section-gradient { background: var(--gradient); color: var(--on-dark); position: relative; overflow: hidden; }
.section-gradient h2 { color: #fff; }
.section-gradient h2 em { color: var(--rose-light); }
.rv { position: relative; max-width: 820px; margin: 0 auto; text-align: center; }
.rv-mark { display: block; height: 52px; font: 400 120px/1 var(--serif); color: rgba(255, 255, 255, .35); }
.rv-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; outline-offset: 6px; align-items: flex-start; }
.rv-track::-webkit-scrollbar { display: none; }
.rv-slide { flex: 0 0 100%; scroll-snap-align: center; padding: 0 4px; }
.stars { color: #F3D9D4; letter-spacing: .3em; font-size: 15px; margin-bottom: 16px; }
.stars-rec { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; }
.rv-slide blockquote { margin: 0; }
.rv-slide p { font-size: 18px; line-height: 1.75; color: #fff; }
.rv-slide figcaption { margin-top: 24px; }
.rv-slide cite { display: block; font: normal 500 18px/1.3 var(--sans); color: #fff; }
.rv-slide figcaption span { display: block; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--on-dark-muted); margin-top: 6px; }
.rv-nav { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 34px; }
.rv-btn { width: 50px; height: 50px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .5); background: transparent; color: #fff; font-size: 17px; cursor: pointer; transition: background .3s, color .3s, opacity .3s; }
.rv-btn:hover { background: #fff; color: var(--rosewood); }
.rv-btn:disabled { opacity: .3; pointer-events: none; }
.rv-source { margin-top: 26px; font-size: 14px; }
.rv-source a { color: var(--on-dark); text-underline-offset: 3px; }

/* 7. Behind the look */
.section-dark { background: var(--plum); color: var(--on-dark); }
.section-dark h2 { color: #fff; }
.section-dark h2 em { color: var(--rose-light); }
.section-dark .eyebrow { color: #E2BDB6; }
.section-dark .lead { color: var(--on-dark-muted); }
.bts-grid { display: grid; gap: 12px; }
.bts { position: relative; overflow: hidden; border-radius: 4px; background: #3a2629; }
.bts-open { display: block; width: 100%; height: 100%; padding: 0; border: 0; background: none; position: relative; cursor: default; }
.bts img { width: 100%; height: 100%; object-fit: cover; }
.bts-main img { aspect-ratio: 4 / 3; object-position: 70% 40%; }
.bts-side img { aspect-ratio: 1; object-position: 50% 30%; }
.bts-extra { display: none; }
.bts-grid.show-all .bts-extra { display: block; }
.bts[data-video] .bts-open { cursor: pointer; }
.bts-play { display: none; position: absolute; left: 50%; top: 50%; width: 72px; height: 72px; margin: -36px 0 0 -36px; border-radius: 50%; background: rgba(255, 255, 255, .92); box-shadow: 0 12px 30px rgba(0, 0, 0, .3); transition: transform .35s var(--ease); }
.bts-play::after { content: ""; position: absolute; left: 29px; top: 24px; border-style: solid; border-width: 12px 0 12px 19px; border-color: transparent transparent transparent var(--rosewood); }
.bts[data-video] .bts-play { display: block; }
.bts[data-video]:hover .bts-play { transform: scale(1.08); }
.more-vids { margin-top: 28px; text-align: center; }

/* 8. Meet Dane */
.about-grid { display: grid; gap: 40px; }
.about-photo { position: relative; max-width: 620px; margin: 14px auto 0; width: calc(100% - 14px); }
.about-photo::before { content: ""; position: absolute; inset: -14px 14px 14px -14px; background: var(--gradient); border-radius: 4px; opacity: .9; }
.about-photo img { position: relative; width: 100%; aspect-ratio: 1522 / 1033; object-fit: cover; border-radius: 4px; }
.about-copy h2 { margin-bottom: 20px; }
.about-copy p:not(.eyebrow) { color: var(--muted); }
.about-copy .about-lead { color: var(--body); font-size: 18.5px; line-height: 1.65; }
.about-copy p + p { margin-top: 14px; }
.facts { margin: 32px 0 0; display: grid; gap: 0; }
.facts div { padding: 14px 0; border-top: 1px solid var(--line); }
.facts dt { font: 500 17.5px/1.3 var(--sans); color: var(--ink); }
.facts dd { margin: 2px 0 0; font-size: 15px; color: var(--muted); }

/* 9. FAQ */
.faq-wrap { max-width: 820px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 20px 0; font: 500 18px/1.4 var(--sans); color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; flex: none; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line); background: linear-gradient(var(--rosewood), var(--rosewood)) center / 10px 1.5px no-repeat, linear-gradient(var(--rosewood), var(--rosewood)) center / 1.5px 10px no-repeat; transition: transform .4s var(--ease), background-color .3s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq-a p { color: var(--body); font-size: 17px; padding: 0 0 22px; }
.faq details[open] .faq-a { animation: faqIn .45s var(--ease); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.faq details.flash summary { color: var(--rosewood); }

/* 10. Final CTA: full-screen bride */
.inquire { position: relative; background: var(--plum); color: #fff; overflow: hidden; }
.inquire-media { position: relative; height: 62svh; min-height: 380px; max-height: 620px; }
.inquire-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 55% 20%; }
.inquire-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(42, 26, 28, 0) 45%, rgba(42, 26, 28, .75) 80%, var(--plum) 100%); }
.inquire-copy { position: relative; z-index: 1; width: min(720px, 100% - 40px); margin: -90px auto 0; padding: 0 0 calc(96px + env(safe-area-inset-bottom)); text-align: center; }
.inquire .eyebrow { color: rgba(255, 255, 255, .88); }
.inquire h2 { color: #fff; font-size: 40px; }
.inquire h2 em { display: block; color: #F3D9D4; }
.inquire .lead { color: rgba(255, 255, 255, .9); margin: 18px auto 30px; }

/* Inquiry form (on the dark panel) */
.inq-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 14px; text-align: left; padding: 24px 20px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14); border-radius: 6px; }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; border: 0; margin: 0; padding: 0; }
.field-full { grid-column: 1 / -1; }
.field label, .field legend { font-size: 14px; font-weight: 500; color: #fff; padding: 0; }
.field input { font: 400 16px/1.3 var(--sans); color: #fff; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .28); border-radius: 4px; padding: 12px 12px; min-height: 50px; width: 100%; color-scheme: dark; }
.field input::placeholder { color: rgba(255, 255, 255, .5); }
.field input:focus { outline: none; border-color: #F3D9D4; background: rgba(255, 255, 255, .12); }
.choice { flex-direction: row; flex-wrap: wrap; gap: 8px; }
.choice legend { width: 100%; margin-bottom: 6px; }
.choice label { display: inline-flex; align-items: center; gap: 8px; font-weight: 400; font-size: 15px; padding: 10px 14px; border: 1px solid rgba(255, 255, 255, .28); border-radius: 999px; cursor: pointer; }
.choice input { accent-color: #F3D9D4; width: 16px; height: 16px; min-height: 0; margin: 0; padding: 0; }
.choice label:has(input:checked) { background: rgba(255, 255, 255, .14); border-color: #F3D9D4; }
.form-error { color: #FFD4CC; font-weight: 500; font-size: 15px; }
.inq-form .btn { width: 100%; }
.form-note { font-size: 14px; color: var(--on-dark-muted); text-align: center; line-height: 1.5; }
.form-note a { color: #fff; }

/* Footer */
.footer { background: var(--plum); color: var(--on-dark-muted); padding: 64px 0 calc(100px + env(safe-area-inset-bottom)); font-size: 15.5px; border-top: 1px solid rgba(255, 255, 255, .08); }
.footer-grid { display: grid; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.footer-logo { width: 116px; }
.footer h4 { font: 500 12px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: #E2BDB6; margin-bottom: 14px; }
.footer address { font-style: normal; line-height: 1.8; }
.footer-col a { display: block; color: var(--on-dark); text-decoration: none; padding: 4px 0; width: fit-content; }
.footer-col a:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 6px 24px; padding-top: 22px; font-size: 13.5px; }

/* Sticky inquiry bar (phones) */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); background: rgba(248, 241, 238, .94); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 -1px 0 var(--line); transform: translateY(110%); transition: transform .4s var(--ease); }
.sticky-cta.show { transform: none; }
.sticky-cta .btn { width: 100%; min-height: 52px; }

/* Reveal */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Tablet and up ---------- */
@media (min-width: 700px) {
  .section { padding: 110px 0; }
  .section h2 { font-size: 52px; }
  .hero h1 { font-size: 64px; }
  .hero .btn { width: auto; }
  .look { flex-basis: 46%; }
  .notice { grid-template-columns: 1fr 1fr; column-gap: 48px; }
  .notice li:nth-last-child(2) { border-bottom: 1px solid var(--line); }
  .facts { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .facts div { border-top: 2px solid var(--mauve); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .bts-grid { grid-template-columns: 1.7fr 1fr; gap: 16px; }
  .bts-main img { aspect-ratio: auto; position: absolute; inset: 0; }
  .bts-side img { aspect-ratio: 3 / 4; }
  .inquire h2 { font-size: 60px; }
  .focus .btn { width: auto; }
  .inq-form { padding: 30px 28px; }
  .rv-slide p { font-size: 20px; }
}

/* ---------- Desktop ---------- */
@media (min-width: 1000px) {
  body { font-size: 17.5px; }
  .header-inner { height: 88px; transition: height .35s ease; }
  .site-header.scrolled .header-inner { height: 72px; }
  .brand-badge { width: 50px; height: 50px; }
  .brand-name { font-size: 23px; }
  .menu-toggle { display: none; }
  .nav { position: static; flex-direction: row; gap: 34px; background: none; color: inherit; opacity: 1; visibility: visible; }
  .nav a { font: 400 15px/1 var(--sans); padding: 8px 0; position: relative; }
  .nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: currentColor; transform: scaleX(0); transition: transform .35s var(--ease); }
  .nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
  .nav .nav-cta { margin: 0; padding: 14px 26px; font-size: 13px; }
  .site-header:not(.scrolled) .nav .nav-cta { background: #fff; color: var(--rosewood); }

  /* hero: three brides side by side */
  .hero-slides { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; background: var(--plum); }
  .hero-slide { position: relative; opacity: 1; }
  .hero-slide img { position: absolute; inset: 0; }
  .hero-slide.is-on img { animation: none; }
  .js .hero-slide img { opacity: 0; }
  .hero.play .hero-slide img { animation: slideIn 1.6s var(--ease) both; }
  .hero.play .hero-slide:nth-child(1) img { animation-delay: .1s; }
  .hero.play .hero-slide:nth-child(2) img { animation-delay: 0s; }
  .hero.play .hero-slide:nth-child(3) img { animation-delay: .2s; }
  @keyframes slideIn { from { opacity: 0; transform: scale(1.06); } to { opacity: 1; transform: none; } }
  .hero::after { background: linear-gradient(180deg, rgba(26, 14, 16, .5) 0%, rgba(26, 14, 16, 0) 20%, rgba(26, 14, 16, 0) 42%, rgba(26, 14, 16, .55) 66%, rgba(26, 14, 16, .9) 100%); }
  .hero-copy { width: min(1000px, 100% - 40px); padding-bottom: 64px; }
  .hero-slide img { object-position: 50% 8%; }
  .hero h1 { font-size: clamp(58px, 5.2vw, 76px); }
  .hero h1 em { display: inline; }
  .hero .lead { font-size: 19px; }

  .section { padding: 140px 0; }
  .section h2 { font-size: clamp(52px, 5vw, 68px); }
  .head { display: grid; grid-template-columns: 1.2fr 1fr; gap: 20px 64px; align-items: end; margin-bottom: 56px; }
  .head .lead { justify-self: end; margin: 0 0 8px; max-width: 24em; }
  .head-center { display: block; }
  .head-center .lead { margin: 16px auto 0; }
  .section-dark .head { grid-template-columns: 1fr; }
  .section-dark .head .lead { justify-self: start; margin-top: 18px; }

  /* lookbook becomes an editorial grid */
  .lookbook { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 16px; width: min(var(--wrap), 100% - 40px); margin: 0 auto; padding: 0; overflow: visible; }
  .look { flex: none; }
  .look-a { grid-row: span 2; }
  .look-a img { position: absolute; inset: 0; aspect-ratio: auto; object-position: 50% 15%; }
  .dots { display: none; }

  .services { grid-template-columns: 1.5fr 1fr; gap: 90px; align-items: start; }
  .focus h2 { font-size: clamp(60px, 5.6vw, 80px); }
  .others { border-top: 0; border-left: 1px solid var(--line); padding: 8px 0 0 48px; }

  .notice { grid-template-columns: repeat(3, 1fr); column-gap: 56px; }
  .notice li { grid-template-columns: 1fr; padding: 34px 0 38px; }
  .notice li:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .n-no { grid-row: auto; font-size: 44px; margin-bottom: 18px; }
  .notice h3 { font-size: 21px; margin-bottom: 10px; }

  .rv-slide p { font-size: 21px; }

  .about-grid { grid-template-columns: 1.1fr 1fr; gap: 90px; align-items: center; }

  .faq summary { font-size: 19px; padding: 24px 0; }

  /* desktop close: bride on the right, invitation on the left, blended by a soft fade */
  .inquire { display: flex; align-items: center; min-height: 90vh; }
  .inquire-media { position: absolute; top: 0; right: 0; bottom: 0; width: 56%; height: auto; max-height: none; }
  .inquire-bg { object-position: 50% 25%; }
  .inquire-media::after { background: linear-gradient(90deg, var(--plum) 0%, rgba(42, 26, 28, .6) 18%, rgba(42, 26, 28, 0) 45%); }
  .inquire-copy { width: min(var(--wrap), 100% - 40px); margin: 0 auto; padding: 110px 0; text-align: left; }
  .inquire-copy > * { max-width: 580px; }
  .inquire-copy h2 { max-width: 680px; }
  .inquire .lead { margin: 22px 0 34px; }
  .inquire h2 { font-size: clamp(60px, 5.6vw, 80px); }

  .footer { padding-bottom: 32px; }
  .sticky-cta { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html, .rv-track { scroll-behavior: auto; }
  .hero-slide { transition: none; }
  .hero-slide img, .hero.play .hero-slide img { animation: none !important; }
  .js .hero-slide img { opacity: 1; }
  .js .hero-copy > *, .hero.play .hero-copy > * { animation: none; opacity: 1; transform: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .look img { transition: none; }
  .faq details[open] .faq-a { animation: none; }
}
