:root {
    --green: #163d2e;
    --deep-green: #0f2d22;
    --cream: #f6f1e7;
    --ivory: #fcfaf5;
    --gold: #c89442;
    --ink: #202522;
    --muted: #6f766f;
    --line: rgba(32, 37, 34, .16);
    --serif: "Playfair Display", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif;
    --wide: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ivory); color: var(--ink); font-family: var(--sans); line-height: 1.5; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
.skip-link { position: fixed; z-index: 20; top: -100px; left: 1rem; padding: .7rem 1rem; background: var(--green); color: white; }
.skip-link:focus { top: 1rem; }
.site-header { position: sticky; top: 0; z-index: 25; width: 100%; padding: .55rem 0 0; background: rgba(246,241,231,.82); backdrop-filter: blur(8px); }
.site-header-home { position: sticky; top: 0; left: 0; padding-top: 1rem; background: rgba(246,241,231,.82); }
.nav-shell { width: min(92%, 1260px); margin: auto; padding: .45rem .7rem .45rem 1rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; background: rgba(252,250,245,.88); border: 1px solid rgba(22,61,46,.1); border-radius: 999px; box-shadow: 0 12px 35px rgba(15,45,34,.1); }
.wordmark { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wordmark-text { display: grid; justify-items: start; gap: .2rem; }
.site-logo { display: block; width: min(32vw, 360px); height: auto; max-height: 70px; object-fit: contain; filter: drop-shadow(0 2px 0 rgba(22,61,46,.05)); }
.footer-logo-wrap, .admin-logo { display: inline-flex; align-items: center; padding: .4rem .65rem; background: var(--ivory); }
.footer-logo { display: block; width: 210px; height: auto; }
.admin-logo img { display: block; width: 178px; height: auto; max-height: 40px; object-fit: contain; }
.wordmark-main { font: 500 1.18rem/1 var(--wide); letter-spacing: .18em; color: var(--green); }
.wordmark-sub { font: 600 .47rem/1 var(--wide); letter-spacing: .24em; color: var(--muted); }
.wordmark-light .wordmark-main, .wordmark-light .wordmark-sub { color: var(--cream); }
.site-nav { display: flex; align-items: center; gap: 1.7rem; font: 500 .62rem var(--wide); letter-spacing: .08em; text-transform: uppercase; }
.site-nav > a:not(.nav-cta) { position: relative; padding: .85rem 0; color: #4a514d; }
.site-nav > a:not(.nav-cta)::after { position: absolute; bottom: .45rem; left: 0; width: 0; height: 1px; content: ""; background: var(--green); transition: width .25s ease; }
.site-nav > a:not(.nav-cta):hover::after, .site-nav > a.is-active::after { width: 100%; }
.nav-cta, .button { display: inline-flex; align-items: center; justify-content: center; gap: .8rem; border: 1px solid transparent; border-radius: 999px; padding: .95rem 1.35rem; font: 600 .72rem var(--wide); letter-spacing: .08em; text-transform: uppercase; transition: transform .25s ease, background-color .25s ease, color .25s ease; }
.nav-cta { padding: .85rem 1.2rem; background: var(--green); color: var(--cream) !important; }
.nav-cta:hover, .button:hover { transform: translateY(-2px); }
.nav-cta span, .button span { font-size: 1rem; transition: transform .25s; }
.nav-cta:hover span, .button:hover span { transform: translate(2px, -2px); }
.menu-toggle { display: none; border: 0; background: transparent; }
.flash { position: fixed; z-index: 30; top: 6.2rem; left: 50%; transform: translateX(-50%); max-width: min(92%, 520px); padding: .85rem 1.2rem; border-radius: 999px; background: var(--green); color: var(--cream); font-size: .84rem; box-shadow: 0 12px 35px rgba(15,45,34,.22); animation: flash-in .35s ease both; }
.flash-error { background: #8d3d34; }
@keyframes flash-in { from { opacity: 0; transform: translate(-50%, -12px); } to { opacity: 1; transform: translate(-50%, 0); } }
main { overflow: hidden; }
.hero { --hero-x-padding: 7.2vw; --hero-copy-width: min(44%, 560px); position: relative; height: 100svh; min-height: 640px; padding: 6.8rem var(--hero-x-padding) 0; display: flex; align-items: stretch; overflow: hidden; background: var(--cream); }
.hero::before { position: absolute; z-index: 2; inset: 0; content: ""; pointer-events: none; background: linear-gradient(90deg, rgba(246,241,231,.98) 0%, rgba(246,241,231,.95) 28%, rgba(246,241,231,.8) 46%, rgba(246,241,231,.22) 67%, rgba(246,241,231,.02) 100%); }
.hero-art { position: absolute; z-index: 1; inset: 0; overflow: hidden; background: #ddd8cd; filter: saturate(.95) contrast(1.04); }
.hero-art img { width: 100%; height: 100%; object-fit: cover; object-position: 66% center; }
.hero-copy { position: relative; z-index: 5; width: var(--hero-copy-width); padding: 0 0 clamp(4.5rem, 7vh, 7rem); display: flex; flex-direction: column; justify-content: center; }
.eyebrow { margin: 0 0 .9rem; color: var(--gold); font: 600 .58rem var(--wide); letter-spacing: .22em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; }
h1 { max-width: 620px; margin-bottom: 1.05rem; font-size: clamp(3.2rem, 5vw, 5.4rem); line-height: .9; letter-spacing: -.06em; }
h1 em, h2 em { color: var(--green); font-style: italic; }
.hero-copy h1 em { display: inline-block; color: #a66c2f; font-style: italic; font-family: "Playfair Display", Georgia, serif; } 
.hero-description { max-width: 440px; margin-bottom: 1.1rem; color: #58615a; font-size: .78rem; line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; }
.button-dark { background: var(--green); color: var(--cream); }
.button-light { background: var(--cream); color: var(--green); }
.story-button { display: inline-flex; gap: .7rem; align-items: center; padding: .7rem .2rem; border: 0; background: transparent; color: var(--green); font: 600 .73rem var(--wide); letter-spacing: .07em; text-transform: uppercase; }
.play { display: grid; width: 2rem; height: 2rem; place-items: center; border: 1px solid var(--green); border-radius: 50%; font-size: .55rem; }
.stats { position: absolute; z-index: 5; left: var(--hero-x-padding); bottom: 2.45rem; display: flex; gap: 1.15rem; max-width: calc(100% - (var(--hero-x-padding) * 2)); }
.stat { display: grid; grid-template-columns: 1.4rem auto; gap: .05rem .35rem; min-width: 0; padding-right: 1.1rem; border-right: 1px solid rgba(32,37,34,.24); }
.stat:last-child { border: 0; }
.stat-icon { grid-row: 1 / 3; display: grid; align-self: center; color: var(--green); }
.stat-icon svg { width: 1rem; height: 1rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.35; }
.stat strong { font: 400 1.05rem/1 var(--serif); color: var(--green); }
.stat span:not(.stat-icon) { color: var(--muted); font: 600 .43rem/1.2 var(--wide); letter-spacing: .08em; text-transform: uppercase; }
.hero-side-note { position: absolute; z-index: 4; top: 23%; right: 4.1vw; display: grid; gap: 1.6rem; justify-items: end; color: var(--green); text-align: right; }
.hero-handwritten { font: italic clamp(1.05rem, 1.5vw, 1.55rem)/.9 var(--serif); }
.hero-side-rule { color: rgba(22,61,46,.72); font: 600 .48rem/1.6 var(--wide); letter-spacing: .2em; }
.hero-bottom-note { position: absolute; left: calc(var(--hero-x-padding) + var(--hero-copy-width) + 1rem); bottom: 1.1rem; z-index: 4; display: flex; flex-direction: column; gap: .1rem; color: rgba(22,61,46,.82); font: italic .9rem/1 var(--serif); }
.hero-bottom-note span:first-child { font-size: 1.15rem; }
.hero-bottom-note span:last-child { font-size: .92rem; }
.memory-stack { position: absolute; z-index: 4; left: calc(var(--hero-x-padding) + var(--hero-copy-width) + 14rem); bottom: clamp(2.8rem, 6vh, 7rem); width: 148px; height: 380px; }
.memory { position: absolute; width: 138px; padding: .42rem .42rem .65rem; margin: 0; background: #fffdf8; box-shadow: 0 16px 30px rgba(15,45,34,.22); transform: rotate(var(--rotation)); animation: float 6s ease-in-out infinite; }
.memory img { width: 100%; height: 116px; object-fit: cover; }
.memory figcaption { padding-top: .42rem; color: var(--green); font: 400 .78rem var(--serif); text-align: center; }
.memory-1 { top: 0; left: 0; z-index: 2; animation-delay: -.7s; }
.memory-2 { top: 122px; right: -4px; z-index: 1; animation-delay: -2.5s; }
.memory-3 { bottom: 0; left: 4px; z-index: 3; animation-delay: -4s; }
@keyframes float { 50% { margin-top: -8px; } }
.hero-quote { position: absolute; z-index: 5; right: -1.5rem; bottom: -2.4rem; width: clamp(170px, 15vw, 220px); aspect-ratio: 1; padding: 2rem 1.7rem 2.2rem 1.9rem; display: flex; flex-direction: column; justify-content: space-between; border-radius: 50%; background: #18382d; color: var(--cream); transform: rotate(-9deg); box-shadow: 0 18px 32px rgba(15,45,34,.22); }
.hero-quote span { color: var(--gold); font: 1.8rem/0.4 var(--serif); }
.hero-quote p { margin: 0; font: italic .7rem/1.2 var(--serif); }
.hero-quote small { font: 600 .34rem var(--wide); letter-spacing: .16em; }
.section { padding: 8rem 7vw; }
.section-cream { background: var(--cream); }
.intro { display: grid; grid-template-columns: 1fr 2.1fr 1fr; gap: 3rem; align-items: start; }
.intro-aside { display: flex; gap: 1rem; align-items: center; color: var(--muted); font: 600 .6rem var(--wide); letter-spacing: .15em; text-transform: uppercase; }
.intro-aside span:first-child { color: var(--gold); font-size: .8rem; }
.intro-copy { max-width: 650px; }
.intro-copy h2, .section-heading h2 { margin-bottom: 1.2rem; font-size: clamp(2.3rem, 4vw, 4.5rem); line-height: .98; letter-spacing: -.045em; }
.intro-copy > p:not(.eyebrow) { max-width: 520px; color: var(--muted); line-height: 1.75; }
.intro-note { align-self: end; padding-bottom: 1.3rem; color: var(--muted); }
.script { color: var(--gold); font: italic 1.7rem var(--serif); }
.intro-note p { max-width: 190px; margin: .6rem 0 0; font-size: .84rem; }
.text-link { display: inline-flex; gap: .65rem; align-items: center; margin-top: 1.5rem; padding-bottom: .35rem; border-bottom: 1px solid var(--gold); color: var(--green); font: 600 .7rem var(--wide); letter-spacing: .08em; text-transform: uppercase; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translate(3px, -3px); }
.section-top { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 3.5rem; }
.section-heading { max-width: 720px; }
.section-heading h2 { margin-bottom: .2rem; }
.section-description { max-width: 480px; margin-top: 1rem; color: var(--muted); }
.story-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 1.6rem; align-items: end; }
.story-card:nth-child(2) { margin-top: 5rem; }
.image-frame { position: relative; overflow: hidden; background: #ddd8cd; }
.image-frame img { width: 100%; height: 450px; object-fit: cover; transition: transform .7s ease; }
.story-card:first-child .image-frame img { height: 570px; }
.story-card:hover .image-frame img, .portfolio-tile:hover img { transform: scale(1.04); }
.image-arrow { position: absolute; right: 1.2rem; bottom: 1.2rem; display: grid; width: 2.4rem; height: 2.4rem; place-items: center; border-radius: 50%; background: var(--cream); color: var(--green); }
.story-meta { display: grid; grid-template-columns: 1fr auto; gap: .25rem 1rem; padding-top: 1rem; }
.story-meta span, .story-meta small { color: var(--gold); font: 600 .58rem var(--wide); letter-spacing: .14em; text-transform: uppercase; }
.story-meta strong { grid-column: 1 / 2; font: 1.6rem var(--serif); }
.story-meta small { grid-column: 2 / 3; grid-row: 2; align-self: end; color: var(--muted); font-size: .52rem; }
.services-preview { background: var(--ivory); }
.services-preview > .section-heading { max-width: 670px; margin-bottom: 4rem; }
.service-list { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 8% 28% 1fr 2rem; gap: 1rem; align-items: center; padding: 1.5rem 0; border-bottom: 1px solid var(--line); transition: padding .25s, color .25s; }
.service-row:hover { padding-left: 1rem; padding-right: 1rem; color: var(--green); }
.service-number { color: var(--gold); font: 600 .7rem var(--wide); letter-spacing: .1em; }
.service-row h3 { margin: 0; font: 1.8rem var(--serif); }
.service-row p { max-width: 380px; margin: 0; color: var(--muted); font-size: .86rem; }
.service-arrow { justify-self: end; color: var(--gold); font-size: 1.2rem; }
.quote-band { position: relative; padding: 8rem 7vw; background: var(--green); color: var(--cream); overflow: hidden; }
.quote-band::before { position: absolute; top: -120px; right: 8%; width: 340px; height: 340px; content: ""; border: 1px solid rgba(246,241,231,.2); border-radius: 50%; }
.quote-band::after { position: absolute; right: 17%; bottom: -180px; width: 400px; height: 400px; content: ""; border: 1px solid rgba(200,148,66,.4); border-radius: 50%; }
.quote-band-inner { position: relative; z-index: 1; max-width: 660px; }
.quote-band .eyebrow { color: var(--gold); }
.quote-band h2 { margin-bottom: 2.3rem; font-size: clamp(3rem, 6vw, 6rem); line-height: .95; }
.quote-band h2 em { color: var(--cream); }
.quote-band-small { padding-top: 6rem; padding-bottom: 6rem; }
.recognition { background: var(--ivory); }
.recognition-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.4rem; margin-top: 3rem; }
.recognition-card { display: grid; justify-items: center; align-content: center; gap: .7rem; min-height: 240px; padding: 1.4rem 1rem; border: 1px solid rgba(22,61,46,.08); border-radius: 2rem; background: rgba(255,255,255,.36); box-shadow: 0 14px 30px rgba(15,45,34,.04); text-align: center; }
.recognition-icon { display: grid; place-items: center; width: 3.2rem; height: 3.2rem; margin-bottom: .1rem; border-radius: 50%; background: rgba(200,148,66,.12); color: var(--green); }
.recognition-icon svg { display: block; width: 1.55rem; height: 1.55rem; }
.recognition-card h3 { max-width: 190px; margin: 0; font: 400 1.35rem/1.2 var(--serif); color: var(--green); }
.recognition-card small { margin-top: .2rem; color: var(--muted); font: 600 .63rem var(--wide); letter-spacing: .14em; text-transform: uppercase; }
.stats-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.4rem; margin-top: 4rem; padding-top: 2.5rem; border-top: 1px solid rgba(22,61,46,.12); }
.stat-pill { display: grid; justify-items: center; gap: .55rem; text-align: center; }
.stat-pill strong { font: 400 clamp(2.7rem, 5vw, 4rem)/1 var(--serif); letter-spacing: -.06em; color: var(--green); }
.stat-pill span { color: var(--muted); font: 600 .58rem var(--wide); letter-spacing: .12em; text-transform: uppercase; }

.testimonials { overflow: hidden; }
.testimonial-marquee { position: relative; overflow: hidden; margin-top: 2.5rem; }
.testimonial-marquee::before, .testimonial-marquee::after { position: absolute; inset: 0 auto 0 0; width: 100px; content: ""; pointer-events: none; }
.testimonial-marquee::before { background: linear-gradient(90deg, var(--cream), transparent); }
.testimonial-marquee::after { left: auto; right: 0; background: linear-gradient(270deg, var(--cream), transparent); }
.testimonial-track { --testimonial-gap: 1.5rem; display: flex; width: max-content; gap: var(--testimonial-gap); animation: testimonial-marquee 28s linear infinite; will-change: transform; }
.testimonial-marquee:hover .testimonial-track { animation-play-state: paused; }
.testimonial-card { flex: 0 0 360px; display: grid; gap: 1.25rem; min-height: 300px; padding: 1.5rem; border: 1px solid rgba(22,61,46,.08); border-radius: 2rem; background: rgba(255,255,255,.58); box-shadow: 0 14px 30px rgba(15,45,34,.05); }
.testimonial-head { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar { width: 3.2rem; height: 3.2rem; overflow: hidden; border-radius: 50%; border: 2px solid rgba(22,61,46,.08); background: #ddd8cd; flex-shrink: 0; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author { display: grid; gap: .2rem; }
.testimonial-author strong { display: inline-flex; align-items: center; gap: .4rem; font: 600 1rem var(--wide); color: var(--green); }
.testimonial-author span { color: var(--muted); font-size: .69rem; letter-spacing: .08em; text-transform: uppercase; }
.verified-badge { display: inline-grid; place-items: center; width: 1.2rem; height: 1.2rem; border-radius: 50%; background: #3897f0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.22); color: #ffffff !important; flex-shrink: 0; font: 700 .68rem/1 sans-serif; }
.testimonial-card p { margin: 0; color: var(--ink); font: italic 500 1.15rem/1.6 "Poppins", "DM Sans", Arial, sans-serif; }
.testimonial-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.testimonial-stars { color: #f2b736; letter-spacing: .15em; font-size: .82rem; }
.testimonial-type { color: var(--muted); font: 600 .58rem var(--wide); letter-spacing: .13em; text-transform: uppercase; }

@keyframes testimonial-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - (var(--testimonial-gap) / 2))); }
}
@keyframes story-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - .75rem)); }
}
.footer-cta { position: relative; margin: 0 7vw 2.5rem; border-radius: 2rem; overflow: hidden; background: linear-gradient(rgba(22,61,46,.72), rgba(22,61,46,.72)), url('/images/couple-lawn.jpeg') center/cover no-repeat; box-shadow: 0 28px 45px rgba(15,45,34,.14); }
.footer-cta-inner { position: relative; z-index: 1; padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 3vw, 3rem); text-align: center; }
.footer-cta-eyebrow { margin-bottom: 1.2rem; color: rgba(246,241,231,.9); font-size: .62rem; letter-spacing: .24em; }
.footer-cta h2 { max-width: 780px; margin: 0 auto 1.15rem; color: var(--cream); font-size: clamp(2.1rem, 4vw, 4rem); line-height: .96; letter-spacing: -.05em; }
.footer-cta p { max-width: 700px; margin: 0 auto 2rem; color: rgba(246,241,231,.78); font-size: 1rem; line-height: 1.7; }
.footer-cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }
.button-cta-outline { border: 1px solid rgba(246,241,231,.75); background: transparent; color: var(--cream); }
.button-cta-outline:hover { background: rgba(246,241,231,.08); }
.site-footer { padding: 5rem 7vw 1.5rem; background: var(--deep-green); color: var(--cream); }
.footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; padding-bottom: 4rem; }
.footer-intro { max-width: 270px; margin-top: 1.8rem; color: rgba(246,241,231,.63); font-size: .88rem; line-height: 1.7; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.footer-links > div { display: grid; align-content: start; gap: .6rem; }
.footer-links a, .footer-links span { color: rgba(246,241,231,.72); font-size: .78rem; }
.footer-links a:hover { color: var(--cream); }
.footer-label { margin: 0 0 .5rem; color: var(--gold); font: 600 .62rem var(--wide); letter-spacing: .16em; text-transform: uppercase; }
.social-row { display: flex; gap: .5rem; margin-top: .8rem; }
.social-row a { display: grid; width: 2rem; height: 2rem; place-items: center; border: 1px solid rgba(246,241,231,.25); border-radius: 50%; color: rgba(246,241,231,.8); transition: border-color .2s ease, color .2s ease, transform .2s ease; }
.social-row a:hover { border-color: rgba(246,241,231,.5); color: var(--cream); transform: translateY(-1px); }
.social-row a svg { display: block; width: .95rem; height: .95rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; padding-top: 1.3rem; border-top: 1px solid rgba(246,241,231,.15); color: rgba(246,241,231,.48); font-size: .68rem; }
.footer-bottom div { display: flex; gap: 1.2rem; }
.whatsapp { position: fixed; z-index: 12; right: 1.4rem; bottom: 1.4rem; display: flex; align-items: center; gap: .55rem; padding: .6rem .9rem .6rem .6rem; border-radius: 999px; background: #1e9d61; color: white; box-shadow: 0 8px 22px rgba(15,45,34,.22); font: 600 .65rem var(--wide); letter-spacing: .04em; }
.whatsapp-icon { display: grid; width: 1.65rem; height: 1.65rem; place-items: center; border-radius: 50%; background: rgba(255,255,255,.2); }
.whatsapp-icon svg { display: block; width: 1rem; height: 1rem; }
.page-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 75vh; padding: 11rem 7vw 5rem; gap: 7vw; align-items: end; }
.page-hero-copy { padding-bottom: 2rem; }
.page-hero-copy h1 { font-size: clamp(3.5rem, 6vw, 6.8rem); }
.page-hero-copy > p:last-child { max-width: 440px; color: var(--muted); line-height: 1.7; }
.page-hero-image { overflow: hidden; height: 55vh; max-height: 640px; }
.page-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-green { background: var(--green); color: var(--cream); }
.page-hero-green .page-hero-copy h1 em { color: var(--cream); }
.page-hero-green .page-hero-copy > p:last-child { color: rgba(246,241,231,.65); }
.filter-bar { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; padding-bottom: 1.2rem; border-bottom: 1px solid var(--line); color: var(--muted); font: 600 .64rem var(--wide); letter-spacing: .1em; text-transform: uppercase; }
.filter { padding: 0; border: 0; background: none; color: var(--muted); font: inherit; text-transform: uppercase; }
.filter.is-active, .filter:hover { color: var(--green); }
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem; }
.portfolio-tile { position: relative; min-height: 460px; padding: 0; border: 0; overflow: hidden; background: #ddd8cd; text-align: left; }
.portfolio-tile:nth-child(3n) { min-height: 600px; }
.portfolio-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.tile-overlay { position: absolute; inset: auto 0 0; display: grid; gap: .35rem; padding: 5rem 1.5rem 1.5rem; background: linear-gradient(transparent, rgba(15,45,34,.85)); color: var(--cream); }
.tile-overlay small { color: var(--gold); font: 600 .58rem var(--wide); letter-spacing: .14em; text-transform: uppercase; }
.tile-overlay strong { font: 1.8rem var(--serif); }
.tile-overlay i { font: normal 600 .62rem var(--wide); letter-spacing: .08em; text-transform: uppercase; }
.builder-page .site-header { display: none; }
.builder-custom-header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: min(92%, 1260px); margin: 2rem auto 0; padding: 0 1rem; }
.builder-home-link { display: inline-flex; align-items: center; justify-content: center; min-width: 140px; padding: .8rem 1.15rem; border: 1px solid rgba(22,61,46,.5); border-radius: 999px; background: rgba(255,255,255,.15); color: var(--green); font: 600 .65rem var(--wide); letter-spacing: .14em; text-transform: uppercase; }
.builder-wordmark { display: grid; justify-items: center; gap: .15rem; text-align: center; }
.builder-wordmark-main { font: 600 1.15rem/1 var(--wide); letter-spacing: .14em; color: var(--green); text-transform: uppercase; }
.builder-wordmark-sub { font: 600 .48rem/1 var(--wide); letter-spacing: .24em; color: var(--muted); text-transform: uppercase; }
.builder-shell { padding: 2.5rem 7vw 0; }
.builder-stepper { position: relative; display: flex; align-items: center; justify-content: center; gap: 1rem; width: min(100%, 1160px); margin: 0 auto 2.5rem; padding: 1.2rem 1.2rem .5rem; }
.builder-stepper::before { position: absolute; left: 2.5%; right: 2.5%; top: 1.9rem; height: 1px; content: ""; background: rgba(22,61,46,.2); }
.stepper-step { position: relative; z-index: 1; display: grid; place-items: center; width: 2.2rem; height: 2.2rem; border: 1px solid rgba(22,61,46,.45); border-radius: 50%; background: rgba(252,250,245,.75); color: var(--green); font: 600 .58rem var(--wide); }
.stepper-step.is-current { background: var(--green); border-color: var(--green); color: var(--cream); box-shadow: 0 0 0 4px rgba(22,61,46,.08); }
.stepper-step.is-done { background: rgba(22,61,46,.1); border-color: rgba(22,61,46,.35); }
.builder-page-intro { max-width: 900px; margin: 0 auto; text-align: center; }
.builder-page-intro h1 { max-width: 980px; margin: 0 auto 1.1rem; font-size: clamp(3rem, 5vw, 5.5rem); line-height: .86; letter-spacing: -.06em; }
.builder-page-intro h1 em { display: block; margin-top: .1em; }
.builder-page-intro > p:last-child { max-width: 780px; margin: 0 auto; color: var(--muted); line-height: 1.7; }
.builder-layout { display: grid; grid-template-columns: 1fr 330px; gap: 5rem; align-items: start; }
.builder-steps { display: grid; gap: 5rem; }
.builder-step { padding-top: 2rem; border-top: 1px solid var(--line); }
.builder-step:not(.is-active) { display: none; }
.builder-actions { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; margin-top: 2rem; }
.builder-actions .button { cursor: pointer; }
.step-heading { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; margin-bottom: 2rem; }
.step-heading > span { color: var(--gold); font: 600 .8rem var(--wide); }
.step-heading h2 { max-width: 550px; margin: 0; font-size: clamp(2rem, 3vw, 3.1rem); line-height: 1; }
.option-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.option-grid-addons { grid-template-columns: repeat(2, 1fr); }
.choice input { position: absolute; opacity: 0; }
.choice span { position: relative; display: grid; min-height: 150px; align-content: space-between; padding: 1.25rem; border: 1px solid var(--line); background: var(--ivory); transition: border-color .25s, background-color .25s, transform .25s; }
.choice span::after { position: absolute; top: 1rem; right: 1rem; width: .8rem; height: .8rem; content: ""; border: 1px solid var(--line); border-radius: 50%; }
.choice input:checked + span { border-color: var(--green); background: var(--green); color: var(--cream); transform: translateY(-3px); }
.choice input:checked + span::after { border-color: var(--gold); background: var(--gold); box-shadow: inset 0 0 0 3px var(--green); }
.choice strong { max-width: 155px; font: 1.25rem var(--serif); }
.choice small { color: var(--muted); font-size: .75rem; }
.choice input:checked + span small { color: rgba(246,241,231,.65); }
.choice b { font: 600 .7rem var(--wide); letter-spacing: .04em; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-grid label { display: grid; gap: .45rem; }
.form-grid label > span { color: var(--muted); font: 600 .63rem var(--wide); letter-spacing: .1em; text-transform: uppercase; }
.form-grid input, .form-grid textarea { width: 100%; padding: .85rem 0; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; outline: 0; background: transparent; color: var(--ink); }
.form-grid textarea { resize: vertical; }
.form-grid input:focus, .form-grid textarea:focus { border-color: var(--green); }
.full { grid-column: 1 / -1; }
.builder-note { max-width: 560px; margin-bottom: 1.5rem; color: var(--muted); font-size: .9rem; }
.quote-summary { position: sticky; top: 8rem; padding: 2rem; background: var(--green); color: var(--cream); }
.quote-summary h3 { margin: 0 0 2rem; font: 2.2rem var(--serif); }
.summary-items { display: grid; gap: .8rem; min-height: 8rem; padding: 1rem 0; border-top: 1px solid rgba(246,241,231,.22); border-bottom: 1px solid rgba(246,241,231,.22); }
.summary-item { display: flex; justify-content: space-between; gap: 1rem; font-size: .78rem; }
.summary-item span:last-child { color: var(--gold); }
.summary-total { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1.4rem; }
.summary-total span { color: rgba(246,241,231,.6); font-size: .72rem; }
.summary-total strong { font: 1.4rem var(--serif); }
.summary-small { margin: 2rem 0 0; color: rgba(246,241,231,.55); font-size: .7rem; line-height: 1.6; }
.contact-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: end; padding: 11rem 7vw 5rem; }
.contact-copy h1 { font-size: clamp(3.5rem, 6vw, 6.8rem); }
.contact-copy > p:not(.eyebrow) { max-width: 420px; color: var(--muted); line-height: 1.7; }
.contact-details { display: grid; gap: .35rem; margin-top: 3rem; color: var(--green); font-size: .86rem; }
.contact-image { height: 570px; overflow: hidden; }
.contact-image img { width: 100%; height: 100%; object-fit: cover; }
.contact-section { display: grid; grid-template-columns: 1.4fr .6fr; gap: 8vw; }
.contact-form-wrap h2 { margin-bottom: 3rem; font-size: clamp(2.5rem, 4vw, 4rem); }
.contact-note { padding-top: 4rem; }
.contact-note p { max-width: 250px; color: var(--muted); }
.about-statement { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; }
.statement-copy { max-width: 760px; }
.statement-copy h2 { margin: 1rem 0; font-size: clamp(3rem, 5vw, 5.5rem); line-height: .96; }
.statement-copy > p:last-child { max-width: 580px; color: var(--muted); font-size: 1.1rem; line-height: 1.75; }
.values { display: grid; grid-template-columns: .85fr 1.15fr; gap: 6vw; }
.values .section-heading h2 { font-size: clamp(2.5rem, 4vw, 4.3rem); }
.values-list { border-top: 1px solid var(--line); }
.value { display: grid; grid-template-columns: 3rem 1fr; gap: .8rem 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.value strong { color: var(--gold); font: .7rem var(--wide); }
.value h3 { margin: 0; font: 1.7rem var(--serif); }
.value p { grid-column: 2; margin: 0; color: var(--muted); font-size: .86rem; }
.legal-page, .empty-page { min-height: 75vh; padding: 12rem 7vw 8rem; }
.legal-copy { max-width: 720px; }
.legal-copy h1, .empty-page h1 { font-size: clamp(4rem, 8vw, 8rem); }
.legal-copy h2 { margin-top: 3rem; font-size: 2.2rem; }
.legal-copy p, .empty-page p { max-width: 540px; color: var(--muted); font-size: 1rem; line-height: 1.8; }
.empty-page { text-align: center; }
.empty-page > * { margin-left: auto; margin-right: auto; }
.empty-page h1 { color: var(--green); }
.reveal { animation: reveal .75s ease both; }
@keyframes reveal { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.lightbox, .video-modal { position: fixed; z-index: 40; inset: 0; display: none; place-items: center; padding: 2rem; background: rgba(15,45,34,.92); }
.lightbox.is-open, .video-modal.is-open { display: grid; }
.lightbox img { max-width: min(92vw, 1100px); max-height: 82vh; object-fit: contain; }
.lightbox-caption { margin-top: 1rem; color: var(--cream); text-align: center; }
.modal-close { position: absolute; top: 1.5rem; right: 1.5rem; border: 0; background: transparent; color: var(--cream); font-size: 2rem; }
.video-modal iframe { width: min(90vw, 900px); aspect-ratio: 16 / 9; border: 0; }

@media (max-width: 1050px) {
    .site-nav { gap: 1rem; }
    .hero { --hero-x-padding: 5vw; min-height: 590px; }
    .hero-art { left: 35%; right: 4vw; }
    .hero-copy { width: min(42%, 520px); }
    .memory-stack { left: calc(var(--hero-x-padding) + var(--hero-copy-width) + 11rem); transform: scale(.88); transform-origin: bottom left; }
    .hero-quote { right: 2.5rem; transform: scale(.86) rotate(7deg); transform-origin: bottom right; }
    .stats { left: var(--hero-x-padding); }
    .hero-bottom-note { left: calc(var(--hero-x-padding) + var(--hero-copy-width) + .5rem); }
    .builder-layout { gap: 2.5rem; }
}
@media (max-width: 780px) {
    .site-header { top: .8rem; }
    .nav-shell { border-radius: 1rem; padding: .9rem 1rem; }
    .menu-toggle { display: grid; gap: 5px; padding: .4rem 0 .4rem .8rem; }
    .menu-toggle span { display: block; width: 25px; height: 1px; background: var(--green); transition: transform .25s; }
    .site-nav { position: fixed; inset: 4.6rem 1rem auto; display: grid; gap: 0; padding: 1rem; opacity: 0; pointer-events: none; transform: translateY(-10px); border-radius: 1rem; background: var(--ivory); box-shadow: 0 18px 35px rgba(15,45,34,.15); transition: opacity .25s, transform .25s; }
    .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
    .site-nav > a:not(.nav-cta) { padding: 1rem .5rem; border-bottom: 1px solid var(--line); }
    .site-nav > a:not(.nav-cta)::after { display: none; }
    .nav-cta { margin-top: .7rem; text-align: center; }
    .hero { height: auto; min-height: 0; padding: 2rem 7vw 4rem; display: flex; flex-direction: column; }
    .hero-art { position: relative; z-index: 1; inset: auto; order: 2; width: calc(100% + 14vw); height: clamp(360px, 88vw, 470px); margin: 1.6rem -7vw 0; border-radius: 1rem 1rem 1rem 4.5rem; }
    .hero-art img { object-position: 50% center; }
    .hero-copy { order: 1; width: auto; padding: 1.6rem 0 0; }
    .hero-copy h1 { font-size: clamp(2.6rem, 12vw, 4.5rem); line-height: .92; }
    .hero-description { max-width: 500px; font-size: .96rem; }
    .stats { position: static; order: 4; justify-content: space-between; width: 100%; margin-top: 1.5rem; gap: .5rem; }
    .stat { min-width: 0; padding-right: .7rem; }
    .stat strong { font-size: 1.3rem; }
    .memory-stack { position: relative; z-index: 4; order: 3; right: auto; bottom: auto; width: min(100%, 300px); height: 210px; margin: 1.3rem auto 0; transform: none; }
    .memory { width: 128px; }
    .memory img { height: 148px; }
    .memory-1 { left: 0; }
    .memory-2 { top: 32px; right: 8px; }
    .memory-3 { left: 58px; }
    .hero-side-note { display: none; }
    .hero-quote { position: relative; right: auto; bottom: auto; order: 5; width: 148px; margin: 1.5rem auto 0; transform: rotate(7deg); }
    .hero-bottom-note { position: static; order: 6; margin-top: 1.3rem; }
    .section { padding: 5rem 7vw; }
    .intro, .values, .about-statement, .contact-section { grid-template-columns: 1fr; gap: 2.5rem; }
    .intro-note { justify-self: end; }
    .story-grid, .testimonial-grid, .footer-top { grid-template-columns: 1fr; }
    .story-card:nth-child(2) { margin-top: 0; }
    .story-card:first-child .image-frame img, .image-frame img { height: 380px; }
    .section-top { display: block; }
    .section-top > .text-link { margin-top: 1rem; }
    .service-row { grid-template-columns: 2.5rem 1fr 1.5rem; }
    .service-row p { grid-column: 2 / -1; }
    .service-row h3 { font-size: 1.5rem; }
    .page-hero, .contact-hero, .builder-hero { grid-template-columns: 1fr; min-height: auto; padding: 9rem 7vw 4rem; gap: 2.5rem; }
    .page-hero-image, .contact-image { height: 55vh; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .portfolio-tile, .portfolio-tile:nth-child(3n) { min-height: 460px; }
    .builder-index { order: -1; }
    .builder-layout { grid-template-columns: 1fr; }
    .quote-summary { position: relative; top: auto; order: -1; }
    .option-grid, .option-grid-addons { grid-template-columns: 1fr; }
    .choice span { min-height: 110px; }
    .contact-note { padding-top: 0; }
    .footer-links { gap: 1.5rem; }
    .footer-bottom { display: grid; }
}
@media (max-width: 460px) {
    .site-logo { width: min(54vw, 220px); max-height: 42px; }
    .footer-logo { width: 190px; }
    .admin-logo img { width: 145px; max-height: 32px; }
    .wordmark-main { font-size: .95rem; }
    .wordmark-sub { font-size: .4rem; }
    h1 { font-size: 3.5rem; }
    .hero-copy h1 { font-size: clamp(2.45rem, 14vw, 4rem); }
    .hero-actions { align-items: stretch; }
    .hero-actions .button, .hero-actions .story-button { width: 100%; justify-content: center; }
    .stats { gap: .8rem; }
    .stat { min-width: 0; padding-right: .7rem; }
    .stat strong { font-size: 1.2rem; }
    .stat span { font-size: .48rem; }
    .memory-stack { width: min(100%, 260px); height: 180px; }
    .memory { width: 112px; }
    .memory img { height: 128px; }
    .form-grid { grid-template-columns: 1fr; }
    .full { grid-column: auto; }
    .footer-top, .footer-links { gap: 2.5rem; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ==========================================
   HOMEPAGE EDITORIAL SECTIONS
========================================== */
.experience-gate { position: fixed; z-index: 100; inset: 0; display: grid; grid-template-rows: auto 1fr auto; padding: 3rem 6vw; background: var(--green); color: var(--cream); opacity: 1; visibility: visible; transition: opacity .7s ease, visibility .7s ease; }
.experience-gate.is-dismissed { opacity: 0; visibility: hidden; pointer-events: none; }
.experience-gate-mark { display: flex; align-items: center; gap: .8rem; color: var(--cream); }
.experience-gate-mark span { display: grid; width: 2.6rem; height: 2.6rem; place-items: center; border: 1px solid rgba(246,238,228,.6); border-radius: 50%; background: rgba(255,255,255,.08); font: italic 1.7rem var(--serif); }
.experience-gate-mark small, .experience-gate-note { font: 600 .6rem/1.45 var(--wide); letter-spacing: .16em; }
.experience-gate-copy { align-self: center; max-width: 620px; margin: 0 auto; text-align: center; }
.experience-gate-copy .eyebrow { color: rgba(246,241,231,.8); }
.experience-gate-copy h2 { margin: 1.5rem 0 1.2rem; font: 400 clamp(4rem, 9vw, 8.8rem)/.85 var(--serif); letter-spacing: -.06em; }
.experience-gate-copy h2 em { color: var(--gold); }
.experience-gate-copy > p:not(.eyebrow) { color: rgba(246,238,228,.8); font: italic 1.1rem var(--serif); }
.gate-enter { display: inline-flex; align-items: center; gap: .8rem; margin-top: 2rem; padding: .95rem 1.35rem; border: 1px solid rgba(246,238,228,.55); border-radius: 999px; background: transparent; color: var(--cream); cursor: pointer; font: 600 .68rem var(--wide); letter-spacing: .1em; text-transform: uppercase; transition: background .25s ease, color .25s ease, transform .25s ease; }
.gate-enter:hover { background: var(--cream); color: var(--green); transform: translateY(-2px); }
.gate-enter span { font-size: 1rem; }
.hero-botanical { position: absolute; z-index: 1; width: 180px; height: 260px; opacity: .45; pointer-events: none; }
.hero-botanical::before, .hero-botanical::after { position: absolute; content: ""; display: block; border: 1px solid rgba(22,61,46,.35); border-radius: 100% 0 100% 0; transform: rotate(28deg); }
.hero-botanical::before { width: 92px; height: 150px; }
.hero-botanical::after { width: 72px; height: 118px; }
.hero-botanical-left { top: 8%; left: -40px; transform: rotate(-25deg); }
.hero-botanical-left::before { left: 0; top: 35px; }
.hero-botanical-left::after { left: 72px; top: 0; transform: rotate(62deg); }
.hero-botanical-right { right: -35px; bottom: 3%; transform: rotate(160deg); }
.hero-botanical-right::before { right: 0; bottom: 20px; }
.hero-botanical-right::after { right: 76px; bottom: 0; transform: rotate(62deg); }
.centered { max-width: 700px; margin-left: auto; margin-right: auto; text-align: center; }
.centered .section-description { margin-left: auto; margin-right: auto; }
.center-cta { display: flex; justify-content: center; margin-top: 2rem; }
.story-editorial { background: var(--cream); }
.story-editorial-stage { position: relative; width: min(1180px, 100%); min-height: clamp(560px, 43vw, 680px); margin: 0 auto; }
.story-art { position: absolute; overflow: hidden; margin: 0; background: #ddd8cd; box-shadow: 0 22px 42px rgba(15,45,34,.13); }
.story-art img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.story-art:hover img { transform: scale(1.04); }
.story-art figcaption { position: absolute; right: 1.2rem; bottom: 1.1rem; left: 1.2rem; color: var(--cream); font: italic .9rem var(--serif); text-shadow: 0 1px 8px rgba(15,45,34,.45); }
.story-art-primary { top: 2%; left: 2%; width: 25%; height: 570px; border-radius: 999px; }
.story-art-primary img { object-position: 52% center; }
.story-art-left { top: 0; left: 23%; width: 14%; height: 305px; border-radius: 999px; }
.story-art-left img { object-position: 58% center; }
.story-art-right { top: 3%; right: 9%; width: 16%; height: 350px; border-radius: 999px; }
.story-art-right img { object-position: 47% center; }
.story-art-detail { right: 0; bottom: 3%; width: 19%; height: 275px; border-radius: 1.2rem 1.2rem 5rem 1.2rem; }
.story-art-detail img { object-position: 44% center; }
.story-editorial-copy { position: absolute; z-index: 2; top: 25%; left: 34%; width: 37%; text-align: center; }
.story-editorial-copy .eyebrow { margin-bottom: 1.1rem; }
.story-editorial-copy h2 { margin: 0 0 1.4rem; color: var(--green); font-size: clamp(2.7rem, 4.35vw, 4.8rem); line-height: .93; letter-spacing: -.055em; }
.story-editorial-copy > p:not(.eyebrow) { max-width: 360px; margin: 0 auto; color: var(--muted); font-size: .92rem; line-height: 1.7; }
.story-editorial-copy .text-link { margin-top: 1.7rem; }
.story-editorial-note { position: absolute; right: 23%; bottom: 4%; color: rgba(22,61,46,.65); font: 600 .5rem/1.6 var(--wide); letter-spacing: .2em; text-align: right; }
.story-editorial .reveal { opacity: 0; transform: translateY(22px); animation: none; transition: opacity .8s ease, transform .8s ease; }
.story-editorial .reveal.is-visible { opacity: 1; transform: translateY(0); }
.story-art-left.is-visible { transition-delay: .12s; }
.story-art-right.is-visible { transition-delay: .2s; }
.story-art-detail.is-visible { transition-delay: .28s; }
.visual-reel { overflow: hidden; }
.visual-reel.section { padding-top: 5rem; padding-bottom: 4rem; }
.visual-reel .section-top { margin-bottom: 2rem; }
.visual-reel-grid { display: grid; grid-template-columns: 1.08fr .76fr .88fr .78fr; grid-template-rows: 190px 130px; gap: .7rem; }
.visual-reel-tile { position: relative; min-height: 130px; overflow: hidden; background: #ddd8cd; }
.visual-reel-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease, filter .5s ease; }
.visual-reel-tile:hover img { transform: scale(1.06); filter: saturate(1.05); }
.visual-reel-tile::after { position: absolute; inset: auto 0 0; height: 45%; content: ""; background: linear-gradient(transparent, rgba(15,45,34,.5)); pointer-events: none; }
.visual-reel-tile-1 { grid-row: 1 / 3; }
.visual-reel-tile-2 { grid-column: 2; }
.visual-reel-tile-3 { grid-column: 3 / 5; }
.visual-reel-tile-4 { grid-column: 2; }
.visual-reel-tile-5 { grid-column: 3; }
.visual-reel-tile-6 { grid-column: 4; }
.visual-reel-caption { position: absolute; z-index: 1; right: 1rem; bottom: .8rem; left: 1rem; color: var(--cream); font: 400 1rem var(--serif); }
.wedding-stories { background: var(--ivory); overflow: hidden; }
.section-heading.centered { margin: 0 auto; max-width: 920px; text-align: center; }
.section-heading.centered .eyebrow { margin-bottom: 1rem; }
.section-heading.centered h2 { margin-bottom: .8rem; font-size: clamp(2.8rem, 4vw, 4.2rem); line-height: .96; }
.section-heading.centered .section-description { margin: 0 auto; max-width: 700px; }
.story-marquee { position: relative; margin-top: 3rem; overflow: hidden; }
.story-marquee::before, .story-marquee::after { position: absolute; top: 0; bottom: 0; width: 140px; content: ""; pointer-events: none; z-index: 2; }
.story-marquee::before { left: 0; background: linear-gradient(90deg, var(--ivory), transparent); }
.story-marquee::after { right: 0; background: linear-gradient(270deg, var(--ivory), transparent); }
.story-marquee-track { display: flex; align-items: end; width: max-content; gap: 1.5rem; animation: story-marquee 26s linear infinite; will-change: transform; }
.story-marquee:hover .story-marquee-track { animation-play-state: paused; }
.story-pill { display: block; width: clamp(180px, 15vw, 260px); flex: 0 0 auto; padding: .8rem; border-radius: 999px; background: rgba(255,255,255,.45); box-shadow: 0 18px 42px rgba(15,45,34,.09); }
.story-pill:nth-child(odd) { transform: translateY(1.8rem); }
.story-pill-image { position: relative; overflow: hidden; border-radius: 999px; aspect-ratio: 11 / 15; background: #ddd8cd; }
.story-pill-image img { width: 100%; height: 100%; object-fit: cover; }
.story-pill-copy { display: flex; justify-content: center; padding-top: .85rem; color: var(--green); font: 600 1rem var(--serif); text-align: center; }
.story-pill-copy span { display: inline-block; max-width: 11ch; }
.wedding-stories-cta { display: flex; justify-content: center; margin-top: 2.7rem; }
.story-chapters { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4.5rem 2rem; margin-top: 4rem; }
.story-chapter { display: grid; grid-template-columns: minmax(130px, .8fr) 1fr; gap: 1.6rem; align-items: center; }
.story-chapter:nth-child(even) { transform: translateY(4rem); }
.story-chapter-image, .service-card-image { position: relative; overflow: hidden; background: #ddd8cd; }
.story-chapter-image { aspect-ratio: 4 / 5; }
.story-chapter-image img, .service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.story-chapter:hover img, .service-card:hover img, .featured-story:hover img { transform: scale(1.05); }
.chapter-arrow { position: absolute; z-index: 1; right: .8rem; bottom: .8rem; display: grid; width: 2.2rem; height: 2.2rem; place-items: center; border-radius: 50%; background: var(--cream); color: var(--green); font-size: 1rem; }
.story-chapter-copy small, .service-card-copy small { color: var(--gold); font: 600 .62rem var(--wide); letter-spacing: .14em; text-transform: uppercase; }
.story-chapter-copy h3, .service-card-copy h3 { margin: .7rem 0 .6rem; font: 2rem/1.04 var(--serif); }
.story-chapter-copy p, .service-card-copy p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.7; }
.story-chapter-copy .text-link, .service-card-copy .text-link { margin-top: 1.2rem; }
.service-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 4rem; }
.service-card { display: grid; align-content: start; background: var(--ivory); transition: transform .3s ease; }
.service-card:hover { transform: translateY(-6px); }
.service-card-image { aspect-ratio: 4 / 5; }
.service-card-copy { padding: 1.3rem 1rem 1.5rem; }
.service-card-copy h3 { font-size: 1.5rem; }
.service-card-copy p { min-height: 78px; }
.featured-story { display: grid; grid-template-columns: .8fr 1.2fr; gap: 7vw; align-items: center; background: var(--ivory); }
.featured-story-copy { max-width: 470px; }
.featured-story-copy h2 { margin-bottom: 1.2rem; font-size: clamp(2.8rem, 5vw, 5.4rem); line-height: .96; }
.featured-story-copy > p:not(.eyebrow):not(.featured-couple) { color: var(--muted); line-height: 1.75; }
.featured-couple { display: grid; gap: .2rem; margin: 2rem 0; color: var(--green); font: 1.5rem var(--serif); }
.featured-couple span { color: var(--gold); font: 600 .62rem var(--wide); letter-spacing: .14em; text-transform: uppercase; }
.featured-story-image { position: relative; height: 620px; overflow: hidden; }
.featured-story-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.featured-stamp { position: absolute; right: 2rem; bottom: 2rem; display: grid; width: 120px; height: 120px; place-items: center; border-radius: 50%; background: var(--green); color: var(--cream); font: italic 1rem/1.1 var(--serif); text-align: center; transform: rotate(-10deg); }
.whatsapp { right: 1.3rem; bottom: 1.3rem; width: 3.45rem; height: 3.45rem; padding: 0; display: grid; place-items: center; border-radius: 50%; background: #20c76a; color: #fff; box-shadow: 0 10px 25px rgba(15,45,34,.25); transition: transform .25s ease, box-shadow .25s ease; }
.whatsapp:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 14px 30px rgba(15,45,34,.3); }
.whatsapp::after { position: absolute; right: 0; bottom: calc(100% + .55rem); padding: .5rem .7rem; border-radius: .35rem; background: var(--deep-green); color: var(--cream); content: attr(data-tooltip); opacity: 0; pointer-events: none; white-space: nowrap; font: 600 .62rem var(--wide); letter-spacing: .05em; transition: opacity .2s ease, transform .2s ease; transform: translateY(4px); }
.whatsapp:hover::after, .whatsapp:focus-visible::after { opacity: 1; transform: translateY(0); }
.whatsapp-icon { width: 2.2rem; height: 2.2rem; background: transparent; }
.whatsapp-icon svg { width: 1.65rem; height: 1.65rem; }
.button-outline { border-color: var(--green); background: transparent; color: var(--green); }

@media (max-width: 900px) {
    .visual-reel-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: 210px 170px; }
    .visual-reel-tile-1 { grid-row: 1 / 3; }
    .visual-reel-tile-2, .visual-reel-tile-4 { grid-column: auto; }
    .visual-reel-tile-3 { grid-column: 2 / 4; }
    .visual-reel-tile-5, .visual-reel-tile-6 { grid-column: auto; }
    .service-card-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-story { grid-template-columns: 1fr 1fr; }
    .featured-story-image { height: 500px; }
}

@media (max-width: 780px) {
    .hero-botanical { display: none; }
    .story-chapters { grid-template-columns: 1fr; gap: 2.5rem; margin-top: 3rem; }
    .story-chapter:nth-child(even) { transform: none; }
    .story-chapter { grid-template-columns: minmax(120px, .7fr) 1fr; }
    .service-card-grid { grid-template-columns: 1fr 1fr; }
    .featured-story { grid-template-columns: 1fr; gap: 2rem; }
    .featured-story-image { height: 480px; order: -1; }
    .visual-reel-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 180px); }
    .visual-reel-tile-1, .visual-reel-tile-3 { grid-row: auto; grid-column: auto; }
    .visual-reel-tile-3 { grid-column: 1 / 3; }
}

@media (max-width: 460px) {
    .experience-gate { padding: 1.5rem 1.25rem; }
    .experience-gate-copy h2 { font-size: clamp(3.8rem, 20vw, 6rem); }
    .service-card-grid { grid-template-columns: 1fr; }
    .service-card-copy p { min-height: 0; }
    .story-chapter { grid-template-columns: 1fr; }
    .story-chapter-image { aspect-ratio: 1.25 / 1; }
    .visual-reel-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 145px); gap: .5rem; }
    .visual-reel-tile-3 { grid-column: 1 / 3; }
    .featured-story-image { height: 380px; }
    .featured-stamp { right: 1rem; bottom: 1rem; width: 95px; height: 95px; font-size: .82rem; }
    .whatsapp { right: .9rem; bottom: .9rem; }
}