:root{
  --ivory:#F4F1EA;
  --ivory-deep:#EBE6DA;
  --ink:#1F2A24;
  --ink-soft:#3A4640;
  --terracotta:#B4632F;
  --terracotta-deep:#8F4B22;
  --line:#D5CEBE;
  --paper:#FBFAF6;
  --serif:'Playfair Display', Georgia, 'Times New Roman', serif;
  --body:'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --maxw:1240px;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--body);
  color:var(--ink);
  background:var(--ivory);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  font-size:17px;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4{font-family:var(--serif);font-weight:700;line-height:1.08;letter-spacing:-.01em}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 28px}
.eyebrow{
  font-family:var(--body);
  text-transform:uppercase;
  letter-spacing:.28em;
  font-size:12px;
  font-weight:600;
  color:var(--terracotta);
}
.btn{
  display:inline-block;
  font-family:var(--body);
  font-weight:600;
  font-size:15px;
  letter-spacing:.02em;
  padding:15px 30px;
  border-radius:2px;
  cursor:pointer;
  border:1.5px solid var(--ink);
  background:var(--ink);
  color:var(--ivory);
  transition:.25s ease;
}
.btn:hover{background:var(--terracotta);border-color:var(--terracotta);transform:translateY(-2px)}
.btn-ghost{background:transparent;color:var(--ink)}
.btn-ghost:hover{background:var(--ink);color:var(--ivory);border-color:var(--ink)}

/* Header */
header.site{
  position:sticky;top:0;z-index:50;
  background:rgba(244,241,234,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{display:flex;align-items:center;justify-content:space-between;height:78px}
.brand{display:flex;align-items:center;gap:12px;font-family:var(--serif);font-size:24px;font-weight:700}
.brand .mark{width:38px;height:38px}
.brand small{display:block;font-family:var(--body);font-size:10px;letter-spacing:.22em;text-transform:uppercase;color:var(--terracotta);font-weight:600;margin-top:2px}
.nav-links{display:flex;gap:34px;align-items:center}
.nav-links a{font-size:15px;font-weight:500;position:relative;padding:4px 0}
.nav-links a::after{content:'';position:absolute;left:0;bottom:-2px;width:0;height:1.5px;background:var(--terracotta);transition:.25s}
.nav-links a:hover::after{width:100%}
.nav-cta{padding:11px 22px;font-size:14px}
.burger{display:none;background:none;border:none;cursor:pointer;flex-direction:column;gap:5px}
.burger span{width:26px;height:2px;background:var(--ink);display:block;transition:.3s}

/* Hero */
.hero{padding:72px 0 90px;position:relative}
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:60px;align-items:center}
.hero h1{font-size:clamp(42px,6vw,82px);margin:18px 0 26px}
.hero h1 em{font-style:italic;color:var(--terracotta)}
.hero p.lead{font-size:19px;color:var(--ink-soft);max-width:520px;margin-bottom:34px}
.hero-actions{display:flex;gap:16px;flex-wrap:wrap}
.hero-figure{position:relative;min-width:0}
.hero-figure img{border-radius:3px;width:100%;height:560px;object-fit:cover;filter:saturate(.92);background:var(--ivory-deep)}
.hero-badge{
  position:absolute;left:-26px;bottom:38px;
  background:var(--paper);
  border:1px solid var(--line);
  padding:22px 26px;
  border-radius:3px;
  box-shadow:0 18px 50px rgba(31,42,36,.12);
  max-width:240px;
}
.hero-badge .num{font-family:var(--serif);font-size:42px;color:var(--terracotta);line-height:1}
.hero-badge .lab{font-size:13px;color:var(--ink-soft);margin-top:6px}

/* Marquee stats */
.stats{border-top:1px solid var(--line);border-bottom:1px solid var(--line);background:var(--ivory-deep)}
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr)}
.stat{padding:38px 28px;border-right:1px solid var(--line)}
.stat:last-child{border-right:none}
.stat .n{font-family:var(--serif);font-size:46px;color:var(--ink)}
.stat .l{font-size:13px;text-transform:uppercase;letter-spacing:.14em;color:var(--ink-soft);margin-top:6px}

/* Section */
section.block{padding:96px 0}
.sec-head{max-width:680px;margin-bottom:54px}
.sec-head h2{font-size:clamp(32px,4.4vw,52px);margin:16px 0 18px}
.sec-head p{color:var(--ink-soft);font-size:18px}

/* Services */
.services{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.service{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:3px;
  overflow:hidden;
  display:flex;flex-direction:column;
  transition:.3s;
}
.service:hover{transform:translateY(-6px);box-shadow:0 22px 50px rgba(31,42,36,.12);border-color:var(--terracotta)}
.service img{height:210px;object-fit:cover;width:100%}
.service .body{padding:28px 26px 30px;display:flex;flex-direction:column;flex:1}
.service .idx{font-family:var(--serif);font-size:15px;color:var(--terracotta);letter-spacing:.1em}
.service h3{font-size:24px;margin:10px 0 12px}
.service p{color:var(--ink-soft);font-size:15.5px;flex:1}
.service .more{margin-top:18px;font-weight:600;font-size:14px;color:var(--terracotta);letter-spacing:.04em}

/* Approach split */
.split{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}
.split img{border-radius:3px;height:520px;object-fit:cover;width:100%}
.steps{list-style:none;margin-top:14px}
.steps li{display:flex;gap:22px;padding:24px 0;border-bottom:1px solid var(--line)}
.steps li:last-child{border-bottom:none}
.steps .s-n{font-family:var(--serif);font-size:30px;color:var(--terracotta);min-width:48px}
.steps h4{font-size:20px;margin-bottom:6px;font-family:var(--serif)}
.steps p{color:var(--ink-soft);font-size:15px}

/* Pricing */
.pricing{background:var(--ink);color:var(--ivory)}
.pricing .eyebrow{color:#E0975F}
.pricing .sec-head h2{color:var(--ivory)}
.pricing .sec-head p{color:#C3CBC5}
.plans{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;align-items:stretch}
.plan{
  background:#27332D;
  border:1px solid #36443D;
  border-radius:4px;
  padding:38px 32px;
  display:flex;flex-direction:column;
}
.plan.feature{background:#2E3A33;border-color:var(--terracotta);position:relative}
.plan.feature .tag{position:absolute;top:-13px;left:32px;background:var(--terracotta);color:#fff;font-size:11px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;padding:6px 14px;border-radius:2px}
.plan h3{font-size:26px;color:var(--ivory)}
.plan .price{font-family:var(--serif);font-size:48px;margin:18px 0 4px;color:var(--ivory)}
.plan .price span{font-size:17px;color:#A9B3AC;font-family:var(--body)}
.plan .desc{color:#B6BFB8;font-size:14.5px;min-height:46px;margin-bottom:22px}
.plan ul{list-style:none;margin-bottom:30px;flex:1}
.plan ul li{padding:9px 0;font-size:15px;color:#DCE2DC;border-bottom:1px solid #36443D;display:flex;gap:10px}
.plan ul li::before{content:'—';color:var(--terracotta)}
.plan .btn{width:100%;text-align:center;background:var(--ivory);color:var(--ink);border-color:var(--ivory)}
.plan .btn:hover{background:var(--terracotta);color:#fff;border-color:var(--terracotta)}
.plan.feature .btn{background:var(--terracotta);color:#fff;border-color:var(--terracotta)}
.plan.feature .btn:hover{background:var(--terracotta-deep);border-color:var(--terracotta-deep)}
.price-note{text-align:center;margin-top:34px;color:#A9B3AC;font-size:14px}

/* Testimonial */
.quote-block{background:var(--ivory-deep);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.quote-block .wrap{padding-top:80px;padding-bottom:80px}
blockquote{max-width:880px;margin:0 auto;text-align:center}
blockquote p{font-family:var(--serif);font-size:clamp(26px,3.6vw,40px);line-height:1.28;font-style:italic}
blockquote footer{margin-top:26px;font-size:15px;color:var(--ink-soft);font-style:normal}
blockquote footer strong{display:block;font-family:var(--serif);font-size:19px;color:var(--ink);font-style:normal;margin-bottom:2px}

/* Contact */
.contact-grid{display:grid;grid-template-columns:1fr 1.1fr;gap:64px}
.contact-info h2{font-size:clamp(30px,4vw,46px);margin:16px 0 22px}
.contact-info p{color:var(--ink-soft);margin-bottom:30px;font-size:17px}
.info-list{list-style:none}
.info-list li{display:flex;gap:16px;padding:18px 0;border-bottom:1px solid var(--line)}
.info-list .ic{font-family:var(--serif);color:var(--terracotta);font-size:22px}
.info-list .k{font-size:12px;text-transform:uppercase;letter-spacing:.16em;color:var(--ink-soft)}
.info-list .v{font-size:16px;font-weight:500}
form{background:var(--paper);border:1px solid var(--line);border-radius:4px;padding:38px 34px}
.field{margin-bottom:20px}
.field label{display:block;font-size:13px;font-weight:600;letter-spacing:.06em;text-transform:uppercase;margin-bottom:8px;color:var(--ink-soft)}
.field input,.field select,.field textarea{
  width:100%;padding:13px 15px;border:1px solid var(--line);border-radius:2px;
  font-family:var(--body);font-size:15px;background:#fff;color:var(--ink);
}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-color:var(--terracotta);box-shadow:0 0 0 3px rgba(180,99,47,.12)}
.field textarea{resize:vertical;min-height:120px}
.consent{display:flex;gap:12px;align-items:flex-start;font-size:13.5px;color:var(--ink-soft);margin-bottom:24px}
.consent input{width:18px;height:18px;margin-top:2px;flex-shrink:0}
.form-msg{display:none;margin-top:16px;padding:14px 16px;border-radius:3px;font-size:14.5px}
.form-msg.ok{display:block;background:#E3EDE5;border:1px solid #9DC0A6;color:#28553A}
.form-msg.err{display:block;background:#F3E1D8;border:1px solid #D0A187;color:#8F4B22}

/* Footer */
footer.site{background:var(--ink);color:#C3CBC5;padding:64px 0 32px}
.foot-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:48px;padding-bottom:42px;border-bottom:1px solid #36443D}
.foot-brand{font-family:var(--serif);font-size:26px;color:var(--ivory);display:flex;align-items:center;gap:12px;margin-bottom:16px}
.foot-brand .mark{width:36px;height:36px}
.foot-col p{font-size:14.5px;line-height:1.7}
.foot-col h5{font-family:var(--body);text-transform:uppercase;letter-spacing:.16em;font-size:12px;color:var(--ivory);margin-bottom:18px}
.foot-col ul{list-style:none}
.foot-col ul li{margin-bottom:11px}
.foot-col ul a{font-size:14.5px;transition:.2s}
.foot-col ul a:hover{color:var(--terracotta)}
.foot-bottom{display:flex;justify-content:space-between;gap:18px;flex-wrap:wrap;padding-top:26px;font-size:13px;color:#8E9991}

/* Legal pages */
.legal-hero{padding:64px 0 40px;border-bottom:1px solid var(--line)}
.legal-hero h1{font-size:clamp(34px,5vw,58px);margin-top:14px}
.legal-hero p{color:var(--ink-soft);margin-top:14px;max-width:620px}
.legal-body{padding:60px 0 90px;max-width:820px}
.legal-body h2{font-size:27px;margin:42px 0 14px}
.legal-body h3{font-size:20px;margin:28px 0 10px;font-family:var(--serif)}
.legal-body p,.legal-body li{color:var(--ink-soft);font-size:16.5px;margin-bottom:14px}
.legal-body ul{padding-left:22px;margin-bottom:14px}
.legal-body a{color:var(--terracotta);font-weight:600}
.legal-body .updated{font-size:14px;color:var(--ink-soft);font-style:italic}
.back-link{display:inline-block;margin-top:8px;color:var(--terracotta);font-weight:600;font-size:14px}

/* Cookie banner */
.cookie-banner{
  position:fixed;left:24px;right:24px;bottom:24px;z-index:100;
  background:var(--ink);color:var(--ivory);
  border-radius:5px;padding:24px 28px;
  box-shadow:0 20px 60px rgba(0,0,0,.3);
  display:none;gap:26px;align-items:center;justify-content:space-between;flex-wrap:wrap;
  max-width:980px;margin:0 auto;
}
.cookie-banner.show{display:flex}
.cookie-banner p{font-size:14.5px;color:#D4DAD4;flex:1;min-width:260px}
.cookie-banner p a{color:var(--terracotta);font-weight:600;text-decoration:underline}
.cookie-actions{display:flex;gap:12px;flex-wrap:wrap}
.cookie-actions .btn{padding:12px 22px;font-size:14px}
.cookie-actions .decline{background:transparent;color:var(--ivory);border-color:#4A574F}
.cookie-actions .decline:hover{background:#36443D;border-color:#36443D}
.cookie-actions .accept{background:var(--terracotta);border-color:var(--terracotta)}
.cookie-actions .accept:hover{background:var(--terracotta-deep);border-color:var(--terracotta-deep)}

@media(max-width:980px){
  .hero-grid,.split,.contact-grid{grid-template-columns:1fr;gap:42px}
  .hero-figure img{height:420px}
  .services,.plans{grid-template-columns:1fr 1fr}
  .stats-grid{grid-template-columns:1fr 1fr}
  .stat:nth-child(2){border-right:none}
  .foot-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:680px){
  body{font-size:16px}
  .nav-links{
    display:none;position:absolute;top:78px;left:0;right:0;
    flex-direction:column;background:var(--ivory);
    padding:22px 28px;gap:18px;border-bottom:1px solid var(--line);align-items:flex-start;
  }
  .nav-links.open{display:flex}
  .burger{display:flex}
  .services,.plans,.stats-grid,.foot-grid{grid-template-columns:1fr}
  .stat{border-right:none}
  .hero-badge{position:static;margin-top:18px;max-width:none}
  section.block{padding:64px 0}
  form{padding:28px 22px}
}
