*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --cedar:#8B4A2B;--cedar-light:#C47A4E;
  --forest:#1C2B1E;--cream:#F5F0E8;--warm-white:#FAF8F4;
  --stone:#7A7268;--charcoal:#2A2520;--gold:#C4953A;
}
html{scroll-behavior:smooth}
body{font-family:'DM Sans',sans-serif;background:var(--warm-white);color:var(--charcoal);overflow-x:hidden}

/* NAV */
nav{position:fixed;top:0;left:0;right:0;z-index:100;display:flex;align-items:center;justify-content:space-between;padding:1rem 2.5rem;transition:background .4s,box-shadow .4s}
nav.scrolled{background:rgba(250,248,244,.97);box-shadow:0 1px 0 rgba(0,0,0,.07);backdrop-filter:blur(8px)}
nav.solid{background:rgba(250,248,244,.97);box-shadow:0 1px 0 rgba(0,0,0,.07)}
.nav-brand{display:flex;align-items:center;gap:.85rem;text-decoration:none}
.nav-name{font-family:'Cormorant Garamond',serif;font-size:1.1rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:white;transition:color .4s;line-height:1;white-space:nowrap}
nav.scrolled .nav-name,nav.solid .nav-name{color:var(--charcoal)}
nav.scrolled .icon-light,nav.solid .icon-light{display:none}
nav.scrolled .icon-dark,nav.solid .icon-dark{display:block}
.icon-light{display:block}.icon-dark{display:none}
.nav-links{display:flex;gap:1.8rem;list-style:none;align-items:center}.nav-links>li{display:flex;align-items:center}
.nav-links a{font-size:.72rem;font-weight:500;letter-spacing:.13em;text-transform:uppercase;color:rgba(255,255,255,.72);text-decoration:none;transition:color .3s}
nav.scrolled .nav-links a,nav.solid .nav-links a{color:var(--stone)}
.nav-links a:hover{color:var(--gold) !important}
.nav-cta{font-size:.7rem;font-weight:500;letter-spacing:.1em;text-transform:uppercase;padding:.5rem 1.1rem;background:var(--cedar);color:white !important;text-decoration:none;transition:background .3s;white-space:nowrap}
.nav-cta:hover{background:var(--cedar-light) !important}

/* DROPDOWN */
.nav-dropdown{position:relative}
.nav-dropdown>a{display:flex;align-items:center;gap:.3rem}
.nav-dropdown>a::after{content:'▾';font-size:.55rem;opacity:.6}
.dropdown-menu{display:none;position:absolute;top:100%;left:0;background:var(--warm-white);box-shadow:0 8px 30px rgba(0,0,0,.12);min-width:200px;padding:.4rem 0;margin-top:0}
.nav-dropdown:hover .dropdown-menu{display:block}
.nav-dropdown>.dropdown-menu::before{content:'';position:absolute;top:-12px;left:0;right:0;height:12px}
.dropdown-menu a{display:block;padding:.55rem 1.1rem;font-size:.68rem;font-weight:500;letter-spacing:.1em;text-transform:uppercase;color:var(--stone) !important;text-decoration:none;transition:background .2s,color .2s}
.dropdown-menu a:hover{background:var(--cream);color:var(--cedar) !important}

/* HERO */
.hero{position:relative;height:100vh;min-height:600px;overflow:hidden;display:flex;align-items:flex-end;padding-bottom:10vh}
.hero-img{position:absolute;inset:0;background-size:cover;background-position:center 25%;animation:zoomIn 14s ease forwards}
@keyframes zoomIn{from{transform:scale(1.05)}to{transform:scale(1)}}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(135deg,rgba(12,8,4,.88) 0%,rgba(18,12,6,.55) 45%,rgba(28,43,30,.2) 100%)}
.hero-content{position:relative;z-index:2;padding:0 2.5rem;max-width:680px;animation:fadeUp .9s .2s ease both}
@keyframes fadeUp{from{opacity:0;transform:translateY(26px)}to{opacity:1;transform:translateY(0)}}

/* PAGE HERO (interior pages) */
.page-hero{background:var(--charcoal);padding:7rem 2.5rem 4rem;border-bottom:1px solid rgba(245,240,232,.05)}
.page-hero .eyebrow{color:var(--gold)}
.page-hero .eyebrow::before{background:var(--gold)}
.page-hero h1{font-family:'Cormorant Garamond',serif;font-size:clamp(2.2rem,4vw,3.5rem);font-weight:300;line-height:1.1;color:var(--cream);margin-bottom:.75rem}
.page-hero h1 em{font-style:italic;color:var(--cedar-light)}
.page-hero p{font-size:.95rem;color:rgba(245,240,232,.55);line-height:1.85;max-width:560px}

/* TYPOGRAPHY */
.eyebrow{font-size:.67rem;font-weight:500;letter-spacing:.24em;text-transform:uppercase;color:var(--gold);margin-bottom:1rem;display:flex;align-items:center;gap:.75rem}
.eyebrow::before{content:'';display:inline-block;width:1.5rem;height:1px;background:var(--gold);flex-shrink:0}
h1{font-family:'Cormorant Garamond',serif;font-size:clamp(2.8rem,6.5vw,5rem);font-weight:300;line-height:1.05;color:var(--cream);margin-bottom:1rem}
h1 em{font-style:italic;color:var(--cedar-light)}
h2{font-family:'Cormorant Garamond',serif;font-size:clamp(1.9rem,3.5vw,2.8rem);font-weight:300;line-height:1.1;color:var(--charcoal);margin-bottom:.85rem}
h2 em{font-style:italic;color:var(--cedar)}
h3{font-family:'Cormorant Garamond',serif;font-size:1.4rem;font-weight:600;color:var(--charcoal);margin-bottom:.5rem}
.hero-sub{font-size:.96rem;font-weight:300;color:rgba(245,240,232,.62);line-height:1.8;max-width:450px;margin-bottom:2rem}

/* BUTTONS */
.btn-row{display:flex;gap:.85rem;flex-wrap:wrap}
.btn-primary{display:inline-block;padding:.82rem 1.9rem;background:var(--cedar);color:white;font-size:.73rem;font-weight:500;letter-spacing:.11em;text-transform:uppercase;text-decoration:none;transition:background .3s}
.btn-primary:hover{background:var(--cedar-light)}
.btn-outline{display:inline-block;padding:.82rem 1.9rem;border:1px solid rgba(245,240,232,.3);color:rgba(245,240,232,.8);font-size:.73rem;font-weight:500;letter-spacing:.11em;text-transform:uppercase;text-decoration:none;transition:border-color .3s,color .3s}
.btn-outline:hover{border-color:var(--gold);color:var(--gold)}
.btn-cedar{display:inline-block;padding:.82rem 1.9rem;background:var(--cedar);color:white;font-size:.73rem;font-weight:500;letter-spacing:.11em;text-transform:uppercase;text-decoration:none;transition:background .3s}
.btn-cedar:hover{background:var(--cedar-light)}

/* TRUST */
.trust{background:var(--charcoal);padding:1.8rem 2.5rem;display:grid;grid-template-columns:repeat(4,1fr)}
.trust-item{padding:0 1.5rem;border-right:1px solid rgba(245,240,232,.07);display:flex;align-items:center}
.trust-item:first-child{padding-left:0}
.trust-item:last-child{border-right:none}
.t-num{font-family:'Cormorant Garamond',serif;font-size:1.4rem;font-weight:600;color:var(--gold);line-height:1;display:block}
.t-label{font-size:.63rem;font-weight:500;letter-spacing:.15em;text-transform:uppercase;color:rgba(245,240,232,.35);margin-top:.1rem;display:block}

/* SECTIONS */
section{padding:5rem 2.5rem}
.reveal{opacity:0;transform:translateY(18px);transition:opacity .65s ease,transform .65s ease}
.reveal.visible{opacity:1;transform:translateY(0)}

/* GALLERY */
#gallery{padding:0;background:var(--warm-white)}
.gallery-header{padding:4rem 2.5rem 2rem}
.gallery-header .eyebrow{color:var(--cedar)}
.gallery-header .eyebrow::before{background:var(--cedar)}
.gallery-header h2{color:var(--charcoal)}
.gallery-grid{display:grid;grid-template-columns:1.15fr 1fr 1fr;grid-template-rows:repeat(2,min(330px,30vw));gap:4px}
.gcell{overflow:hidden}
.gcell img{width:100%;height:100%;object-fit:cover;object-position:center;display:block;transition:transform .7s ease}
.gcell:hover img{transform:scale(1.04)}
.gcell-tall{grid-row:span 2}

/* PRICING */
#pricing{background:var(--charcoal);padding:5rem 2.5rem;border-top:1px solid rgba(245,240,232,.05)}
#pricing .eyebrow{color:var(--gold)}
#pricing .eyebrow::before{background:var(--gold)}
#pricing h2{color:var(--cream);margin-bottom:1rem}
.pricing-intro{font-size:.92rem;color:rgba(245,240,232,.48);line-height:1.9;max-width:620px;margin-bottom:2.5rem}
.pricing-intro strong{color:rgba(245,240,232,.8);font-weight:500}
.price-table{width:100%;border-collapse:collapse;font-size:.88rem}
.price-table thead tr{border-bottom:1px solid rgba(245,240,232,.1)}
.price-table th{text-align:left;padding:.7rem 1rem;font-size:.6rem;font-weight:500;letter-spacing:.18em;text-transform:uppercase;color:rgba(245,240,232,.3)}
.price-table th:first-child{width:30%}
.price-table td{padding:.9rem 1rem;border-bottom:1px solid rgba(245,240,232,.05);color:rgba(245,240,232,.5);vertical-align:middle}
.price-table td:first-child{width:30%;color:rgba(245,240,232,.78);font-weight:500}
.price-table td:last-child{font-weight:500;white-space:nowrap}
.price-table .ours{background:rgba(196,149,58,.07);border-bottom:1px solid rgba(196,149,58,.12)}
.price-table .ours td{color:rgba(245,240,232,.85)}
.price-table .ours td:first-child{color:var(--gold)}
.price-table .ours td:last-child{color:var(--gold)}
.price-note{font-size:.76rem;color:rgba(245,240,232,.28);margin-top:1.5rem;line-height:1.7}

/* OFFERINGS */
#offerings{background:var(--warm-white)}
.off-head{max-width:540px;margin-bottom:2.5rem}
.off-head p{font-size:.92rem;color:var(--stone);line-height:1.85;margin-top:.7rem}
.off-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:3px;max-width:1080px}
.off-card{position:relative;overflow:hidden;display:block;text-decoration:none}
.off-card img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block;transition:transform .6s ease}
.off-card:hover img{transform:scale(1.04)}
.off-cap{position:absolute;bottom:0;left:0;right:0;padding:1.4rem;background:linear-gradient(to top,rgba(12,8,4,.88),transparent)}
.off-name{font-family:'Cormorant Garamond',serif;font-size:1.35rem;font-weight:400;color:white;margin-bottom:.2rem}
.off-note{font-size:.73rem;color:rgba(255,255,255,.5);font-weight:300}

/* STORIES */
#stories{background:var(--forest)}
.stories-head{margin-bottom:2.5rem}
.stories-head .eyebrow{color:var(--gold)}
.stories-head .eyebrow::before{background:var(--gold)}
.stories-head h2{color:var(--cream)}
.stories-head p{font-size:.92rem;color:rgba(245,240,232,.45);line-height:1.8;margin-top:.6rem;max-width:460px}
.stories-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;max-width:1080px}
.story-card{background:rgba(255,255,255,.04);border:1px solid rgba(245,240,232,.07);overflow:hidden;transition:border-color .3s,transform .3s;text-decoration:none;display:block}
.story-card:hover{border-color:rgba(196,149,58,.35);transform:translateY(-3px)}
.story-thumb{width:100%;aspect-ratio:4/3;object-fit:cover;display:block;filter:brightness(.85);transition:filter .4s}
.story-card:hover .story-thumb{filter:brightness(1)}
.story-body{padding:1.4rem}
.story-location{font-size:.59rem;font-weight:500;letter-spacing:.16em;text-transform:uppercase;color:var(--gold);margin-bottom:.3rem;display:block}
.story-tag{display:inline-block;font-size:.59rem;font-weight:500;letter-spacing:.14em;text-transform:uppercase;padding:.2rem .55rem;background:var(--cedar);color:white;margin-bottom:.65rem}
.story-title{font-family:'Cormorant Garamond',serif;font-size:1.1rem;font-weight:600;color:var(--cream);margin-bottom:.45rem;line-height:1.2;text-decoration:none}
.story-stars{color:var(--gold);font-size:.7rem;margin-bottom:.4rem}
.story-quote{font-family:'Cormorant Garamond',serif;font-size:.92rem;font-style:italic;color:rgba(245,240,232,.6);line-height:1.65;margin-bottom:.9rem}
.story-link{display:inline-flex;align-items:center;gap:.35rem;font-size:.68rem;font-weight:500;letter-spacing:.12em;text-transform:uppercase;color:var(--cedar-light);text-decoration:none;border-bottom:1px solid transparent;transition:border-color .3s}
.story-link:hover{border-bottom-color:var(--cedar-light)}
.story-link::after{content:'→';margin-left:.2rem}

/* ABOUT */
#about{background:var(--cream)}
.about-layout{display:grid;grid-template-columns:1fr 1fr;gap:4.5rem;align-items:center;max-width:1080px}
.about-photos{display:grid;grid-template-columns:1fr 1fr;grid-template-rows:1fr 1fr;gap:5px;aspect-ratio:1/1}
.about-photo{width:100%;height:100%;object-fit:cover;object-position:center;display:block}
.about-photo.tall{grid-row:span 2;height:100%}
.about-text .eyebrow{margin-bottom:.9rem}
.about-text p{font-size:.91rem;color:var(--stone);line-height:1.9;margin-bottom:1rem}
.about-text p strong{color:var(--charcoal);font-weight:500}
.text-link{display:inline-flex;align-items:center;gap:.4rem;font-size:.72rem;font-weight:500;letter-spacing:.11em;text-transform:uppercase;color:var(--cedar);text-decoration:none;border-bottom:1px solid transparent;transition:border-color .3s;margin-top:.4rem}
.text-link:hover{border-bottom-color:var(--cedar)}
.text-link::after{content:'→';margin-left:.2rem}

/* PROCESS */
#process{background:var(--warm-white);padding:5rem 2.5rem}
.process-top{display:grid;grid-template-columns:1fr 1fr;gap:3rem;max-width:980px;margin-bottom:4rem;align-items:end}
.process-top p{font-size:.9rem;color:var(--stone);line-height:1.85}
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;max-width:980px}
.step{position:relative}
.step:not(:last-child)::after{content:'';position:absolute;top:1.75rem;left:calc(50% + 1.75rem);right:calc(-50% + 1.75rem);height:1px;background:rgba(139,74,43,.2)}
.step-circle{width:3.5rem;height:3.5rem;border:1.5px solid rgba(139,74,43,.3);border-radius:50%;display:flex;align-items:center;justify-content:center;margin-bottom:1.2rem;background:var(--warm-white);position:relative;z-index:1}
.step-n{font-family:'DM Sans',sans-serif;font-size:1.3rem;font-weight:700;color:var(--cedar);line-height:1}
.step-title{font-family:'Cormorant Garamond',serif;font-size:1.1rem;font-weight:600;color:var(--charcoal);margin-bottom:.4rem}
.step-desc{font-size:.78rem;color:var(--stone);line-height:1.75}

/* CONTACT */
#contact{background:var(--charcoal);padding:5rem 2.5rem}
.contact-layout{display:grid;grid-template-columns:1fr 1.3fr;gap:4.5rem;max-width:940px}
#contact .eyebrow{color:var(--gold)}
#contact .eyebrow::before{background:var(--gold)}
#contact h2{color:var(--cream)}
.contact-left p{font-size:.9rem;color:rgba(245,240,232,.5);line-height:1.85;margin:1rem 0 2rem}
.cinfo{margin-bottom:1.1rem}
.cinfo-label{font-size:.6rem;font-weight:500;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin-bottom:.15rem}
.cinfo-val{font-size:.92rem;color:var(--cream)}
.cinfo-val a{color:var(--cream);text-decoration:none}
.cinfo-val a:hover{color:var(--cedar-light)}
.form{display:flex;flex-direction:column;gap:.9rem}
.frow{display:grid;grid-template-columns:1fr 1fr;gap:.9rem}
.fgroup{display:flex;flex-direction:column;gap:.3rem}
.flabel{font-size:.6rem;font-weight:500;letter-spacing:.18em;text-transform:uppercase;color:rgba(245,240,232,.32)}
.finput,.fselect,.ftextarea{background:rgba(255,255,255,.05);border:1px solid rgba(245,240,232,.1);padding:.72rem .95rem;color:var(--cream);font-family:'DM Sans',sans-serif;font-size:.86rem;outline:none;width:100%;transition:border-color .3s}
.finput:focus,.fselect:focus,.ftextarea:focus{border-color:rgba(196,149,58,.4)}
.fselect option{background:var(--charcoal)}
.ftextarea{resize:vertical;min-height:88px}
.fsubmit{align-self:flex-start;padding:.8rem 2rem;background:var(--cedar);color:white;font-family:'DM Sans',sans-serif;font-size:.73rem;font-weight:500;letter-spacing:.11em;text-transform:uppercase;border:none;cursor:pointer;transition:background .3s}
.fsubmit:hover{background:var(--cedar-light)}

/* SUBURBS */
.suburb-strip{background:var(--forest);padding:2rem 2.5rem;border-top:1px solid rgba(245,240,232,.05)}
.suburb-strip p{font-size:.7rem;color:rgba(245,240,232,.25);line-height:1.9;max-width:860px}
.suburb-strip strong{color:rgba(245,240,232,.4);font-weight:500}
.service-area ul{display:flex;flex-wrap:wrap;gap:.2rem .1rem;list-style:none;padding:0;margin:.4rem 0 .6rem;max-width:900px}
.service-area li{font-size:.7rem;color:rgba(245,240,232,.25)}
.service-area li:not(:last-child)::after{content:' ·';margin-left:.1rem;color:rgba(245,240,232,.15)}

/* FOOTER */
footer{background:var(--forest);padding:2rem 2.5rem;display:grid;grid-template-columns:1fr auto auto;gap:2rem;align-items:start;border-top:1px solid rgba(245,240,232,.05)}
.footer-brand .footer-logo{font-family:'Cormorant Garamond',serif;font-size:.9rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:rgba(245,240,232,.4);display:block;margin-bottom:.4rem}
.footer-brand .footer-copy{font-size:.63rem;color:rgba(245,240,232,.18)}
.footer-col h4{font-size:.6rem;font-weight:500;letter-spacing:.18em;text-transform:uppercase;color:rgba(245,240,232,.25);margin-bottom:.7rem}
.footer-col ul{list-style:none}
.footer-col ul li{margin-bottom:.3rem}
.footer-col ul a{font-size:.7rem;color:rgba(245,240,232,.28);text-decoration:none;letter-spacing:.05em;transition:color .3s}
.footer-col ul a:hover{color:var(--gold)}

/* INNER PAGE CONTENT */
.inner-content{padding:4rem 2.5rem;max-width:860px}
.inner-content h2{font-size:clamp(1.5rem,2.5vw,2rem);margin-top:2.5rem;margin-bottom:.75rem;color:var(--charcoal)}
.inner-content h3{margin-top:1.5rem;margin-bottom:.5rem}
.inner-content p{font-size:.93rem;color:var(--stone);line-height:1.9;margin-bottom:1rem}
.inner-content ul{margin:.5rem 0 1rem 1.2rem}
.inner-content ul li{font-size:.93rem;color:var(--stone);line-height:1.8;margin-bottom:.3rem}

/* Tighter header above photo galleries */
.gallery-head.inner-content{padding:1.5rem 2.5rem 1rem}

/* RELATED PAGES */
.related-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem;margin-top:1.5rem}
.related-card{background:var(--cream);padding:1.4rem;text-decoration:none;transition:background .3s}
.related-card:hover{background:#ede8df}
.related-card span{font-size:.6rem;font-weight:500;letter-spacing:.15em;text-transform:uppercase;color:var(--stone);display:block;margin-bottom:.3rem}
.related-card strong{font-family:'Cormorant Garamond',serif;font-size:1.1rem;font-weight:600;color:var(--charcoal);display:block}

/* FAQ */
.faq-list{max-width:760px}
.faq-item{border-bottom:1px solid rgba(0,0,0,.07);padding:1.5rem 0}
.faq-item:first-child{border-top:1px solid rgba(0,0,0,.07)}
.faq-q{font-family:'Cormorant Garamond',serif;font-size:1.15rem;font-weight:600;color:var(--charcoal);margin-bottom:.6rem;cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:1rem}
.faq-q::after{content:'+';font-family:'DM Sans',sans-serif;font-size:1.2rem;color:var(--cedar);flex-shrink:0;transition:transform .3s}
.faq-item.open .faq-q::after{transform:rotate(45deg)}
.faq-a{font-size:.9rem;color:var(--stone);line-height:1.85;display:none}
.faq-a a{color:var(--cedar);text-decoration:none}
.faq-a a:hover{text-decoration:underline}
.faq-item.open .faq-a{display:block}

/* CTA BAND */
.cta-band{background:var(--cedar);padding:4rem 2.5rem;text-align:center}
.cta-band h2{color:white;margin-bottom:.5rem}
.cta-band p{color:rgba(255,255,255,.7);font-size:.93rem;margin-bottom:2rem}
.cta-band .btn-outline{border-color:rgba(255,255,255,.5);color:white}
.cta-band .btn-outline:hover{border-color:white;color:white}

@media(max-width:860px){
  nav{padding:.9rem 1.25rem}
  .nav-links{display:none}
  section,#pricing,#process,#contact{padding:3.5rem 1.25rem}
  .trust{grid-template-columns:1fr 1fr;gap:1.2rem;padding:1.8rem 1.25rem}
  .trust-item{padding:0;border:none}
  .gallery-grid{grid-template-columns:1fr 1fr;grid-template-rows:auto;grid-auto-flow:dense}
  .gcell img{height:min(200px,45vw)}
  .gcell-tall img{height:min(408px,93vw)}
  .gallery-header{padding:2rem 1.25rem 1.5rem}
  .off-grid{grid-template-columns:1fr}
  .stories-grid{grid-template-columns:1fr}
  .about-layout{grid-template-columns:1fr;gap:2rem}
  .process-top{grid-template-columns:1fr;gap:1rem}
  .steps{grid-template-columns:1fr 1fr;gap:1.5rem}
  .step:not(:last-child)::after{display:none}
  .contact-layout{grid-template-columns:1fr;gap:2rem}
  .contact-form{align-self:start;margin-left:-1.25rem !important;width:calc(100% + 1.25rem) !important;overflow:hidden}
  .frow{grid-template-columns:1fr}
  footer{grid-template-columns:1fr;gap:1.5rem}
  .price-table{font-size:.78rem}
  .price-table th:first-child,.price-table td:first-child{width:auto}
  .related-grid{grid-template-columns:1fr}
  .suburb-strip{padding:1.5rem 1.25rem}
  .page-hero{padding:6rem 1.25rem 3rem}
  .inner-content{padding:3rem 1.25rem}
}

/* Subpage photo galleries */
.subpage-gallery{display:grid;grid-template-columns:repeat(3,1fr);grid-template-rows:auto auto;gap:4px;margin-top:0}
.sg-cell img{width:100%;height:100%;object-fit:cover;display:block}
.sg-cell{overflow:hidden}
.sg-cell.sg-tall{grid-row:span 2}
.sg-cell.sg-wide{grid-column:span 2}
.sg-cell img{aspect-ratio:4/3}
.sg-cell.sg-tall img{aspect-ratio:unset;height:100%;min-height:400px}
.sg-cell.sg-wide img{aspect-ratio:16/7}
@media(max-width:700px){
  .subpage-gallery{grid-template-columns:1fr 1fr;grid-auto-flow:dense}
  .sg-cell.sg-tall{grid-row:span 1}
  .sg-cell.sg-wide{grid-column:span 2}
  .gallery-head.inner-content{padding:1rem 1.25rem 0.75rem}
}

/* Mobile nav */
.nav-hamburger{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:4px;z-index:200}
.nav-hamburger span{display:block;width:22px;height:2px;background:white;transition:background .3s,transform .3s,opacity .3s}
nav.scrolled .nav-hamburger span,nav.solid .nav-hamburger span{background:var(--charcoal)}
.nav-hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-hamburger.open span:nth-child(2){opacity:0}
.nav-hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
@media(max-width:860px){
  .nav-links{display:none;position:fixed;top:0;left:0;right:0;background:rgba(250,248,244,.98);padding:5rem 2rem 2rem;flex-direction:column;align-items:flex-start;gap:0;box-shadow:0 4px 20px rgba(0,0,0,.12);z-index:150}
  .nav-links>li{display:block;width:100%;border-bottom:1px solid rgba(0,0,0,.06)}
  .nav-links.open{display:flex}
  .nav-links a{display:block;padding:.9rem 0;font-size:.85rem;color:var(--charcoal) !important;width:100%}
  .nav-dropdown{position:static;width:100%}
  .nav-dropdown>a{justify-content:space-between}
  .dropdown-menu{display:none !important;position:static;box-shadow:none;padding:0 0 0 1rem;background:transparent;margin:0}
  .dropdown-menu.open{display:block !important}
  .dropdown-menu a{font-size:.78rem;padding:.65rem 0;color:var(--stone) !important;border-bottom:1px solid rgba(0,0,0,.04)}
  .nav-hamburger{display:flex}
  .nav-cta{display:none}
}

/* Mobile nav CTA */
.nav-mobile-cta{display:none !important}
@media(max-width:860px){
  .nav-mobile-cta{display:block !important;margin-top:.5rem;border-bottom:none !important}
  .nav-mobile-cta a{
    display:inline-block !important;
    width:auto !important;
    background:var(--cedar) !important;
    color:white !important;
    padding:.6rem 1.5rem !important;
    font-size:.72rem !important;
    letter-spacing:.1em !important;
    text-transform:uppercase !important;
    margin-top:.25rem;
  }
  .nav-mobile-cta a:hover{background:var(--cedar-light) !important}
}

.hero-tagline{font-size:1.2rem;color:rgba(255,255,255,.8);font-style:italic;margin:-.5rem 0 1.5rem;letter-spacing:.01em}
/* Inline FAQs on subpages */
.inline-faqs{margin-top:2rem;border-top:1px solid rgba(0,0,0,.08)}
.ifaq-item{border-bottom:1px solid rgba(0,0,0,.08);padding:1.2rem 0}
.ifaq-q{font-weight:600;font-size:.95rem;color:var(--charcoal);margin-bottom:.5rem;cursor:default}
.ifaq-a p{margin:0;color:var(--stone);font-size:.9rem;line-height:1.7}

.callout-box{background:var(--parchment);border-left:3px solid var(--cedar);padding:1.2rem 1.5rem;font-size:.95rem;line-height:1.7;color:var(--charcoal)}
/* Story hero meta bar */
.story-meta{display:flex;gap:2rem;flex-wrap:wrap;margin-top:1rem}
.story-meta-item{font-size:.78rem;letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,.75)}
.story-meta-item strong{color:rgba(255,255,255,.5);margin-right:.3rem}
.stars{color:#D4A853}

/* Reduce gap before dark sections so users keep scrolling */
.subpage-dark, .gallery-dark {
  margin-top: 0;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.subpage-section + section, section + .subpage-section {
  margin-top: 0;
}

/* ── Tighter section spacing on subpages ── */
.inner-page section { padding-top: 3rem; padding-bottom: 3rem; }
.inner-page section + section { padding-top: 2rem; }

/* ── Gallery section: softer transition so readers keep scrolling ── */
.gallery-section {
  background: var(--forest);
  padding: 3rem 0 2rem;
  position: relative;
}
.gallery-section::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(to right, var(--cedar), var(--gold));
  margin-bottom: 2rem;
}
.gallery-section .eyebrow { color: var(--gold); }
.gallery-section h2 { color: var(--cream); margin-bottom: 1.5rem; }

/* Stories section: proper vertical breathing room */
#stories { padding-top: 4rem; padding-bottom: 4rem; padding-left: 2.5rem; padding-right: 2.5rem; }
@media(max-width:768px){
  #stories { padding-left: 1.25rem; padding-right: 1.25rem; }
}

/* Subpage gallery sections: flush, no padding (gallery runs edge-to-edge) */
.inner-page section[style*="var(--forest)"] { padding-top: 1.5rem; padding-bottom: 1.5rem; }
