/* ===================================================================
   LUNE NOIRE PHOTOGRAPHY — shared stylesheet
   Dark editorial B&W. Pinyon Script · Cormorant Garamond · Mulish.
   =================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #171412; --bg2: #1e1a17; --bg3: #221d19;
  --ink: #eae4da; --muted: #99907f; --faint: rgba(234,228,218,.5);
  --line: rgba(234,228,218,0.12); --accent: #c99a8b; --accent-deep: #b08456;
  --script: 'Pinyon Script', cursive;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Mulish', system-ui, sans-serif;
  --maxw: 1360px;
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--ink); font-family: var(--sans); font-weight: 300; letter-spacing: .012em; line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--accent); color: var(--bg); }

/* utility */
.label { font-size: .6rem; letter-spacing: .4em; text-transform: uppercase; color: var(--accent); font-weight: 400; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1.1s ease, transform 1.1s ease; }
.reveal.in { opacity: 1; transform: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 46px; }
.script-accent { font-family: var(--script); color: var(--accent); }

/* ── NAV ── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; display: flex; justify-content: space-between; align-items: center; padding: 22px 46px; transition: background .4s, padding .3s, border-color .4s; border-bottom: 1px solid transparent; }
nav.scrolled { background: rgba(23,20,18,.9); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); padding: 13px 46px; border-bottom-color: var(--line); }
nav.menu-open { background: transparent !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; border-bottom-color: transparent !important; }
.nav-logo { height: 60px; width: auto; display: block; filter: brightness(0) invert(1); opacity: .92; transition: opacity .2s, height .3s; }
nav.scrolled .nav-logo { height: 50px; }
.nav-logo:hover { opacity: 1; }
.nav-links { display: flex; gap: 38px; list-style: none; align-items: center; }
.nav-links a { font-size: .63rem; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color .2s; position: relative; }
.nav-links a:not(.nav-cta)::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--accent); transition: width .3s; }
.nav-links a:not(.nav-cta):hover::after, .nav-links a.active:not(.nav-cta)::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.nav-cta { border: 1px solid var(--accent); color: var(--ink); padding: 10px 24px; transition: background .25s, color .25s; }
.nav-links a.nav-cta:hover { background: var(--accent); color: var(--bg); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; z-index: 300; }
.hamburger span { display: block; width: 24px; height: 1px; background: var(--ink); transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── HERO (full-bleed rotating) ── */
.hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero .slides { position: absolute; inset: 0; }
.hero .slides img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 28%; opacity: 0; transition: opacity 2.4s ease; }
.hero .slides img.on { opacity: 1; }
.hero .shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, rgba(23,20,18,.55) 0%, rgba(23,20,18,.2) 38%, rgba(23,20,18,.35) 70%, rgba(23,20,18,.92) 100%); }
.hero .center { position: relative; z-index: 2; padding: 0 30px; }
.hero h1 { font-family: var(--script); font-weight: 400; font-size: clamp(4.2rem, 12vw, 11rem); line-height: 1.1; color: #f3eee5; text-shadow: 0 2px 40px rgba(0,0,0,.4); }
.hero .sub { margin-top: 6px; font-size: clamp(.62rem, 1vw, .78rem); letter-spacing: .58em; text-transform: uppercase; color: rgba(243,238,229,.72); }
.hero .line { margin-top: 34px; font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(1.1rem, 1.9vw, 1.55rem); color: rgba(243,238,229,.82); line-height: 1.8; max-width: 620px; margin-left: auto; margin-right: auto; }
.hero .cta-row { margin-top: 42px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.hero .cta-row a { font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; text-decoration: none; padding: 15px 34px; transition: background .3s, color .3s, border-color .3s; }
.hero .cta-row a.solid { background: var(--accent); color: var(--bg); border: 1px solid var(--accent); }
.hero .cta-row a.solid:hover { background: transparent; color: #f3eee5; }
.hero .cta-row a.ghost { border: 1px solid rgba(243,238,229,.5); color: #f3eee5; }
.hero .cta-row a.ghost:hover { background: rgba(243,238,229,.12); border-color: #f3eee5; }
.hero .scroll-hint { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; font-size: .54rem; letter-spacing: .34em; text-transform: uppercase; color: rgba(243,238,229,.55); }

/* ── SECTION SHELL ── */
section { position: relative; }
.sec-pad { padding: 130px 0; }
.sec-head { text-align: center; margin-bottom: 64px; }
.sec-head .script { font-family: var(--script); font-size: clamp(2.8rem, 5.5vw, 4.6rem); line-height: 1.15; color: var(--ink); display: block; margin-top: 8px; }
.sec-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin-top: 10px; }

/* ── PHILOSOPHY STATEMENT ── */
.statement { padding: 150px 30px; text-align: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.statement .big { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(1.7rem, 3.6vw, 2.9rem); line-height: 1.5; max-width: 940px; margin: 0 auto; color: var(--ink); }
.statement .big b { font-style: normal; color: var(--accent); font-weight: 400; }
.statement .sig { margin-top: 40px; font-family: var(--script); font-size: clamp(2rem, 3.2vw, 2.6rem); color: var(--accent); }
.statement .sig-sub { margin-top: 4px; font-size: .58rem; letter-spacing: .34em; text-transform: uppercase; color: var(--muted); }

/* ── FEATURED STRIP ── */
.featured-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.featured-grid a { display: block; overflow: hidden; position: relative; }
.featured-grid img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform .9s cubic-bezier(.22,.61,.36,1), filter .5s; }
.featured-grid a:hover img { transform: scale(1.05); }
.featured-grid a.tall { grid-row: span 2; }
.featured-grid a.tall img { aspect-ratio: 3/4; height: 100%; }
.more-link-wrap { text-align: center; margin-top: 52px; }
.more-link { display: inline-block; font-size: .63rem; letter-spacing: .3em; text-transform: uppercase; color: var(--accent); text-decoration: none; border-bottom: 1px solid var(--accent); padding-bottom: 5px; transition: color .25s, letter-spacing .25s; }
.more-link:hover { color: var(--ink); letter-spacing: .34em; }

/* ── EXPLORE COLLECTION CARDS ── */
.collections-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.col-card { position: relative; display: block; overflow: hidden; text-decoration: none; aspect-ratio: 3/4; }
.col-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.22,.61,.36,1), filter .5s; filter: brightness(.6); }
.col-card:hover img { transform: scale(1.06); filter: brightness(.44); }
.col-card .cap { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 26px; z-index: 2; }
.col-card .cap .name { font-family: var(--serif); font-weight: 400; font-size: clamp(1.3rem, 2.2vw, 1.7rem); color: #f3eee5; letter-spacing: .01em; text-shadow: 0 1px 16px rgba(0,0,0,.55); }
.col-card .cap .blurb { margin-top: 11px; max-width: 92%; font-family: var(--serif); font-style: italic; font-weight: 300; font-size: .84rem; line-height: 1.55; color: rgba(243,238,229,.9); text-shadow: 0 1px 16px rgba(0,0,0,.7); }
.col-card .cap .soon-badge { font-size: .5rem; letter-spacing: .32em; text-transform: uppercase; color: var(--accent); border: 1px solid var(--accent); padding: 5px 12px; margin-bottom: 16px; }
.col-card.coming { background: var(--bg3); }
.col-card.coming::after { border-color: rgba(243,238,229,.24); }
.col-card::after { content: ''; position: absolute; inset: 14px; border: 1px solid rgba(243,238,229,0); z-index: 1; transition: border-color .4s; pointer-events: none; }
.col-card:hover::after { border-color: rgba(243,238,229,.4); }
.collection-intro { text-align: center; max-width: 660px; margin: 4px auto 34px; padding: 0 24px; min-height: 1.5em; font-family: var(--serif); font-style: italic; font-size: clamp(1rem, 1.7vw, 1.3rem); line-height: 1.55; color: var(--muted); transition: opacity .3s; }

/* ── SESSIONS TEASER (3 signature) ── */
.teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tease { border: 1px solid var(--line); padding: 46px 34px; text-align: center; transition: border-color .35s, background .35s; text-decoration: none; display: block; }
.tease:hover { border-color: var(--accent); background: var(--bg3); }
.tease h3 { font-family: var(--serif); font-weight: 400; font-size: 1.7rem; color: var(--ink); }
.tease .tag { display: block; margin-top: 10px; font-size: .55rem; letter-spacing: .3em; text-transform: uppercase; color: var(--accent); }
.tease p { margin-top: 18px; font-size: .86rem; line-height: 1.9; color: var(--muted); }
.tease .go { display: inline-block; margin-top: 22px; font-size: .58rem; letter-spacing: .28em; text-transform: uppercase; color: var(--accent); border-bottom: 1px solid var(--accent); padding-bottom: 4px; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--bg2); border-top: 1px solid var(--line); }
.testi-list { max-width: 780px; margin: 0 auto; }
.testi { border-top: 1px solid var(--line); padding: 52px 6px; text-align: center; margin: 0; }
.testi:last-child { border-bottom: 1px solid var(--line); }
.testi .stars { color: var(--accent); letter-spacing: .34em; font-size: .82rem; margin-bottom: 24px; }
.testi p { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(1.05rem, 1.7vw, 1.25rem); line-height: 1.85; color: var(--ink); margin-bottom: 14px; }
.testi p:last-of-type { margin-bottom: 0; }
.testi cite { display: block; margin-top: 26px; font-style: normal; font-size: .58rem; letter-spacing: .3em; text-transform: uppercase; color: var(--accent); }
.testi .src { display: block; margin-top: 7px; font-size: .53rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.testi-short-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 940px; margin: 0 auto 24px; }
.testi-short { text-align: center; padding: 16px 22px 40px; margin: 0; }
.testi-short p { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(1.3rem, 2.2vw, 1.75rem); line-height: 1.5; color: var(--accent); }
.testi-short cite { display: block; margin-top: 16px; font-style: normal; font-size: .54rem; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 880px) { .testi-short-row { grid-template-columns: 1fr; gap: 6px; margin-bottom: 10px; } .testi { padding: 40px 6px; } }

/* ── CTA BAND ── */
.cta-band { padding: 140px 30px; text-align: center; background: var(--bg2); border-top: 1px solid var(--line); }
.cta-band .script { font-family: var(--script); font-size: clamp(2.6rem, 5vw, 4.2rem); color: var(--accent); display: block; line-height: 1.2; }
.cta-band p { font-family: var(--serif); font-style: italic; font-size: clamp(1.2rem, 2.2vw, 1.7rem); color: var(--ink); max-width: 640px; margin: 22px auto 0; line-height: 1.6; }
.cta-band .btn { margin-top: 40px; }

/* ── BUTTON ── */
.btn { display: inline-block; padding: 17px 46px; border: 1px solid var(--accent); color: var(--ink); font-family: var(--sans); font-size: .63rem; letter-spacing: .3em; text-transform: uppercase; text-decoration: none; background: none; cursor: pointer; transition: background .25s, color .25s; }
.btn:hover { background: var(--accent); color: var(--bg); }
.btn.solid { background: var(--accent); color: var(--bg); }
.btn.solid:hover { background: transparent; color: var(--ink); }

/* ── PAGE HEAD (interior pages) ── */
.page-head { text-align: center; padding: 190px 30px 40px; }
.page-head .script { font-family: var(--script); font-size: clamp(3rem, 6vw, 5rem); line-height: 1.15; color: var(--ink); display: block; margin-top: 6px; }
.page-head .intro { margin: 28px auto 0; max-width: 620px; font-family: var(--serif); font-style: italic; font-size: clamp(1.1rem, 1.9vw, 1.4rem); color: var(--muted); line-height: 1.7; }

/* ── GALLERY ── */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; padding: 20px 30px; position: sticky; top: 76px; z-index: 100; background: var(--bg); border-bottom: 1px solid var(--line); }
.filter-btn { background: none; border: 1px solid var(--line); color: var(--muted); font-family: var(--sans); font-size: .58rem; letter-spacing: .24em; text-transform: uppercase; padding: 10px 20px; cursor: pointer; transition: all .25s; }
.filter-btn:hover { color: var(--ink); border-color: var(--accent); }
.filter-btn.active { background: var(--accent); border-color: var(--accent); color: var(--bg); }
.gallery-wrap { max-width: 1500px; margin: 0 auto; padding: 0 24px 120px; }
.masonry { columns: 4 300px; column-gap: 16px; }
.masonry .g-item { break-inside: avoid; margin-bottom: 16px; overflow: hidden; cursor: pointer; position: relative; display: block; width: 100%; background: var(--bg2); }
.masonry .g-item img { width: 100%; height: auto; display: block; transition: transform .9s cubic-bezier(.22,.61,.36,1), filter .45s; }
.masonry .g-item:hover img { transform: scale(1.035); filter: brightness(1.05) contrast(1.03); }
.masonry .g-item::after { content: ''; position: absolute; inset: 0; background: rgba(23,20,18,0); transition: background .35s; }
.masonry .g-item:hover::after { background: rgba(23,20,18,.12); }
.g-item.hide { display: none; }
.gallery-empty { text-align: center; color: var(--muted); font-family: var(--serif); font-style: italic; font-size: 1.3rem; padding: 60px 0; }

/* ── LIGHTBOX ── */
.lightbox { display: none; position: fixed; inset: 0; z-index: 500; background: rgba(11,9,8,.98); align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lb-wrap { position: relative; max-width: 92vw; max-height: 90vh; }
.lb-photo { max-width: 100%; max-height: 90vh; object-fit: contain; display: block; }
.lb-seal { position: absolute; bottom: 14px; right: 14px; height: 48px; width: auto; opacity: .38; filter: brightness(0) invert(1); pointer-events: none; }
.lb-counter { position: absolute; bottom: -34px; left: 50%; transform: translateX(-50%); font-size: .6rem; letter-spacing: .3em; color: var(--faint); }
.lb-close { position: fixed; top: 22px; right: 28px; background: none; border: none; color: rgba(234,228,218,.55); font-size: 2.2rem; cursor: pointer; transition: color .2s; z-index: 2; line-height: 1; }
.lb-close:hover { color: var(--ink); }
.lb-nav { position: fixed; top: 50%; transform: translateY(-50%); background: none; border: none; color: rgba(234,228,218,.45); font-size: 2.6rem; cursor: pointer; padding: 24px; line-height: 1; transition: color .2s; z-index: 2; }
.lb-nav:hover { color: var(--ink); }
.lb-nav.prev { left: 6px; }
.lb-nav.next { right: 6px; }

/* ── ABOUT ── */
.about-inner { max-width: 1080px; margin: 0 auto; padding: 40px 46px 40px; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 74px; align-items: center; }
.about-portrait { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: 55% 30%; border: 1px solid var(--line); }
.about-copy .label { display: block; margin-bottom: 14px; }
.about-copy h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1.1; }
.about-copy .script-sub { font-family: var(--script); font-size: clamp(1.9rem, 3vw, 2.5rem); color: var(--accent); display: block; margin-top: 2px; line-height: 1.4; }
.about-copy p { font-size: .96rem; line-height: 2.1; color: var(--muted); margin-top: 22px; }
.about-copy p strong { color: var(--ink); font-weight: 400; }
.about-copy .btn { margin-top: 38px; }
.about-quote { text-align: center; padding: 40px 30px 20px; }
.about-quote p { font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 2.6vw, 2.1rem); color: var(--ink); max-width: 800px; margin: 0 auto; line-height: 1.55; }

/* ── SESSIONS / RATE GUIDE ── */
.rate-tagline { text-align: center; font-family: var(--serif); font-style: italic; font-size: clamp(1.2rem, 2.2vw, 1.6rem); color: var(--accent); margin-bottom: 10px; }
.style-block { max-width: 860px; margin: 0 auto; padding: 74px 0; border-top: 1px solid var(--line); }
.style-block:first-of-type { border-top: none; }
.style-head { text-align: center; margin-bottom: 50px; }
.style-head .kicker { font-size: .58rem; letter-spacing: .38em; text-transform: uppercase; color: var(--accent); }
.style-head h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-top: 12px; }
.style-head .desc { margin: 16px auto 0; max-width: 540px; font-family: var(--serif); font-style: italic; font-size: 1.08rem; color: var(--muted); line-height: 1.6; }
.tier { display: flex; align-items: baseline; justify-content: space-between; gap: 22px; padding: 26px 4px; border-bottom: 1px solid var(--line); }
.tier:first-of-type { border-top: 1px solid var(--line); }
.tier-left .tier-name { font-family: var(--serif); font-weight: 400; font-size: clamp(1.35rem, 2.4vw, 1.8rem); color: var(--ink); }
.tier-left .tier-meta { margin-top: 6px; font-size: .82rem; color: var(--muted); font-weight: 300; }
.tier-price { font-family: var(--serif); font-size: 1.4rem; color: var(--accent); white-space: nowrap; }
.tier-price small { font-family: var(--sans); font-size: .5rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); display: block; text-align: right; margin-bottom: 2px; }
.style-note { text-align: center; margin-top: 24px; font-size: .84rem; font-style: italic; color: var(--muted); font-family: var(--serif); }
.style-addons { text-align: center; margin-top: 22px; font-size: .82rem; letter-spacing: .04em; color: var(--muted); }
.style-addons b { color: var(--accent); font-weight: 400; }
.style-cta { text-align: center; margin-top: 34px; }
.style-cta a { font-size: .58rem; letter-spacing: .28em; text-transform: uppercase; color: var(--accent); text-decoration: none; border-bottom: 1px solid var(--accent); padding-bottom: 4px; transition: color .2s; }
.style-cta a:hover { color: var(--ink); }

.includes { max-width: 760px; margin: 20px auto 0; padding: 80px 46px; background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.includes .inc-label { font-size: .58rem; letter-spacing: .36em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 36px; }
.inc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px 50px; text-align: left; }
.inc-grid .inc-item b { display: block; font-family: var(--serif); font-size: 1.2rem; font-weight: 500; color: var(--ink); }
.inc-grid .inc-item span { display: block; margin-top: 6px; font-size: .86rem; color: var(--muted); }
.includes .addon-note { margin-top: 36px; font-family: var(--serif); font-style: italic; font-size: 1.02rem; color: var(--accent); }
.booking-terms { max-width: 640px; margin: 70px auto 0; text-align: center; }
.booking-terms .inc-label { font-size: .58rem; letter-spacing: .36em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 20px; }
.booking-terms p { font-size: .9rem; line-height: 1.9; color: var(--muted); }

/* ── PROCESS STEPS ── */
.process { max-width: 1000px; margin: 0 auto; padding: 30px 46px 0; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 20px; }
.step { text-align: center; }
.step .num { font-family: var(--script); font-size: 2.6rem; color: var(--accent); line-height: 1; }
.step h4 { font-family: var(--serif); font-weight: 500; font-size: 1.15rem; margin-top: 12px; color: var(--ink); }
.step p { font-size: .82rem; line-height: 1.8; color: var(--muted); margin-top: 8px; }

/* ── BOOK FORM ── */
.book-inner { max-width: 700px; margin: 0 auto; padding: 20px 46px 40px; }
.book-intro { text-align: center; font-size: .96rem; line-height: 2; color: var(--muted); margin: 0 auto 58px; max-width: 540px; }
.book-intro a { color: var(--accent); text-decoration: none; }
form { text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.form-group { margin-bottom: 30px; }
.form-group label { display: block; font-size: .56rem; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--line); color: var(--ink); font-family: var(--sans); font-size: .95rem; font-weight: 300; padding: 12px 2px; outline: none; transition: border-color .25s; -webkit-appearance: none; border-radius: 0; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(153,144,127,.45); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-bottom-color: var(--accent); }
.form-group select { cursor: pointer; }
.form-group select option { background: #241f1b; color: var(--ink); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-hint { display: inline-block; margin-top: 14px; font-size: .72rem; letter-spacing: .02em; color: var(--muted); text-decoration: none; transition: color .2s; }
.form-hint:hover { color: var(--accent); }
.form-submit { text-align: center; margin-top: 16px; }
.form-success { display: none; text-align: center; font-family: var(--serif); font-style: italic; font-size: 1.6rem; color: var(--accent); padding: 50px 0; line-height: 1.5; }

/* ── FAQ ── */
.faq-inner { max-width: 800px; margin: 0 auto; padding: 20px 46px; }
.faq-group { text-align: center; font-family: var(--serif); font-weight: 400; font-style: italic; font-size: clamp(1.5rem, 2.6vw, 2.1rem); color: var(--accent); margin: 66px auto 22px; }
.faq-group:first-of-type { margin-top: 6px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-of-type { border-top: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: flex-start; justify-content: space-between; gap: 26px; padding: 26px 4px; font-family: var(--serif); font-weight: 400; font-size: clamp(1.2rem, 2.3vw, 1.5rem); line-height: 1.4; color: var(--ink); transition: color .2s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-icon { flex-shrink: 0; font-family: var(--sans); font-weight: 200; font-size: 1.5rem; line-height: 1.25; color: var(--accent); transition: transform .28s ease; }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 4px 30px; max-width: 680px; }
.faq-answer p { font-size: .93rem; line-height: 2.05; color: var(--muted); margin-bottom: 16px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a { color: var(--accent); text-decoration: none; }
.faq-cta { text-align: center; margin-top: 56px; font-family: var(--serif); font-style: italic; font-size: 1.35rem; color: var(--muted); }
.faq-cta a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--accent); padding-bottom: 2px; }

/* ── FOOTER ── */
footer { padding: 100px 46px 56px; border-top: 1px solid var(--line); text-align: center; }
.footer-logo { height: 50px; width: auto; filter: brightness(0) invert(1); opacity: .78; margin: 0 auto 38px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 32px; list-style: none; justify-content: center; margin-bottom: 36px; }
.footer-links a { font-size: .61rem; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--ink); }
.footer-meta { font-size: .62rem; letter-spacing: .2em; color: var(--muted); margin-bottom: 10px; }
.footer-meta a { color: var(--accent); text-decoration: none; }
.footer-copy { font-size: .58rem; color: rgba(234,228,218,.28); letter-spacing: .14em; }

/* ── MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  .hero .slides img { transition: none; }
  * { scroll-behavior: auto; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .featured-grid, .collections-grid { grid-template-columns: repeat(3, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 44px; max-width: 560px; text-align: center; }
  .about-copy .label { margin: 0 auto 14px; }
  .about-portrait { max-width: 380px; margin: 0 auto; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 30px; }
}
@media (max-width: 880px) {
  .wrap { padding: 0 24px; }
  nav { padding: 16px 22px; }
  nav.scrolled { padding: 12px 22px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; inset: 0; background: var(--bg); justify-content: center; align-items: center; gap: 38px; z-index: 250; }
  .nav-links.open a { font-size: 1.05rem; color: var(--ink); }
  .nav-links.open a::after { display: none; }
  .sec-pad { padding: 90px 0; }
  .statement { padding: 100px 24px; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .featured-grid a.tall { grid-row: span 1; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .teaser-grid { grid-template-columns: 1fr; gap: 14px; }
  .masonry { columns: 2 160px; column-gap: 10px; }
  .masonry .g-item { margin-bottom: 10px; }
  .gallery-wrap { padding: 0 16px 80px; }
  .filters { padding: 14px 14px; top: 72px; }
  .inc-grid { grid-template-columns: 1fr; gap: 26px; }
  .process-grid { grid-template-columns: 1fr; gap: 34px; }
  .tier { flex-direction: column; gap: 8px; }
  .tier-price { align-self: flex-start; }
  .tier-price small { text-align: left; }
  .page-head { padding: 150px 24px 30px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .about-quote, .book-inner, .faq-inner, .process, .about-inner { padding-left: 24px; padding-right: 24px; }
  footer { padding: 70px 24px 44px; }
  .lb-nav { font-size: 2rem; padding: 14px; }
  .lb-close { top: 16px; right: 18px; }
}

/* Homepage — Every season (phases) */
.phases-intro { text-align:center; max-width:740px; margin:20px auto 0; font-family:var(--serif); font-style:italic; font-size:1.5rem; color:var(--muted); line-height:1.6; }
.phase-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-top:44px; }
.phase-tile { position:relative; display:block; aspect-ratio:3/4; overflow:hidden; text-decoration:none; }
.phase-tile img { width:100%; height:100%; object-fit:cover; filter:grayscale(1); transition:transform .7s ease, filter .5s ease; }
.phase-tile:hover img { transform:scale(1.05); filter:grayscale(.25); }
.phase-tile .ov { position:absolute; inset:0; display:flex; flex-direction:column; justify-content:flex-end; padding:20px 20px 22px; background:linear-gradient(to top, rgba(15,12,10,.72), rgba(15,12,10,.12) 55%, rgba(15,12,10,0)); }
.phase-tile .ov b { font-family:var(--serif); font-weight:500; font-size:1.5rem; color:#f3eee5; line-height:1.05; }
.phase-tile .ov i { font-family:var(--sans); font-style:normal; font-size:.6rem; letter-spacing:.24em; text-transform:uppercase; color:var(--accent); margin-top:7px; }
@media (max-width:760px){ .phase-grid { grid-template-columns:repeat(2,1fr); gap:10px; } .phase-tile .ov b { font-size:1.25rem; } }
