:root{
  --bg:#f7f5f1;
  --paper:#ffffff;
  --paper-2:#eee8df;
  --text:#211c1a;
  --muted:#665f5b;
  --brand:#8a211d;
  --brand-dark:#351816;
  --gold:#9f7a45;
  --line:rgba(33,28,26,.14);
  --shadow:0 16px 36px rgba(41,31,25,.09);
  --soft-shadow:0 8px 22px rgba(41,31,25,.06);
  --radius:12px;
  --container:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Helvetica Neue",Arial,Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#fbfaf7 0%,#f4f0ea 50%,#fbfaf7 100%);
  line-height:1.65;
  text-rendering:optimizeLegibility;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
p{margin:0 0 1rem}
.container{width:min(calc(100% - 40px),var(--container));margin:0 auto}

.topbar{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(251,250,247,.94);
  border-bottom:1px solid rgba(34,23,19,.1);
  backdrop-filter:blur(18px);
}
.topbar-inner{display:flex;align-items:center;justify-content:space-between;min-height:72px;gap:24px}
.brand{
  font-size:1.28rem;
  font-weight:720;
  letter-spacing:.005em;
}
.brand span{color:var(--brand)}
.nav{display:flex;align-items:center;gap:20px}
.nav a{
  color:var(--muted);
  font-size:.92rem;
  font-weight:600;
  transition:color .18s ease,border-color .18s ease,background .18s ease;
}
.nav a:not(.btn){border-bottom:1px solid transparent;padding:6px 0}
.nav a:not(.btn):hover{color:var(--brand);border-bottom-color:rgba(143,36,32,.45)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 22px;
  border:1px solid rgba(143,36,32,.18);
  border-radius:10px;
  background:var(--brand);
  color:#fff;
  font-weight:650;
  letter-spacing:.01em;
  box-shadow:0 8px 18px rgba(143,36,32,.13);
  transition:transform .18s ease,box-shadow .18s ease,background .18s ease;
}
.btn:hover{transform:translateY(-1px);background:#781f1c;box-shadow:0 10px 22px rgba(143,36,32,.16)}
.btn-secondary,.btn-outline{
  background:rgba(255,255,255,.62);
  color:var(--brand-dark);
  border-color:rgba(66,25,22,.18);
  box-shadow:none;
}
.btn-secondary:hover,.btn-outline:hover{background:#fff;color:var(--brand);box-shadow:var(--soft-shadow)}
.btn-small{min-height:40px;padding:0 17px;font-size:.88rem}

.hero{
  position:relative;
  overflow:hidden;
  padding:70px 0 58px;
  background:linear-gradient(180deg,#fbfaf7 0%,#f2ece4 100%);
}
.hero:before{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:1px;
  background:rgba(33,28,26,.12);
}
.hero-overlay{display:none}
.hero-grid{position:relative;display:grid;grid-template-columns:minmax(0,1.02fr) minmax(340px,.98fr);gap:54px;align-items:center}
.hero-copy{padding:12px 0}
.eyebrow,.section-kicker{
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin:0 0 16px;
  color:var(--brand);
  font-size:.75rem;
  font-weight:760;
  letter-spacing:.13em;
  text-transform:uppercase;
}
.eyebrow:before,.section-kicker:before{
  content:"";
  width:28px;
  height:1px;
  background:currentColor;
  opacity:.65;
}
.center .section-kicker:after{
  content:"";
  width:28px;
  height:1px;
  background:currentColor;
  opacity:.65;
}
.light{color:#efcfad}
h1,h2,h3{
  margin:0 0 18px;
  font-family:inherit;
  font-weight:650;
  line-height:1.08;
  letter-spacing:-.006em;
}
h1{max-width:14ch;font-size:clamp(2.55rem,4.7vw,4.75rem)}
h2{font-size:clamp(1.95rem,3.15vw,3.15rem)}
h3{font-size:1.32rem;line-height:1.18;letter-spacing:-.01em}
.lead{max-width:63ch;color:#5f5752;font-size:1.13rem;line-height:1.78}
.cta-row{display:flex;flex-wrap:wrap;gap:13px;margin:31px 0 28px}
.rating-line{margin-top:14px;color:var(--muted);font-size:.95rem}
.hero-bullets{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:11px;
  list-style:none;
  margin:28px 0 0;
  padding:0;
}
.hero-bullets li,.check{
  position:relative;
  padding:14px 16px 14px 38px;
  border:1px solid rgba(66,25,22,.13);
  border-radius:12px;
  background:rgba(255,255,255,.78);
  box-shadow:0 6px 18px rgba(41,31,25,.045);
}
.hero-bullets li:before,.check:before{
  content:"";
  position:absolute;
  left:17px;
  top:22px;
  width:8px;
  height:8px;
  border-radius:2px;
  background:var(--gold);
}
.hero-image-card{
  position:relative;
  padding:12px;
  border:1px solid rgba(66,25,22,.15);
  border-radius:16px;
  background:#fff;
  box-shadow:var(--shadow);
}
.hero-image-card:after{display:none}
.image-caption{
  position:absolute;
  left:26px;
  top:25px;
  z-index:2;
  padding:9px 13px;
  border:1px solid rgba(255,255,255,.42);
  border-radius:8px;
  background:rgba(33,28,26,.68);
  color:#fff8ef;
  font-size:.78rem;
  font-weight:650;
  backdrop-filter:blur(10px);
}
.hero-image-card img{width:100%;max-height:720px;object-fit:cover;border-radius:10px;background:#efe9df}

.trust{padding:28px 0 0}
.trust-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.trust-grid>div{
  min-height:100%;
  padding:21px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:rgba(255,255,255,.86);
  box-shadow:var(--soft-shadow);
}
.trust-grid strong{display:block;margin-bottom:7px;font-size:1.05rem;line-height:1.25}
.trust-grid span{display:block;color:var(--muted);font-size:.95rem}

.section{padding:100px 0}
.section:nth-of-type(odd):not(.hero):not(.dark){background:rgba(255,255,255,.42)}
.accent{
  background:#f1ece5;
}
.dark{
  background:#2b1a18;
  color:#fff9f0;
}
.dark p{color:rgba(255,249,240,.82)}
.dark .btn{background:#fff7ec;color:var(--brand-dark);box-shadow:0 12px 26px rgba(0,0,0,.18)}
.dark .btn:hover{background:#fff;color:var(--brand)}
.review-quote{margin-top:28px;font-style:italic}
.review-source{margin-top:4px;font-size:.85rem;opacity:.8}
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center}
.grid-2 p,.section-head p{color:var(--muted);font-size:1.02rem}
.rounded{border-radius:14px}
.shadow{box-shadow:var(--shadow)}
.image-stack{position:relative}
.image-stack img,.image-panel img,.size-layout>img{
  border:1px solid rgba(66,25,22,.12);
  object-fit:cover;
}
.note-card{
  position:absolute;
  right:-18px;
  bottom:-24px;
  max-width:315px;
  padding:22px;
  border:1px solid rgba(66,25,22,.12);
  border-radius:12px;
  background:rgba(255,255,255,.96);
  box-shadow:var(--shadow);
}
.note-card p{margin:.45rem 0 0;color:var(--muted)}
.check-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin-top:28px}
.image-panel{overflow:hidden;border-radius:14px;box-shadow:var(--shadow);background:#201512}
.image-panel img{width:100%;height:100%;min-height:390px}
.large{min-height:440px}
.text-link{
  color:var(--brand);
  font-weight:760;
  text-decoration:underline;
  text-decoration-thickness:1px;
  text-underline-offset:4px;
}
.text-link:hover{color:#6f1d1a}
.section-head{max-width:850px;margin:0 auto 44px}
.center{text-align:center}
.center .section-kicker{justify-content:center}
.size-layout{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(330px,.95fr);gap:30px;align-items:start}
.size-card{
  padding:31px;
  border:1px solid var(--line);
  border-radius:14px;
  background:rgba(255,255,255,.9);
  box-shadow:var(--soft-shadow);
}
.card-note{margin:0 0 16px;color:var(--muted);font-size:.95rem}
.small-note{color:var(--muted);font-size:.88rem}
.size-list{list-style:none;margin:20px 0 0;padding:0}
.size-list li{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
  padding:15px 0;
  border-bottom:1px solid rgba(34,23,19,.1);
}
.size-list li:last-child{border-bottom:none}
.size-list strong{color:var(--brand);font-size:1.05rem;white-space:nowrap}
.muted{color:var(--muted)}
.gallery-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.gallery-card{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:14px;
  background:rgba(255,255,255,.9);
  box-shadow:var(--soft-shadow);
}
.gallery-card img{width:100%;aspect-ratio:4/3;object-fit:cover;filter:saturate(.95) contrast(1.02)}
.gallery-copy{padding:20px}
.gallery-copy p{color:var(--muted);font-size:.95rem}
.faq-list{max-width:930px;margin:0 auto;display:grid;gap:13px}
.faq-list details{
  padding:20px 22px;
  border:1px solid var(--line);
  border-radius:12px;
  background:rgba(255,255,255,.9);
  box-shadow:0 10px 28px rgba(54,30,20,.055);
}
.faq-list summary{
  cursor:pointer;
  list-style:none;
  position:relative;
  padding-right:34px;
  font-weight:760;
}
.faq-list summary::-webkit-details-marker{display:none}
.faq-list summary:after{
  content:"+";
  position:absolute;
  right:2px;
  top:-8px;
  color:var(--brand);
  font-size:1.45rem;
  font-weight:650;
}
.faq-list details[open] summary:after{content:"-"}
.faq-list details p{margin:.9rem 0 0;color:var(--muted)}
.cta-final{padding-top:34px}
.cta-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  padding:38px;
  border:1px solid rgba(66,25,22,.13);
  border-radius:14px;
  background:
    linear-gradient(135deg,rgba(255,255,255,.98),rgba(238,232,223,.9)),
    var(--paper);
  box-shadow:var(--shadow);
}
.cta-actions{display:flex;flex-wrap:wrap;gap:12px}
.footer{
  padding:56px 0 76px;
  border-top:1px solid var(--line);
  background:#f0e8dd;
}
.footer-grid{display:grid;grid-template-columns:1.5fr .7fr;gap:30px}
.footer h3{margin:0 0 12px;font-family:inherit;font-size:.94rem;letter-spacing:.08em;text-transform:uppercase}
.footer p,.footer a{color:var(--muted)}
.footer ul{padding:0;margin:0;list-style:none}
.footer li+li{margin-top:7px}
.footer ul a{text-decoration:underline;text-underline-offset:4px}
.footer ul a:hover{color:var(--brand)}
.footer-brand{display:inline-block;margin-bottom:12px}

@media (max-width: 980px){
  .hero{padding:56px 0 46px}
  .hero-grid,.grid-2,.size-layout,.gallery-grid,.footer-grid{grid-template-columns:1fr}
  .hero-grid{gap:34px}
  .hero-bullets,.trust-grid,.check-grid{grid-template-columns:1fr}
  .nav a:not(.btn){display:none}
  .note-card{position:static;max-width:none;margin-top:14px}
  .cta-box{align-items:flex-start;flex-direction:column}
  .image-panel img{min-height:auto}
}
@media (max-width: 640px){
  .container{width:min(calc(100% - 28px),var(--container))}
  .topbar-inner{min-height:66px}
  .brand{font-size:1.28rem}
  .btn{width:100%;min-height:48px}
  .nav .btn{width:auto}
  .hero{padding:38px 0 34px}
  .eyebrow,.section-kicker{font-size:.69rem;letter-spacing:.105em}
  h1{max-width:11.5ch;font-size:clamp(2.45rem,13.2vw,3.35rem)}
  h2{font-size:clamp(1.85rem,9.2vw,2.55rem)}
  .lead{font-size:1.05rem}
  .cta-row{margin:25px 0 23px}
  .hero-bullets{margin-top:22px}
  .section{padding:74px 0}
  .hero-image-card{border-radius:22px}
  .hero-image-card:after{display:none}
  .image-caption{position:static;display:inline-flex;margin:0 0 10px;background:rgba(34,23,19,.72)}
  .trust-grid>div,.size-card,.cta-box{padding:22px}
  .size-list li{flex-direction:column;gap:3px}
  .size-list strong{white-space:normal}
}
