@import url("https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,600,700,800,900&display=swap");

:root{
  --bg:#ffffff;
  --bg-soft:#f9f6f0;
  --text:#2B1E16;
  --muted:rgba(43,30,22,.62);
  --border:rgba(43,30,22,.12);

  --primary: rgb(119, 45, 8);
  --primary-hover: rgb(97, 36, 6);

  --mustard:#D4A321;
  --mustard2:#B88412;
  --cream:#FFF6E2;

  --radius:22px;
  --radius-lg:28px;
  --shadow:0 18px 45px rgba(43,30,22,.10);
  --shadow-sm:0 10px 24px rgba(43,30,22,.08);

  --sans:"Satoshi", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --container:1140px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--sans);
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{max-width:var(--container);margin:0 auto;padding:0 18px}

/* Accessibility */
.skip-link{
  position:absolute;left:-999px;top:12px;
  background:#fff;border:1px solid var(--border);
  border-radius:14px;padding:10px 12px;box-shadow:var(--shadow-sm);
  z-index:999;
}
.skip-link:focus{left:12px}

/* Type */
.kicker{
  display:inline-flex;align-items:center;gap:10px;
  font-weight:800;font-size:.92rem;
  color:rgba(43,30,22,.78);
  background:var(--bg-soft);
  border:1px solid var(--border);
  padding:8px 12px;border-radius:999px;
}
.display{
  font-weight:800;
  letter-spacing:-0.03em;
  line-height:1.05;
  font-size:clamp(2.25rem,4.5vw,3.9rem);
  margin:14px 0 10px;
}
.lead{font-size:1.08rem;color:var(--muted);max-width:64ch;margin:0 0 18px}
.h2{
  font-weight:800;
  letter-spacing:-0.02em;
  line-height:1.12;
  font-size:clamp(1.7rem,2.6vw,2.35rem);
  margin:0 0 10px;
}
.h3{font-weight:800;letter-spacing:-0.01em;margin:0 0 6px;font-size:1.05rem}
.small{font-size:.92rem}
.muted{color:var(--muted)}
.accent{color:var(--primary)}
.accent2{color:var(--mustard2)}

/* Header */
.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(43,30,22,.08);
}
.site-header.is-scrolled{box-shadow:0 14px 34px rgba(43,30,22,.10)}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;gap:12px;
}
.brand{display:flex;align-items:center;gap:10px}
.brand-mark{
  width:38px;height:38px;border-radius:14px;
  background: var(--primary);
  box-shadow:0 14px 28px rgba(119,45,8,.18);
}
.brand-name{font-weight:900;letter-spacing:-0.02em}

.nav{display:flex;align-items:center;gap:10px}
.nav a{
  font-weight:800;font-size:.95rem;
  color:rgba(43,30,22,.76);
  padding:10px 12px;border-radius:999px;
  border:1px solid transparent;
}
.nav a:hover{background:rgba(43,30,22,.06)}
/* No active/selected highlight on purpose */
.nav a.is-active{background:transparent;border:1px solid transparent}

.nav-toggle{
  display:none;
  width:44px;height:44px;border-radius:14px;
  background:#fff;border:1px solid var(--border);
  box-shadow:var(--shadow-sm);
}
.nav-toggle-lines{
  display:block;width:18px;height:2px;background:rgba(43,30,22,.8);
  margin:0 auto;position:relative;
}
.nav-toggle-lines::before,.nav-toggle-lines::after{
  content:"";position:absolute;left:0;width:18px;height:2px;background:rgba(43,30,22,.8);
}
.nav-toggle-lines::before{top:-6px}
.nav-toggle-lines::after{top:6px}

/* Buttons (NO gradients) */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:12px 18px;border-radius:999px;
  font-weight:800;letter-spacing:-0.01em;
  border:1px solid transparent;cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
  box-shadow:0 14px 28px rgba(43,30,22,.10);
  font-family:var(--sans);
}
.btn:hover{transform:translateY(-2px)}
.btn:active{transform:translateY(0);box-shadow:0 8px 16px rgba(43,30,22,.10)}

.btn-primary{
  background: var(--primary);
  color:#fff;
  border-color: var(--primary);
  box-shadow:0 16px 34px rgba(119,45,8,.18);
}
.btn-primary:hover{background: var(--primary-hover);border-color: var(--primary-hover)}

.btn-secondary{
  background: var(--mustard);
  color:#2B1E16;
  border-color: var(--mustard);
  box-shadow:0 16px 34px rgba(212,163,33,.20);
}
.btn-secondary:hover{background: var(--mustard2);border-color: var(--mustard2)}

.btn-ghost{
  background:#fff;border:1px solid rgba(43,30,22,.14);
  color:rgba(43,30,22,.88);
  box-shadow:var(--shadow-sm);
}
.btn-ghost:hover{background: var(--cream)}
.btn-block{width:100%}

/* Force primary button to stay white (text + icons), including header nav button */
.btn-primary,
.btn-primary:link,
.btn-primary:visited{
  color:#fff !important;
}
.btn-primary svg,
.btn-primary .icon,
.btn-primary use{
  color:#fff !important;
  stroke:#fff !important;
  fill:#fff !important;
}
/* Keep normal nav links dark, but never override CTA */
.nav a.btn-primary{
  color:#fff !important;
}

/* Sections */
.section{padding:76px 0}
.section.soft{
  background:var(--bg-soft);
  border-top:1px solid rgba(43,30,22,.06);
  border-bottom:1px solid rgba(43,30,22,.06);
}
.section-head{max-width:78ch;margin-bottom:18px}
.section-head.split{display:flex;align-items:flex-end;justify-content:space-between;gap:14px}

/* Hero */
.hero{padding:70px 0 40px}
.hero-grid{
  display:grid;grid-template-columns:1.1fr .9fr;
  gap:22px;align-items:start;
}
.hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:18px}
.hero-card{
  background:#fff;border:1px solid rgba(43,30,22,.12);
  border-radius:var(--radius-lg);padding:18px;
  box-shadow:var(--shadow);
}
.hero-card-top{
  display:flex;align-items:flex-start;gap:12px;
  background:var(--bg-soft);
  border:1px solid rgba(43,30,22,.10);
  border-radius:18px;padding:14px;
}
.pill-row{display:flex;flex-wrap:wrap;gap:10px;margin-top:12px}
.pill{
  font-weight:800;font-size:.86rem;
  background:#fff;border:1px solid rgba(43,30,22,.12);
  padding:8px 12px;border-radius:999px;
}
.kpi-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:14px}
.kpi{
  background:#fff;border:1px solid rgba(43,30,22,.10);
  border-radius:18px;padding:12px;box-shadow:var(--shadow-sm);
}
.kpi-label{font-size:.84rem;color:var(--muted)}
.kpi-value{font-weight:900;letter-spacing:-.01em}

/* Cards / grids */
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.card{
  background:#fff;border:1px solid rgba(43,30,22,.12);
  border-radius:var(--radius-lg);padding:22px;
  box-shadow:var(--shadow-sm);
}
.card-link{position:relative}
.card-link:hover{transform:translateY(-2px);transition:transform .18s ease}
.card-arrow{
  position:absolute;right:18px;bottom:18px;
  width:40px;height:40px;border-radius:999px;
  display:flex;align-items:center;justify-content:center;
  border:1px solid rgba(43,30,22,.10);
  background:var(--bg-soft);
}

/* Icons */
.icon{width:22px;height:22px;flex:0 0 22px;color:rgba(43,30,22,.90)}
.icon-lg{width:32px;height:32px;flex:0 0 32px}
.icon-tile{
  width:48px;height:48px;border-radius:18px;
  display:flex;align-items:center;justify-content:center;
  border:1px solid rgba(43,30,22,.12);
  box-shadow:var(--shadow-sm);
  background: rgba(119,45,8,.08);
}

/* Steps */
.steps{list-style:none;padding:0;margin:0;display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.step{
  background:#fff;border:1px solid rgba(43,30,22,.12);
  border-radius:var(--radius-lg);padding:18px;
  display:flex;gap:14px;align-items:flex-start;
  box-shadow:var(--shadow-sm);
}
.step-num{
  width:46px;height:46px;border-radius:18px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(119,45,8,.10);
  border:1px solid rgba(119,45,8,.18);
  font-weight:950;
}

/* Testimonials */
.testimonials{display:flex;gap:14px;overflow-x:auto;padding-bottom:8px;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch}
.testimonial{
  min-width:360px;max-width:420px;
  scroll-snap-align:start;
  background:#fff;border:1px solid rgba(43,30,22,.12);
  border-radius:var(--radius-lg);padding:22px;
  box-shadow:var(--shadow-sm);
}
.quote{margin:0 0 12px;font-weight:900;letter-spacing:-.01em}
.byline{margin:0;color:var(--muted)}

/* FAQ */
.faq{display:grid;grid-template-columns:1fr;gap:10px;margin-top:16px}
.faq-item{
  border:1px solid rgba(43,30,22,.12);
  border-radius:18px;background:#fff;box-shadow:var(--shadow-sm);
  overflow:hidden;
}
.faq-q{
  width:100%;
  display:flex;justify-content:space-between;align-items:center;gap:12px;
  background:#fff;border:none;cursor:pointer;
  padding:14px 16px;font:inherit;font-weight:900;
}
.faq-a{padding:0 16px 14px;color:var(--muted);display:none}
.faq-item.is-open .faq-a{display:block}
.faq-chevron{transition:transform .18s ease}
.faq-item.is-open .faq-chevron{transform:rotate(180deg)}

/* Contact */
.contact-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:14px;align-items:start}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.field{margin-bottom:12px}
label{display:block;font-weight:900;font-size:.92rem;margin-bottom:6px;color:rgba(43,30,22,.86)}
input,select,textarea{
  width:100%;
  font:inherit;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(43,30,22,.16);
  background:#fff;
  outline:none;
}
input:focus,select:focus,textarea:focus{
  border-color: rgba(119,45,8,.45);
  box-shadow: 0 0 0 4px rgba(119,45,8,.14);
}
.form-success{
  margin-top:12px;padding:12px 14px;border-radius:16px;
  background:rgba(119,45,8,.10);
  border:1px solid rgba(119,45,8,.18);
  font-weight:900;
}

/* Footer */
.footer{
  padding:36px 0 18px;
  border-top:1px solid rgba(43,30,22,.08);
  background:var(--bg-soft);
}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;gap:12px;padding-top:12px}

/* Scroll reveal */
.reveal{
  opacity:0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.reveal.is-visible{opacity:1;transform: translateY(0)}
.reveal.reveal-left{ transform: translateX(-16px); }
.reveal.reveal-right{ transform: translateX(16px); }
.reveal.reveal-left.is-visible,
.reveal.reveal-right.is-visible{ transform: translateX(0); }

@media (max-width:980px){
  .hero-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .section{padding:60px 0}
}
@media (max-width:860px){
  .nav-toggle{display:inline-flex;align-items:center;justify-content:center}
  .nav{
    position:fixed;top:74px;left:16px;right:16px;
    background:rgba(255,255,255,.95);
    border:1px solid rgba(43,30,22,.12);
    border-radius:18px;padding:12px;
    box-shadow:var(--shadow);
    display:none;flex-direction:column;align-items:stretch;gap:6px;
  }
  .nav.is-open{display:flex}
  .field-row{grid-template-columns:1fr}
  .section-head.split{flex-direction:column;align-items:flex-start}
}
@media (prefers-reduced-motion:reduce){
  *{transition:none!important;scroll-behavior:auto!important}
  .reveal, .reveal.is-visible{opacity:1!important;transform:none!important}
}


/* Profile photos + quotes */
.profile-photo{
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 20%;
  display: block;
  margin: 0 auto 16px;
  border: 4px solid #fff;
  box-shadow: 0 10px 24px rgba(43,30,22,.10);
}
.profile-quote{
  margin: 10px auto 0;
  max-width: 50ch;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: rgba(43,30,22,.78);
}
.brand-logo{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  object-fit: cover;
  display:block;
  background: transparent;
}

/* --- MOBILE IMPROVEMENTS --- */
@media (max-width: 900px){
  .grid-3{grid-template-columns:1fr;}
  .hero-actions{flex-direction:column;align-items:stretch;}
  .hero-actions .btn{width:100%;}
  .testimonial{min-width:min(320px,90vw);}
}
@media (max-width: 600px){
  .display{font-size:2rem;}
  .section{padding:56px 0;}
  .nav{max-height:calc(100vh - 90px);overflow:auto;}
}

.brand-logo{
  width:46px;
  height:46px;
  border-radius:14px;
  object-fit:cover;
  display:block;
}

.whatsapp-float{
  position:fixed;
  bottom:22px;
  right:22px;
  width:58px;
  height:58px;
  border-radius:50%;
  background:#25D366;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 12px 26px rgba(0,0,0,.2);
  z-index:9999;
  transition:transform .2s ease;
}
.whatsapp-float:hover{transform:scale(1.08);}

@media (max-width:600px){
  .hero{padding-top:90px;}
  .section:first-of-type{padding-top:32px;}
  .brand-tagline{
    display:block;
    font-size:0.75rem;
    margin-top:2px;
    color:rgba(43,30,22,.6);
  }
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}
.brand-logo{
  width:40px;
  height:40px;
  border-radius:12px;
  object-fit:contain;
  flex:0 0 auto;
}
.brand-name-wrap{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand-name{
  font-weight:700;
}
.brand-tagline{
  font-size:0.72rem;
  opacity:.75;
  margin-top:2px;
  white-space:nowrap;
}
@media (max-width:600px){
  .brand-tagline{ display:none; }
  .brand-logo{
    width:36px;
    height:36px;
  }
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.brand-logo{
  height:48px;
  width:auto;
  object-fit:contain;
  flex:0 0 auto;
}
.brand-name-wrap{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand-name{
  font-weight:700;
  font-size:1.15rem;
}
.brand-tagline{
  font-size:0.75rem;
  opacity:.7;
  margin-top:2px;
}
@media (max-width:600px){
  .brand-tagline{ display:none; }
  .brand-logo{ height:40px; }
}

/* Keep tagline on mobile */
@media (max-width:600px){
  .brand-tagline{ display:block; font-size:0.68rem; }
  .brand-logo{ height:38px; }
  .hero{ padding-top:70px; }
  .section:first-of-type{ padding-top:24px; }
}

/* Reduce space between logo and name */
.brand{ gap:6px; }

/* Mobile spacing tighter */
@media (max-width:600px){
  .hero{ padding-top:35px; }   /* was 70 */
  .section:first-of-type{ padding-top:16px; }
}

/* --- BRAND TEXT UPDATES --- */
.brand-name{
  font-size:1.45rem;
  font-weight:800;
  letter-spacing:.2px;
}
.brand-tagline{
  font-size:0.9rem;
  font-weight:600;
  opacity:1;
  margin-top:4px;
  color:#772d08;
}

/* Mobile: keep tagline readable without pushing header too tall */
@media (max-width:600px){
  .brand-name{ font-size:1.25rem; }
  .brand-tagline{
    display:block;
    font-size:0.78rem;
    font-weight:600;
    line-height:1.15;
    margin-top:3px;
    white-space:normal;
    max-width:22ch;
  }
}
