:root{
  --bg:#ffffff;
  --bg-alt:#f7f9fb;
  --card:#ffffff;

  --text:#222222;
  --text-2:#555555;
  --muted:#6b7280;

  --border:#e5e8ec;
  --brand:#2f80ed;
  --brand-2:#3bb7a9;
  --radius:14px;

  --max-dark:#444444;

  /* Added for Inchanga hero styling */
  --hero-accent:#b06c35;
  --hero-accent-dark:#8a5328;
  --hero-soft:#f6f0e8;
  --hero-heading:#2e2118;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.55;
  padding-top:112px;
}

img{ max-width:100%; height:auto; display:block; }

.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 22px;
}

a{ color:inherit; }
.muted{ color:var(--text-2); }

/* ================= HEADER ================= */

.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  background:var(--bg);
  border-bottom:1px solid var(--border);
}

.site-header,
.header-inner,
.site-logo{
  transition: min-height 180ms ease, height 180ms ease;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  min-height:112px;
}

.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.site-logo{
  height:175px;
  width:auto;
  object-fit:contain;
}

.site-header.is-scrolled .header-inner{ min-height:82px; }
.site-header.is-scrolled .site-logo{ height:66px; }

/* ================= NAV ================= */

.nav{
  display:flex;
  align-items:center;
  gap:12px;
}

/* Mobile toggle button: hidden by default (desktop + tablet) */
.nav-toggle{
  display:none;
  border:1px solid var(--border);
  background:var(--bg);
  border-radius:12px;
  padding:10px 12px;
  font-weight:800;
  line-height:1;
  cursor:pointer;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:11px 14px;
  border-radius:12px;
  font-weight:700;
  font-size:14px;
  border:1px solid transparent;
  cursor:pointer;
  transition:background-color 120ms ease,color 120ms ease,border-color 120ms ease;
}

.btn-nav.btn-primary{
  background:var(--brand);
  color:#fff;
}

.btn-nav.btn-primary:hover{
  background:#fff;
  color:#000;
  border-color:var(--border);
}

.btn-nav.btn-primary:active{
  background:var(--brand);
  color:#fff;
}

.btn-whatsapp{
  background:var(--bg-alt);
  border:1px solid var(--border);
}

/* ================= SECTIONS ================= */

.section{ padding:72px 0; }
.section.alt{ background:var(--bg-alt); }

/* ================= GLOBAL BOXED GRID ================= */
/* Reusable for Pricing, Examples, What’s Included, etc. */

.boxed-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
  margin-top:14px;
}

.boxed-grid .card{
  height:100%;
  display:flex;
  flex-direction:column;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
}

/* Utility to push CTAs to bottom inside boxed cards */
.boxed-grid .push-down{
  margin-top:auto;
}

/* ================= INCHANGA HERO ================= */
/* Requires hero HTML using:
   .hero > .container.hero-grid > .hero-text + .hero-image */

.hero{
  padding:56px 0 48px;
  background:#ffffff;
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(320px, 0.95fr) minmax(420px, 1.25fr);
  align-items:center;
  gap:56px;
}

.hero-text{
  max-width:540px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  background:var(--hero-soft);
  color:#8a8178;
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:18px;
}

.hero-title{
  margin:0 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size:clamp(48px, 6vw, 76px);
  line-height:.95;
  color:var(--hero-heading);
  font-weight:700;
}

.hero-subtitle{
  margin:0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size:clamp(24px, 2.2vw, 34px);
  line-height:1.1;
  color:#5f4b3e;
  font-weight:500;
}

.hero-copy{
  margin:0 0 28px;
  color:#5c534b;
  font-size:clamp(18px, 1.5vw, 22px);
  line-height:1.7;
  max-width:32ch;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.hero-actions .btn,
.hero-actions .button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  font-weight:800;
  text-decoration:none;
  border:1px solid transparent;
  transition:all 140ms ease;
}

.hero-actions .btn-primary,
.hero-actions .button.primary{
  background:var(--hero-accent);
  color:#ffffff;
  box-shadow:0 10px 24px rgba(176, 108, 53, 0.18);
}

.hero-actions .btn-primary:hover,
.hero-actions .button.primary:hover{
  background:var(--hero-accent-dark);
}

.hero-actions .btn-secondary,
.hero-actions .button.secondary{
  background:#ffffff;
  color:#2d2926;
  border-color:#e9dfd5;
}

.hero-actions .btn-secondary:hover,
.hero-actions .button.secondary:hover{
  background:#faf7f3;
}

.hero-image{
  min-width:0;
}

.hero-image img{
  width:100%;
  height:min(620px, 52vw);
  min-height:420px;
  object-fit:cover;
  object-position:center;
  border-radius:28px;
  box-shadow:0 24px 60px rgba(0,0,0,0.14);
}

/* ================= FOOTER ================= */

.site-footer{
  background:var(--bg-alt);
  border-top:1px solid var(--border);
  padding:46px 0 18px;
}

.footer-sections{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:36px;
  padding-bottom:18px;
}

.footer-section{
  display:flex;
  flex-direction:column;
}

.footer-brand{
  font-weight:800;
  letter-spacing:0.6px;
  font-size:16px;
  text-transform:uppercase;
}

.footer-description{
  margin-top:8px;
  color:var(--text-2);
  max-width:360px;
}

.footer-title{
  font-weight:800;
  margin-bottom:10px;
}

.footer-list{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-list li{ margin-bottom:7px; }

.footer-list a{
  text-decoration:none;
  color:var(--text-2);
}

.footer-list a:hover{
  color:var(--text);
  text-decoration:underline;
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  border-top:1px solid var(--border);
  padding-top:14px;
  font-size:14px;
  color:var(--text-2);
}

/* ================= MOBILE NAV (MOBILE ONLY) ================= */
/* Show hamburger ONLY on mobile, hide desktop nav, and enable dropdown */
@media (max-width:768px){
  .nav-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  .nav{
    display:none;
  }

  .nav.is-open{
    display:flex;
    position:absolute;
    right:22px;
    top:112px; /* aligns under header */
    flex-direction:column;
    background:var(--bg);
    border:1px solid var(--border);
    border-radius:16px;
    padding:10px;
    gap:6px;
    width:min(360px, calc(100vw - 44px));
    z-index:1001;
  }

  .site-header.is-scrolled .nav.is-open{
    top:82px;
  }

  /* Make menu items full width on mobile */
  .nav.is-open .btn{
    width:100%;
    justify-content:flex-start;
  }
}

/* ================= RESPONSIVE LAYOUT (GENERAL) ================= */
/* Keep your existing layout stacking at 980px (NOT nav behaviour) */
@media (max-width:980px){
  .boxed-grid{
    grid-template-columns:1fr;
  }

  .footer-sections{
    grid-template-columns:1fr;
    gap:20px;
  }

  .footer-bottom{
    flex-direction:column;
    text-align:center;
  }

  .hero-grid{
    grid-template-columns:1fr;
    gap:30px;
  }

  .hero-text{
    order:2;
    max-width:100%;
  }

  .hero-image{
    order:1;
  }

  .hero-image img{
    height:auto;
    min-height:0;
  }
}

@media (max-width:640px){
  .hero{
    padding:36px 0 32px;
  }

  .hero-title{
    font-size:clamp(38px, 12vw, 56px);
  }

  .hero-subtitle{
    font-size:clamp(22px, 7vw, 30px);
  }

  .hero-copy{
    font-size:18px;
    max-width:100%;
  }

  .hero-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .hero-actions .btn,
  .hero-actions .button{
    width:100%;
  }
}