/* ============================================================
   GROWTHEATS — DESIGN SYSTEM
   Signature idea: the "order ticket" — a kitchen/receipt motif
   (dotted tear-lines, ORDER# labels, perforated edges) since the
   entire business is about restaurant orders.
   Type: Fraunces (editorial food-menu serif) + Manrope (clean UI sans)
   Palette: roasted-charcoal base, chili-orange + turmeric-gold +
   mint-chutney green accents.
   ============================================================ */

:root{
  --bg:      #171310;
  --bg2:     #1D1812;
  --card:    #241D16;
  --card2:   #2B2318;
  --line:    rgba(245,239,230,.09);
  --line-strong: rgba(245,239,230,.18);

  --spice:   #E8622C;   /* chili / tandoor orange */
  --spice-dim: rgba(232,98,44,.14);
  --mint:    #4FA98A;   /* mint-chutney green */
  --mint-dim:  rgba(79,169,138,.14);
  --gold:    #D9A94E;   /* turmeric gold */
  --gold-dim:  rgba(217,169,78,.14);
  --wa:      #25D366;

  --text:    #F5EFE6;
  --text2:   #CFC3B2;
  --muted:   #94897A;

  --radius: 18px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --shadow: 0 24px 60px rgba(0,0,0,.45);
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  background:var(--bg); color:var(--text);
  font-family:'Manrope',sans-serif; line-height:1.65;
  -webkit-font-smoothing:antialiased; overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
ul{list-style:none}
::selection{background:var(--spice);color:#171310}

/* subtle paper-grain so the dark theme doesn't feel flat/generic */
body::before{
  content:"";position:fixed;inset:0;pointer-events:none;z-index:5000;opacity:.05;
  background:url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="n"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="2"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23n)"/%3E%3C/svg%3E');
}

/* ---------- type ---------- */
.serif{font-family:'Fraunces',serif;font-weight:600;letter-spacing:-0.01em;line-height:1.08}
.display-xl{font-size:clamp(2.1rem,7.5vw,5.2rem)}
.display-lg{font-size:clamp(1.6rem,5.5vw,3.3rem)}
.display-md{font-size:clamp(1.25rem,3.5vw,1.9rem)}
.eyebrow{
  display:inline-flex;align-items:center;gap:.5rem;
  font-size:.72rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase;
  color:var(--spice);
}
.eyebrow::before{content:"";width:22px;height:1px;background:var(--spice)}
.muted{color:var(--muted)}
.text2{color:var(--text2)}

/* ---------- layout ---------- */
.wrap{max-width:1180px;margin:0 auto;padding:0 1.2rem;width:100%;box-sizing:border-box}
@media(min-width:640px){.wrap{padding:0 1.4rem}}
@media(min-width:768px){.wrap{padding:0 2.4rem}}
.section{padding:3.2rem 0}
@media(min-width:640px){.section{padding:4.5rem 0}}
@media(min-width:900px){.section{padding:6rem 0}}
.section-sm{padding:2.4rem 0}
.divider{height:1px;background:linear-gradient(90deg,transparent,var(--line),transparent)}
.grid{display:grid;gap:1.2rem}
@media(min-width:640px){.grid{gap:1.6rem}}
.grid-3{grid-template-columns:repeat(auto-fit,minmax(240px,1fr))}
.grid-2{grid-template-columns:repeat(auto-fit,minmax(280px,1fr))}

/* fixed two-column layouts (hero, etc.) must collapse on phones */
.hero-grid{grid-template-columns:1fr}
@media(min-width:860px){.hero-grid{grid-template-columns:1.1fr .9fr}}

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

/* ---------- nav ---------- */
header.nav{
  position:sticky;top:0;z-index:500;
  background:rgba(23,19,16,.86);backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
html.light header.nav{background:rgba(251,247,240,.9)}
.nav-inner{
  display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;row-gap:.5rem;
  padding:.85rem 1.2rem;max-width:1180px;margin:0 auto;position:relative;
}
@media(min-width:640px){.nav-inner{padding:1rem 1.4rem}}
@media(min-width:768px){.nav-inner{padding:1rem 2.4rem}}
.logo-word{font-family:'Fraunces',serif;font-weight:700;font-size:1.15rem;flex-shrink:0;display:inline-flex;align-items:center;gap:9px}
@media(min-width:640px){.logo-word{font-size:1.3rem}}
.logo-word em{color:var(--spice);font-style:normal}
.brand-mark{width:34px;height:34px;border-radius:9px;object-fit:cover;flex-shrink:0;box-shadow:0 2px 8px rgba(0,0,0,.3)}
@media(min-width:640px){.brand-mark{width:38px;height:38px;border-radius:10px}}
.footer-brand-mark{width:36px;height:36px;border-radius:9px;object-fit:cover;flex-shrink:0;box-shadow:0 2px 8px rgba(0,0,0,.3)}
.nav-right{display:flex;align-items:center;gap:.5rem;flex-wrap:wrap;justify-content:flex-end}
@media(min-width:640px){.nav-right{gap:.7rem}}
/* the header's WhatsApp pill button plus the toggle plus hamburger don't
   fit next to the logo below ~413px and force the header onto two rows;
   the floating WhatsApp button (visible on every page) and the link
   inside the dropdown menu already cover this, so hide the pill here */
@media(max-width:412px){.nav-right > .btn-wa{display:none}}

/* nav links: collapsible dropdown on phones/tablets, static row on desktop */
.nav-links{
  display:none;flex-direction:column;gap:1rem;font-size:.95rem;font-weight:600;
  position:absolute;top:100%;left:0;right:0;background:var(--bg2);
  border-bottom:1px solid var(--line);padding:1.2rem 1.4rem 1.4rem;box-shadow:0 16px 30px rgba(0,0,0,.25);
}
.nav-links.open{display:flex}
@media(min-width:900px){
  .nav-links{display:flex !important;position:static;flex-direction:row;gap:2rem;font-size:.9rem;
    background:none;border:none;padding:0;box-shadow:none;}
}

/* hamburger — mobile/tablet only */
.hamburger{
  display:flex;flex-direction:column;justify-content:center;gap:5px;
  width:34px;height:34px;padding:6px;background:none;border:none;cursor:pointer;flex-shrink:0;
}
.hamburger span{display:block;height:2px;width:100%;background:var(--text);border-radius:2px;transition:transform .3s,opacity .3s}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
@media(min-width:900px){.hamburger{display:none}}
.nav-links a{color:var(--text2);transition:color .2s}
.nav-links a:hover{color:var(--spice)}
.nav-wa-link{display:flex !important;align-items:center;gap:8px;color:var(--wa) !important;font-weight:800}
@media(min-width:900px){.nav-wa-link{display:none !important}}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  min-height:52px;padding:0 1.8rem;border-radius:100px;
  font-weight:700;font-size:.88rem;cursor:pointer;border:none;
  transition:transform .25s cubic-bezier(.34,1.56,.64,1),box-shadow .25s;
  white-space:nowrap;
}
.btn-spice{background:linear-gradient(135deg,#C8501F,var(--spice));color:#fff;box-shadow:0 8px 26px rgba(232,98,44,.34)}
.btn-spice:hover{transform:translateY(-2px);box-shadow:0 12px 34px rgba(232,98,44,.48)}
.btn-wa{background:linear-gradient(135deg,#1DA851,var(--wa));color:#fff;box-shadow:0 8px 26px rgba(37,211,102,.32)}
.btn-wa:hover{transform:translateY(-2px);box-shadow:0 12px 34px rgba(37,211,102,.46)}
.btn-outline{background:transparent;border:1.5px solid var(--line-strong);color:var(--text)}
.btn-outline:hover{border-color:var(--gold);color:var(--gold)}
.btn-sm{min-height:42px;padding:0 1.3rem;font-size:.8rem}

@media(max-width:380px){
  .btn{padding:0 1.3rem;font-size:.82rem;min-height:48px}
  .btn-sm{padding:0 1rem;font-size:.76rem;min-height:40px}
}

/* ---------- card / ticket motif ---------- */
.card{
  background:var(--card);border:1px solid var(--line);border-radius:var(--radius);
  transition:transform .3s,border-color .3s;
}
.card:hover{transform:translateY(-5px);border-color:rgba(232,98,44,.3)}

/* the signature "order ticket" chip used across stats/testimonials */
.ticket{
  position:relative;background:var(--card2);border-radius:var(--radius-sm);
  padding:1.1rem 1.3rem;border:1px dashed var(--line-strong);
}
.ticket::before,.ticket::after{
  content:"";position:absolute;top:50%;width:14px;height:14px;border-radius:50%;
  background:var(--bg);transform:translateY(-50%);
}
.ticket::before{left:-8px}
.ticket::after{right:-8px}
.ticket .num{font-family:'Fraunces',serif;font-size:1.9rem;font-weight:700;color:var(--gold)}
.ticket .lbl{font-size:.68rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--muted)}

.pill{
  display:inline-flex;align-items:center;gap:6px;padding:5px 14px;border-radius:100px;
  font-weight:700;font-size:.65rem;letter-spacing:.08em;text-transform:uppercase;
}
.pill-spice{background:var(--spice-dim);color:var(--spice)}
.pill-mint{background:var(--mint-dim);color:var(--mint)}
.pill-gold{background:var(--gold-dim);color:var(--gold)}

/* ---------- footer ---------- */
footer{background:var(--bg2);border-top:1px solid var(--line);padding:3.5rem 0 2rem}
.foot-grid{display:grid;gap:2.4rem;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));margin-bottom:2.4rem}
.foot-links a{display:block;color:var(--muted);font-size:.88rem;margin-bottom:.6rem;transition:color .2s}
.foot-links a:hover{color:var(--text)}
.foot-title{font-size:.72rem;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:var(--text2);margin-bottom:1rem}

.also-by{
  display:flex;align-items:center;gap:.9rem;padding:1rem 1.2rem;
  background:var(--card);border:1px solid var(--line);border-radius:var(--radius-sm);
}
.also-by img{width:38px;height:38px;border-radius:9px;object-fit:cover;flex-shrink:0}
.also-by .t1{font-size:.7rem;color:var(--muted);letter-spacing:.06em;text-transform:uppercase}
.also-by .t2{font-weight:700;font-size:.95rem}
.also-by .t3{font-size:.78rem;color:var(--muted)}

.bottom-bar{
  display:flex;flex-wrap:wrap;gap:1rem;justify-content:space-between;align-items:center;
  padding-top:2rem;border-top:1px solid var(--line);font-size:.8rem;color:var(--muted);
}

/* ---------- reveal-on-scroll ---------- */
.reveal{opacity:0;transform:translateY(22px);transition:opacity .7s ease,transform .7s cubic-bezier(.2,.7,.2,1)}
.reveal.in{opacity:1;transform:translateY(0)}

/* ---------- whatsapp float ---------- */
.wa-float{
  position:fixed;bottom:22px;right:22px;z-index:600;
  width:58px;height:58px;border-radius:50%;background:var(--wa);
  display:flex;align-items:center;justify-content:center;font-size:1.6rem;
  box-shadow:0 10px 28px rgba(37,211,102,.5);
}

/* ---------- nav sister-brand badge ---------- */
.nav-sister{
  display:none;align-items:center;gap:7px;padding:5px 12px 5px 6px;border-radius:100px;
  background:var(--card2);border:1px solid var(--line);white-space:nowrap;transition:border-color .2s;
}
.nav-sister:hover{border-color:var(--gold)}
.nav-sister img{width:22px;height:22px;border-radius:50%;object-fit:cover;flex-shrink:0}
.nav-sister span{font-size:.72rem;font-weight:700;color:var(--text2)}
@media(min-width:640px){.nav-sister{display:flex}}

/* ---------- pricing plan cards ---------- */
.plan-card{
  background:var(--card);border:1px solid var(--line);border-radius:var(--radius-lg);
  padding:2.2rem 1.8rem;display:flex;flex-direction:column;position:relative;overflow:hidden;
  transition:transform .3s,border-color .3s;
}
.plan-card:hover{transform:translateY(-6px)}
.plan-card.featured{
  border-color:rgba(232,98,44,.5);
  background:linear-gradient(160deg,rgba(232,98,44,.09),var(--card) 60%);
  box-shadow:0 20px 60px rgba(232,98,44,.16);
}
.plan-card.featured::before{content:"";position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,var(--spice),var(--gold))}
.plan-name{font-size:.72rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:var(--muted)}
.plan-card.featured .plan-name{color:var(--spice)}
.plan-price{font-family:'Fraunces',serif;font-size:2.5rem;font-weight:700;margin:.6rem 0 .3rem;line-height:1}
.plan-price small{font-size:1rem;color:var(--muted);font-family:'Manrope',sans-serif;font-weight:500}
.plan-sub{font-size:.82rem;color:var(--muted);margin-bottom:1.4rem}
.plan-features{margin-bottom:1.6rem;flex:1}
.plan-features li{display:flex;align-items:flex-start;gap:10px;font-size:.86rem;color:var(--text2);margin-bottom:.85rem;line-height:1.5}
.plan-features li::before{content:"✓";color:var(--mint);font-weight:800;flex-shrink:0}
.plan-features .f-sub{display:block;color:var(--muted);font-size:.78rem;margin-top:2px}

.offer-banner{
  display:flex;align-items:center;gap:1.2rem;flex-wrap:wrap;
  padding:1.4rem 1.8rem;margin-bottom:2.4rem;border-radius:var(--radius);
  background:linear-gradient(135deg,rgba(217,169,78,.1),rgba(232,98,44,.08));
  border:1px dashed var(--line-strong);
}

.starter-card{
  display:flex;align-items:center;justify-content:space-between;gap:1.4rem;flex-wrap:wrap;
  padding:1.6rem 1.8rem;margin-top:1.6rem;border-radius:var(--radius);
  background:var(--card2);border:1px solid var(--line);
}

/* ---------- testimonials ---------- */
.testi-card{padding:1.8rem;display:flex;flex-direction:column}
.testi-stars{color:var(--gold);letter-spacing:2px;margin-bottom:1rem;font-size:.9rem}
.testi-quote{font-size:.92rem;color:var(--text2);line-height:1.8;font-style:italic;flex:1;margin-bottom:1.4rem}
.testi-quote::before{content:"“";color:var(--spice);font-family:'Fraunces',serif;margin-right:3px}
.testi-author{display:flex;align-items:center;gap:12px;padding-top:1.2rem;border-top:1px solid var(--line)}
.testi-avatar{
  width:42px;height:42px;border-radius:50%;flex-shrink:0;display:flex;align-items:center;justify-content:center;
  font-family:'Fraunces',serif;font-weight:700;color:#171310;font-size:1.05rem;
}
.testi-name{font-weight:700;font-size:.88rem}
.testi-city{font-size:.76rem;color:var(--muted);margin-top:2px}
.testi-badge{margin-left:auto;padding:4px 11px;border-radius:100px;background:var(--mint-dim);color:var(--mint);font-size:.68rem;font-weight:800;white-space:nowrap}
.av-1{background:linear-gradient(135deg,var(--spice),var(--gold))}
.av-2{background:linear-gradient(135deg,var(--mint),#8fd6bd)}
.av-3{background:linear-gradient(135deg,var(--gold),var(--spice))}
.av-4{background:linear-gradient(135deg,#C8501F,var(--gold))}
.av-5{background:linear-gradient(135deg,var(--mint),var(--gold))}
.av-6{background:linear-gradient(135deg,var(--spice),var(--mint))}

/* ---------- light theme override ---------- */
html.light body{
  --bg:      #FBF7F0;
  --bg2:     #F3ECDF;
  --card:    #FFFFFF;
  --card2:   #F6F0E4;
  --line:    rgba(23,19,16,.10);
  --line-strong: rgba(23,19,16,.22);
  --text:    #201A14;
  --text2:   #4A4137;
  --muted:   #7A6F60;
}
html.light body::before{opacity:.03}

.theme-toggle{
  width:42px;height:42px;border-radius:50%;background:var(--card2);
  border:1px solid var(--line);cursor:pointer;display:flex;align-items:center;justify-content:center;
  font-size:1.05rem;flex-shrink:0;transition:transform .3s,background .3s;
}
.theme-toggle:hover{transform:rotate(18deg)}

/* ---------- service image cards ---------- */
.svc-image-wrap{
  position:relative;height:150px;border-radius:var(--radius-sm);overflow:hidden;margin-bottom:1.1rem;
}
.svc-image-wrap img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.card:hover .svc-image-wrap img{transform:scale(1.06)}
.svc-image-wrap::after{
  content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 40%,rgba(23,19,16,.55));
}

/* ---------- FAQ accordion ---------- */
.faq-item{border:1px solid var(--line);border-radius:var(--radius-sm);margin-bottom:.9rem;overflow:hidden;background:var(--card)}
.faq-q{
  width:100%;background:none;border:none;cursor:pointer;display:flex;align-items:center;justify-content:space-between;
  gap:1rem;padding:1.3rem 1.5rem;color:var(--text);font-family:'Manrope',sans-serif;font-size:1rem;font-weight:700;
  text-align:left;transition:color .2s;
}
.faq-q:hover{color:var(--spice)}
.faq-icon{
  width:28px;height:28px;border-radius:50%;flex-shrink:0;background:var(--card2);border:1px solid var(--line);
  display:flex;align-items:center;justify-content:center;font-size:1rem;transition:transform .35s,background .35s,color .35s;
}
.faq-item.open .faq-icon{transform:rotate(45deg);background:var(--spice-dim);color:var(--spice);border-color:transparent}
.faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease}
.faq-item.open .faq-a{max-height:220px}
.faq-a-inner{padding:0 1.5rem 1.3rem;color:var(--muted);font-size:.92rem;line-height:1.7}

/* ---------- blog article typography ---------- */
.article-body h2{font-family:'Fraunces',serif;font-size:1.5rem;margin:2.2rem 0 .9rem;color:var(--text)}
.article-body p{color:var(--text2);margin-bottom:1.1rem;font-size:1.02rem}
.article-body ul{margin:0 0 1.1rem 0}
.article-body li{color:var(--text2);margin-bottom:.5rem;padding-left:1.4rem;position:relative}
.article-body li::before{content:"→";position:absolute;left:0;color:var(--spice)}
.article-body strong{color:var(--gold)}

/* ---------- mobile refinement pass ---------- */
@media(max-width:640px){
  .wa-float{width:50px;height:50px;bottom:16px;right:16px}
  .wa-float svg{width:22px;height:22px}
  .plan-card{padding:1.7rem 1.4rem}
  .testi-card{padding:1.4rem}
  .starter-card,.offer-banner{padding:1.2rem 1.3rem}
  .svc-image-wrap{height:130px}
  .also-by{padding:.85rem 1rem}
  .foot-grid{gap:1.8rem}
  footer{padding:2.6rem 0 1.6rem}
}
@media(max-width:400px){
  .grid-3{grid-template-columns:1fr}
}
