:root{
  --cream:#f5ecd9;
  --cream-2:#efe4cc;
  --terracotta:#c14a2b;
  --terracotta-dark:#a13d22;
  --ink:#2a1e16;
  --muted:#4a382c;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
html,body{background:var(--cream);color:var(--ink);font-family:'Inter',system-ui,sans-serif;line-height:1.6;-webkit-font-smoothing:antialiased}
img{max-width:100%;display:block}
a{color:inherit}

/* ---------- HAMBURGER + DRAWER ---------- */
.nav-toggle{position:absolute;opacity:0;pointer-events:none}
.hamburger{
  position:fixed;top:1.5rem;left:1.5rem;z-index:60;
  width:52px;height:52px;border-radius:50%;
  background:var(--terracotta);color:var(--cream);
  display:flex;flex-direction:column;justify-content:center;align-items:center;gap:5px;
  cursor:pointer;box-shadow:0 6px 20px rgba(0,0,0,.18);
  transition:background .2s,transform .2s;
}
.hamburger:hover{background:var(--terracotta-dark)}
.hamburger span{display:block;width:22px;height:2px;background:var(--cream);border-radius:2px;transition:transform .25s,opacity .25s}
.nav-toggle:checked ~ .hamburger span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-toggle:checked ~ .hamburger span:nth-child(2){opacity:0}
.nav-toggle:checked ~ .hamburger span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.nav-backdrop{
  position:fixed;inset:0;background:rgba(42,30,22,.45);
  opacity:0;pointer-events:none;transition:opacity .3s;z-index:40;
}
.nav-toggle:checked ~ .nav-backdrop{opacity:1;pointer-events:auto}

.drawer{
  position:fixed;top:0;left:0;bottom:0;z-index:50;
  width:300px;max-width:85vw;
  background:var(--cream);
  border-right:6px solid var(--terracotta);
  padding:5.5rem 2.2rem 2rem;
  transform:translateX(-105%);
  transition:transform .35s cubic-bezier(.7,0,.2,1);
  display:flex;flex-direction:column;
  box-shadow:8px 0 30px rgba(0,0,0,.08);
}
.nav-toggle:checked ~ .drawer{transform:translateX(0)}
.drawer__brand{font-family:'DM Serif Display',serif;font-size:1.6rem;color:var(--terracotta);font-style:italic}
.drawer__rule{display:block;width:48px;height:3px;background:var(--terracotta);margin:1rem 0 2rem;border-radius:2px}
.drawer ul{list-style:none;display:flex;flex-direction:column;gap:.3rem}
.drawer a{
  display:block;padding:.8rem 0;
  font-family:'DM Serif Display',serif;font-size:1.4rem;
  color:var(--ink);text-decoration:none;
  border-bottom:1px solid rgba(193,74,43,.18);
  transition:color .2s,padding-left .2s;
}
.drawer a:hover{color:var(--terracotta);padding-left:.4rem}
.drawer__footer{margin-top:auto;font-size:.85rem;color:var(--muted);line-height:1.7;padding-top:2rem}

/* ---------- COMMON ---------- */
.eyebrow{font-size:.85rem;letter-spacing:.22em;text-transform:uppercase;color:var(--terracotta);font-weight:600;margin-bottom:1.5rem}
.eyebrow.light{color:var(--cream)}
.center{text-align:center;display:block;margin-left:auto;margin-right:auto}

.display{font-family:'DM Serif Display',serif;font-weight:400;font-size:clamp(2.4rem,5.5vw,4.6rem);line-height:1.05;color:var(--ink);letter-spacing:-.01em}
.display em{font-style:italic;color:var(--terracotta)}
.display.light{color:var(--cream)}
.display.light em{color:#f3d8c9}

.rule{display:block;width:120px;height:3px;background:var(--terracotta);margin:1.8rem 0;border-radius:2px}
.rule.center{margin:1.8rem auto}
.rule.light{background:var(--cream)}

.btn{display:inline-block;background:var(--terracotta);color:var(--cream);padding:1.1rem 2.5rem;border-radius:6px;font-weight:600;letter-spacing:.04em;text-decoration:none;transition:background .2s;margin-top:1.5rem}
.btn:hover{background:var(--terracotta-dark)}

section{padding:6rem clamp(1.5rem,5vw,5rem);scroll-margin-top:1rem}

/* ---------- HERO ---------- */
.hero{display:grid;grid-template-columns:1.1fr 1fr;gap:0;padding:0;align-items:stretch;border-left:14px solid var(--terracotta)}
.hero__text{padding:6rem clamp(2rem,5vw,5rem) 4rem;display:flex;flex-direction:column;justify-content:center}
.hero__image{overflow:hidden;background:#2a1e16}
.hero__image img{width:100%;height:100%;min-height:100%;object-fit:cover;object-position:center 25%;display:block}
.hero .lead{font-style:italic;color:var(--muted);font-size:1.05rem;max-width:480px}

/* ---------- ABOUT ---------- */
.about{display:grid;grid-template-columns:1fr 1.2fr;gap:0;padding:0;background:var(--cream);align-items:stretch}
.about__image{overflow:hidden;background:#1a1410}
.about__image img{width:100%;height:100%;min-height:100%;object-fit:cover;object-position:center 30%;display:block}
.about__text{padding:5rem clamp(2rem,5vw,5rem);display:flex;flex-direction:column;justify-content:center}
.about__text p{margin-bottom:1rem;color:var(--muted)}
.accent{color:var(--terracotta);font-style:italic;font-family:'DM Serif Display',serif;font-size:1.25em}

/* ---------- OFFER ---------- */
.offer{background:var(--cream-2)}
.offer__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2.5rem;margin-top:4rem;max-width:1200px;margin-left:auto;margin-right:auto}
.card{background:var(--cream);padding:2.5rem 2rem;border-radius:8px;position:relative;box-shadow:0 2px 20px rgba(42,30,22,.05)}
.card .num{display:inline-flex;align-items:center;justify-content:center;width:48px;height:48px;border-radius:50%;background:var(--terracotta);color:var(--cream);font-family:'DM Serif Display',serif;font-size:1.4rem;margin-bottom:1.2rem}
.card h3{font-family:'DM Serif Display',serif;font-size:1.5rem;margin-bottom:.8rem;color:var(--ink)}
.card p{color:var(--muted)}

/* ---------- VIDEO ---------- */
.video-section{background:var(--cream);text-align:center}
.video-embed{max-width:900px;margin:3rem auto 0;aspect-ratio:16/9;position:relative;border-radius:8px;overflow:hidden;box-shadow:0 10px 40px rgba(42,30,22,.12)}
.video-embed iframe{position:absolute;inset:0;width:100%;height:100%;border:0}

/* ---------- WHY ---------- */
.why{display:grid;grid-template-columns:1.3fr 1fr;gap:0;padding:0;align-items:stretch}
.why__text{padding:5rem clamp(2rem,5vw,5rem);display:flex;flex-direction:column;justify-content:center}
.why ul{list-style:none;margin-top:2.5rem;display:grid;gap:1.8rem}
.why li{padding-left:2rem;position:relative}
.why li::before{content:"";position:absolute;left:0;top:.4rem;width:14px;height:14px;border-radius:50%;background:var(--terracotta)}
.why li strong{display:block;font-size:1.15rem;margin-bottom:.3rem;color:var(--ink)}
.why li span{color:var(--muted)}
.why__image{overflow:hidden;background:var(--terracotta)}
.why__image img{width:100%;height:100%;min-height:100%;object-fit:cover;object-position:65% 35%;display:block}

/* ---------- TESTIMONIALS ---------- */
.testi{background:var(--cream)}
.testi__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;margin-top:3.5rem;max-width:1200px;margin-left:auto;margin-right:auto}
.testi figure{background:var(--cream-2);padding:2.2rem;border-radius:8px;border-top:4px solid var(--terracotta)}
.testi blockquote{font-style:italic;color:var(--muted);margin-bottom:1.2rem;font-size:.98rem}
.testi figcaption{font-weight:600;color:var(--terracotta);font-size:.9rem}

/* ---------- CONTACT ---------- */
.contact{background:var(--terracotta);color:var(--cream);text-align:center;padding-top:7rem;padding-bottom:5rem}
.contact__lines{margin:2rem auto;font-size:1.15rem;line-height:2.2}
.contact__lines a{text-decoration:none;border-bottom:1px solid rgba(245,236,217,.4);transition:border-color .2s}
.contact__lines a:hover{border-color:var(--cream)}
.tagline{margin-top:3rem;font-weight:600;letter-spacing:.02em}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px){
  .hero,.about,.why{grid-template-columns:1fr}
  .hero{border-left-width:8px}
  .hero__image,.about__image,.why__image{height:auto}
  .hero__image img,.about__image img,.why__image img{height:auto;min-height:0;aspect-ratio:4/3}
  .about__image{order:-1}
  .offer__grid,.testi__grid{grid-template-columns:1fr}
  section{padding:4rem 1.5rem}
  .hero__text{padding:6rem 1.5rem 3rem}
  .about__text,.why__text{padding:3rem 1.5rem}
  .hamburger{top:1rem;left:1rem;width:46px;height:46px}
}
