:root{
  --stone-900:#2b2620;
  --stone-800:#3a3327;
  --stone-700:#4d4537;
  --stone-500:#7a6f5c;
  --stone-300:#b89968;
  --sand-100:#f4eee3;
  --sand-200:#e9e0d0;
  --sand-300:#ddd0ba;
  --cream:#faf6ef;
  --ink:#2b2620;
  --accent:#a8794a;
  --radius:14px;
  --maxw:1140px;
  --serif:"Fraunces",Georgia,serif;
  --sans:"Archivo",system-ui,sans-serif;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--sans);
  color:var(--ink);
  background:var(--cream);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
.grain{position:fixed;inset:0;pointer-events:none;z-index:1;opacity:.035;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");}
.container{max-width:var(--maxw);margin:0 auto;padding:0 24px}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
em{font-style:italic}

/* Buttons */
.btn{display:inline-block;background:var(--stone-800);color:var(--sand-100);
  padding:14px 26px;border-radius:100px;font-weight:600;font-size:.95rem;
  border:1px solid var(--stone-800);cursor:pointer;transition:.25s;letter-spacing:.01em;}
.btn:hover{background:var(--stone-900);transform:translateY(-2px)}
.btn-ghost{background:transparent;color:var(--stone-800);border:1px solid var(--stone-300)}
.btn-ghost:hover{background:var(--sand-200)}
.btn-sm{padding:10px 18px;font-size:.85rem}
.btn-full{width:100%;text-align:center}

.eyebrow{font-size:.78rem;letter-spacing:.22em;text-transform:uppercase;
  color:var(--accent);font-weight:600;margin-bottom:14px}

/* Header */
.site-header{position:sticky;top:0;z-index:50;background:rgba(250,246,239,.85);
  backdrop-filter:blur(10px);border-bottom:1px solid var(--sand-200)}
.nav-wrap{display:flex;align-items:center;gap:30px;height:72px}
.brand{display:flex;align-items:center;gap:10px;font-family:var(--serif);
  font-size:1.25rem;font-weight:600}
.brand em{color:var(--accent);font-weight:400}
.nav-links{display:flex;gap:28px;margin-left:auto;font-size:.95rem;font-weight:500}
.nav-links a{color:var(--stone-700);transition:.2s}
.nav-links a:hover{color:var(--accent)}

/* Hero */
.hero{padding:70px 0 40px;position:relative;z-index:2}
.hero-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:50px;align-items:center}
.hero-text h1{font-family:var(--serif);font-weight:500;font-size:clamp(2.4rem,5vw,4.1rem);
  line-height:1.04;letter-spacing:-.01em;margin-bottom:22px}
.hero-text h1 em{color:var(--accent)}
.lead{font-size:1.12rem;color:var(--stone-700);max-width:30em;margin-bottom:30px}
.hero-cta{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:40px}
.hero-stats{display:flex;gap:36px;flex-wrap:wrap;border-top:1px solid var(--sand-300);padding-top:24px}
.hero-stats strong{font-family:var(--serif);font-size:1.9rem;display:block;line-height:1}
.hero-stats span{font-size:.82rem;color:var(--stone-500)}
.hero-img{border-radius:20px;overflow:hidden;box-shadow:0 30px 60px -20px rgba(43,38,32,.4)}
.hero-img img{width:100%;height:560px;object-fit:cover}
.hero-text>*{animation:rise .8s both}
.hero-text .eyebrow{animation-delay:.05s}
.hero-text h1{animation-delay:.15s}
.hero-text .lead{animation-delay:.25s}
.hero-text .hero-cta{animation-delay:.35s}
.hero-text .hero-stats{animation-delay:.45s}
.hero-img{animation:rise 1s .3s both}
@keyframes rise{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:none}}

/* Band */
.band{background:var(--stone-800);color:var(--sand-200);position:relative;z-index:2}
.band-row{display:flex;gap:18px;justify-content:center;flex-wrap:wrap;
  padding:18px 0;font-family:var(--serif);font-size:1.05rem;letter-spacing:.03em}
.band-row span:nth-child(even){color:var(--stone-300)}

/* Sections */
.section{padding:90px 0;position:relative;z-index:2}
.section-alt{background:var(--sand-100)}
.section-head{max-width:36em;margin:0 auto 50px;text-align:center}
.section-head h2,.method-text h2,.contact-info h2{font-family:var(--serif);font-weight:500;
  font-size:clamp(1.8rem,3.5vw,2.6rem);line-height:1.1;letter-spacing:-.01em}
.section-sub{color:var(--stone-600,#5a5142);margin-top:14px;color:var(--stone-500)}

/* Cards */
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:26px}
.card{background:var(--cream);border:1px solid var(--sand-200);border-radius:var(--radius);
  overflow:hidden;transition:.3s}
.card:hover{transform:translateY(-6px);box-shadow:0 24px 40px -24px rgba(43,38,32,.45)}
.card-img{height:200px;overflow:hidden}
.card-img img{width:100%;height:100%;object-fit:cover;transition:.5s}
.card:hover .card-img img{transform:scale(1.06)}
.card h3{font-family:var(--serif);font-size:1.35rem;font-weight:500;margin:22px 24px 10px}
.card>p{margin:0 24px 16px;color:var(--stone-700)}
.card ul{margin:0 24px 26px;padding-left:18px;color:var(--stone-500);font-size:.92rem}
.card li{margin-bottom:6px}

/* Method */
.method-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:54px;align-items:center}
.method-img{border-radius:20px;overflow:hidden;box-shadow:0 24px 48px -24px rgba(43,38,32,.4)}
.method-img img{width:100%;height:540px;object-fit:cover}
.method-text h2{margin-bottom:30px}
.principle{display:flex;gap:20px;margin-bottom:26px}
.principle .num{font-family:var(--serif);font-size:1.5rem;color:var(--accent);min-width:42px}
.principle h3{font-size:1.15rem;margin-bottom:4px;font-weight:600}
.principle p{color:var(--stone-700);font-size:.96rem}

/* Pricing */
.pricing{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;align-items:start}
.plan{background:var(--cream);border:1px solid var(--sand-200);border-radius:var(--radius);
  padding:34px 28px;position:relative;transition:.3s}
.plan:hover{box-shadow:0 20px 40px -24px rgba(43,38,32,.4)}
.plan.featured{background:var(--stone-800);color:var(--sand-100);border-color:var(--stone-800);transform:scale(1.03)}
.plan.featured h3,.plan.featured .price{color:var(--sand-100)}
.plan.featured li{color:var(--sand-200)}
.tag{position:absolute;top:-12px;left:28px;background:var(--accent);color:#fff;
  font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;padding:5px 12px;border-radius:100px;font-weight:600}
.plan h3{font-family:var(--serif);font-size:1.4rem;font-weight:500;margin-bottom:8px}
.price{font-family:var(--serif);font-size:2.5rem;font-weight:600;margin-bottom:20px;color:var(--stone-900)}
.price span{font-size:.95rem;font-family:var(--sans);font-weight:400;color:var(--stone-500)}
.plan.featured .price span{color:var(--stone-300)}
.plan ul{list-style:none;margin-bottom:26px}
.plan li{padding:8px 0 8px 24px;position:relative;font-size:.94rem;border-bottom:1px solid rgba(120,111,92,.15)}
.plan li::before{content:"—";position:absolute;left:0;color:var(--accent)}
.plan.featured li::before{color:var(--stone-300)}
.pricing-note{text-align:center;margin-top:36px;color:var(--stone-500);font-size:.92rem}
.pricing-note a{color:var(--accent);text-decoration:underline}

/* Contact */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:54px;align-items:start}
.contact-info h2{margin-bottom:18px}
.contact-info>p{color:var(--stone-700);margin-bottom:28px}
.contact-list{display:grid;grid-template-columns:auto;gap:4px}
.contact-list dt{font-size:.78rem;letter-spacing:.14em;text-transform:uppercase;
  color:var(--accent);font-weight:600;margin-top:16px}
.contact-list dd{font-size:1.02rem;color:var(--stone-800)}
.contact-list a:hover{color:var(--accent)}
.contact-form{background:var(--cream);border:1px solid var(--sand-200);
  border-radius:var(--radius);padding:34px}
.field{margin-bottom:18px}
.field label{display:block;font-size:.85rem;font-weight:600;margin-bottom:6px;color:var(--stone-700)}
.field input,.field select,.field textarea{width:100%;padding:12px 14px;
  border:1px solid var(--sand-300);border-radius:10px;font-family:inherit;font-size:.98rem;
  background:var(--cream);color:var(--ink);transition:.2s}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;
  border-color:var(--accent);box-shadow:0 0 0 3px rgba(168,121,74,.12)}
.field textarea{resize:vertical}
.check{display:flex;gap:10px;align-items:flex-start;font-size:.88rem;color:var(--stone-700);margin-bottom:22px}
.check a{color:var(--accent);text-decoration:underline}
.check input{margin-top:4px}
.form-msg{margin-top:14px;font-size:.92rem;font-weight:600;min-height:1.2em}
.form-msg.ok{color:#4d7a4d}
.form-msg.err{color:#a8523a}

/* Footer */
.site-footer{background:var(--stone-900);color:var(--sand-200);padding:60px 0 0;position:relative;z-index:2}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:40px;padding-bottom:44px}
.footer-brand span,.footer-brand em{font-family:var(--serif);font-size:1.3rem}
.footer-brand em{color:var(--stone-300);font-weight:400}
.footer-brand p{margin-top:12px;color:var(--stone-500);max-width:24em}
.footer-col h4{font-size:.82rem;letter-spacing:.14em;text-transform:uppercase;
  color:var(--stone-300);margin-bottom:14px}
.footer-col a{display:block;color:var(--sand-200);padding:5px 0;font-size:.94rem;transition:.2s}
.footer-col a:hover{color:#fff;padding-left:4px}
.footer-bottom{border-top:1px solid rgba(184,153,104,.2);padding:22px 0 30px}
.footer-bottom p{font-size:.85rem;color:var(--stone-500)}

/* Legal pages */
.legal{max-width:760px;margin:0 auto;padding:60px 24px 90px;position:relative;z-index:2}
.legal h1{font-family:var(--serif);font-weight:500;font-size:2.4rem;margin-bottom:8px}
.legal .updated{color:var(--stone-500);font-size:.9rem;margin-bottom:34px}
.legal h2{font-family:var(--serif);font-weight:500;font-size:1.4rem;margin:34px 0 12px}
.legal p,.legal li{color:var(--stone-700);margin-bottom:12px}
.legal ul{padding-left:22px}
.legal a{color:var(--accent);text-decoration:underline}
.back-link{display:inline-block;margin-bottom:30px;color:var(--accent);font-weight:600;font-size:.92rem}

/* Cookie banner */
.cookie-banner{position:fixed;bottom:18px;left:50%;transform:translateX(-50%);
  width:calc(100% - 36px);max-width:760px;background:var(--stone-900);color:var(--sand-200);
  padding:20px 24px;border-radius:var(--radius);z-index:100;display:flex;
  gap:20px;align-items:center;box-shadow:0 20px 50px -10px rgba(0,0,0,.5);flex-wrap:wrap}
.cookie-banner p{font-size:.9rem;flex:1;min-width:240px}
.cookie-banner a{color:var(--stone-300);text-decoration:underline}
.cookie-actions{display:flex;gap:10px}

/* Responsive */
@media(max-width:900px){
  .hero-grid,.method-grid,.contact-grid{grid-template-columns:1fr}
  .hero-img{order:-1}.hero-img img{height:380px}
  .method-img img{height:380px}
  .cards,.pricing{grid-template-columns:1fr}
  .plan.featured{transform:none}
  .footer-grid{grid-template-columns:1fr;gap:30px}
  .nav-links{display:none}
}
@media(max-width:560px){
  .hero{padding:40px 0 20px}
  .section{padding:60px 0}
  .hero-stats{gap:24px}
  .cookie-banner{flex-direction:column;align-items:stretch}
  .cookie-actions{justify-content:stretch}
  .cookie-actions .btn{flex:1;text-align:center}
}
