:root{
  --cedar:#2E3B2F; --cedar-dark:#243026; --limestone:#F4F1EA; --sand:#C8B693;
  --bronze:#A67C52; --bronze-dark:#8A6543; --charcoal:#26241F; --ink:#33312B;
  --muted:#6E6A60; --line:#DDD7CA; --white:#FFFFFF;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{font-family:'Inter',sans-serif; background:var(--limestone); color:var(--ink); line-height:1.7; font-size:16px;}
.wrap{max-width:1120px; margin:0 auto; padding:0 24px;}
h1,h2,h3{font-family:'Cormorant Garamond',serif; font-weight:600; color:var(--cedar); line-height:1.12;}
.eyebrow{font-size:12px; letter-spacing:.24em; text-transform:uppercase; color:var(--bronze); font-weight:600; margin-bottom:14px;}
.btn{display:inline-block; font-family:'Inter',sans-serif; font-size:15px; font-weight:600; letter-spacing:.03em; padding:14px 28px; border-radius:6px; text-decoration:none; transition:background .15s,color .15s,border-color .15s; cursor:pointer; border:none;}
.btn-primary{background:var(--cedar); color:var(--limestone);}
.btn-primary:hover{background:var(--cedar-dark);}
.btn-bronze{background:var(--bronze); color:var(--white);}
.btn-bronze:hover{background:var(--bronze-dark);}
.btn-ghost{background:transparent; color:var(--cedar); border:1px solid var(--sand);}
.btn-ghost:hover{border-color:var(--cedar);}
.btn:focus-visible{outline:2px solid var(--bronze); outline-offset:2px;}

nav{position:sticky; top:0; z-index:100; background:rgba(244,241,234,.95); backdrop-filter:blur(8px); border-bottom:1px solid var(--line);}
.nav-inner{display:flex; align-items:center; justify-content:space-between; padding:18px 24px; max-width:1120px; margin:0 auto;}
.logo{font-family:'Cormorant Garamond',serif; font-size:24px; font-weight:600; letter-spacing:.16em; color:var(--cedar); text-decoration:none;}
.logo small{display:block; font-family:'Inter',sans-serif; font-size:9px; letter-spacing:.3em; color:var(--bronze); font-weight:600; margin-top:-2px;}
.nav-links{display:flex; align-items:center; gap:28px; list-style:none;}
.nav-links a{font-size:14px; font-weight:500; color:var(--ink); text-decoration:none;}
.nav-links a:hover, .nav-links a.active{color:var(--cedar);}
.nav-links a.active{border-bottom:2px solid var(--bronze); padding-bottom:2px;}
.nav-links .btn{padding:10px 20px; font-size:14px; border-bottom:none;}
@media (max-width:880px){ .nav-links li:not(:last-child){display:none;} }

.hero{padding:96px 0 80px;}
.hero-grid{display:grid; grid-template-columns:1.1fr .9fr; gap:56px; align-items:center;}
@media (max-width:880px){ .hero-grid{grid-template-columns:1fr;} .hero{padding:64px 0 56px;} }
.hero h1{font-size:clamp(44px,6.5vw,72px); margin-bottom:20px;}
.hero p{font-size:18px; color:var(--muted); max-width:480px; margin-bottom:32px;}
.hero-ctas{display:flex; gap:14px; flex-wrap:wrap;}

.photo{background:var(--cedar); border-radius:12px; position:relative; overflow:hidden;}
.photo img{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:2;}
.photo .cap{position:absolute; inset:0; display:flex; align-items:center; justify-content:center; text-align:center; padding:24px; color:var(--sand); font-size:13px; letter-spacing:.08em; z-index:1;}
.hero .photo{aspect-ratio:4/5;}

section{padding:88px 0;}
section.alt{background:var(--white); border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
.section-head{max-width:640px; margin-bottom:48px;}
.section-head h2{font-size:clamp(30px,4vw,42px); margin-bottom:14px;}
.section-head p{color:var(--muted); font-size:17px;}

.page-hero{padding:80px 0 56px;}
.page-hero h1{font-size:clamp(38px,5.4vw,58px); margin-bottom:16px; max-width:800px;}
.page-hero p{font-size:18px; color:var(--muted); max-width:600px;}

.steps{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
@media (max-width:880px){ .steps{grid-template-columns:1fr;} }
.step{background:var(--white); border:1px solid var(--line); border-radius:12px; padding:32px 28px;}
section.alt .step{background:var(--limestone);}
.step-num{font-family:'Cormorant Garamond',serif; font-size:40px; color:var(--bronze); font-weight:600; line-height:1; margin-bottom:14px;}
.step h3{font-size:22px; margin-bottom:10px;}
.step p{font-size:15px; color:var(--muted);}

.services{display:grid; grid-template-columns:1fr 1fr; gap:24px;}
@media (max-width:880px){ .services{grid-template-columns:1fr;} }
.service-card{background:var(--white); border:1px solid var(--line); border-radius:12px; overflow:hidden; display:flex; flex-direction:column;}
.service-card .photo{border-radius:0; aspect-ratio:16/8;}
.service-body{padding:32px 30px; display:flex; flex-direction:column; gap:14px; flex:1;}
.service-body h3{font-size:26px;}
.service-body p{font-size:15px; color:var(--muted); flex:1;}
.service-body .price-note{font-size:13px; color:var(--bronze); font-weight:600; letter-spacing:.06em; text-transform:uppercase;}

.quote-band{background:var(--cedar); color:var(--limestone); padding:88px 0;}
.quote-band .eyebrow{color:var(--sand);}
.quote-band blockquote{font-family:'Cormorant Garamond',serif; font-size:clamp(26px,3.6vw,38px); font-weight:500; font-style:italic; line-height:1.35; max-width:820px;}
.quote-band cite{display:block; font-family:'Inter',sans-serif; font-size:14px; font-style:normal; color:var(--sand); margin-top:22px; letter-spacing:.06em;}

.hoods{display:flex; flex-wrap:wrap; gap:10px; margin-top:24px;}
.hood{font-size:13px; letter-spacing:.08em; border:1px solid var(--sand); color:var(--cedar); border-radius:20px; padding:7px 16px; font-weight:500;}

.closing{text-align:center; padding:104px 0;}
.closing h2{font-size:clamp(34px,5vw,52px); margin-bottom:16px;}
.closing p{color:var(--muted); font-size:17px; max-width:480px; margin:0 auto 32px;}

footer{background:var(--charcoal); color:var(--sand); padding:48px 0;}
.foot-inner{display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:20px;}
footer .logo{color:var(--limestone);}
footer p{font-size:13px;}
footer a{color:var(--sand); text-decoration:none;}

.faq{max-width:760px;}
.faq details{background:var(--white); border:1px solid var(--line); border-radius:10px; padding:20px 24px; margin-bottom:10px;}
.faq summary{font-weight:600; font-size:16px; color:var(--charcoal); cursor:pointer; list-style:none; display:flex; justify-content:space-between; align-items:center;}
.faq summary::after{content:"+"; font-family:'Cormorant Garamond',serif; font-size:26px; color:var(--bronze); line-height:1;}
.faq details[open] summary::after{content:"–";}
.faq details p{font-size:15px; color:var(--muted); margin-top:12px;}

.gallery{display:grid; grid-template-columns:repeat(3,1fr); gap:16px;}
@media (max-width:880px){ .gallery{grid-template-columns:1fr;} }
.gallery .photo{aspect-ratio:4/3;}

.creds{display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:16px; margin-top:32px;}
.cred{background:var(--white); border:1px solid var(--line); border-radius:10px; padding:20px 22px; font-size:14px; color:var(--ink);}
.cred strong{display:block; font-family:'Cormorant Garamond',serif; font-size:20px; color:var(--cedar); margin-bottom:4px;}

.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start;}
@media (max-width:880px){ .contact-grid{grid-template-columns:1fr;} }
.cform label{display:block; font-size:12px; font-weight:600; letter-spacing:.06em; text-transform:uppercase; color:var(--muted); margin:14px 0 4px;}
.cform input, .cform textarea{width:100%; font-family:'Inter',sans-serif; font-size:15px; padding:11px 12px; border:1px solid var(--line); border-radius:6px; background:var(--white); color:var(--ink);}
.cform input:focus-visible, .cform textarea:focus-visible{outline:2px solid var(--bronze); outline-offset:1px;}
.contact-list{list-style:none; margin-top:24px;}
.contact-list li{padding:14px 0; border-bottom:1px solid var(--line); font-size:16px;}
.contact-list a{color:var(--cedar); font-weight:600; text-decoration:none;}

@media (prefers-reduced-motion: reduce){ html{scroll-behavior:auto;} *{transition:none !important;} }

.trusted-grid{display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center;}
@media (max-width:880px){ .trusted-grid{grid-template-columns:1fr;} }
