/* ============================================================
   VITA GLOBAL — From Nature to the World
   Design system derived from the brand logo:
   forest green, terracotta rust, golden tan, woven-fibre cream
   ============================================================ */

:root {
  /* Palette */
  --forest:        #3f6b3a;   /* deep leaf green from "VITA" */
  --forest-deep:   #2f4f2c;
  --olive:         #7a9a4e;   /* lighter "Global" green */
  --terracotta:    #b6452a;   /* rust red blade */
  --terracotta-dk: #8f3520;
  --gold:          #cf9a4f;   /* golden wheat tan */
  --gold-soft:     #e3c48a;
  --cream:         #f6f2e7;   /* warm paper background */
  --cream-deep:    #efe8d6;
  --ink:           #2a2620;   /* near-black warm text */
  --ink-soft:      #5b554a;
  --line:          #ddd4bf;   /* hairline on cream */
  --white:         #fffdf8;

  /* Type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body:    "Outfit", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --maxw: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 14px;
  --shadow: 0 18px 40px -22px rgba(47, 79, 44, 0.45);
  --shadow-sm: 0 8px 20px -14px rgba(47, 79, 44, 0.5);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.1; margin: 0; letter-spacing: -0.01em; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.eyebrow {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--gold); display: inline-block; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-soft); max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--body); font-weight: 600; font-size: 0.95rem;
  padding: 0.85rem 1.6rem; border-radius: 100px;
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--forest); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--forest-deep); transform: translateY(-2px); }
.btn-ghost { border-color: var(--forest); color: var(--forest); background: transparent; }
.btn-ghost:hover { background: var(--forest); color: var(--white); transform: translateY(-2px); }
.btn-gold { background: var(--terracotta); color: var(--white); }
.btn-gold:hover { background: var(--terracotta-dk); transform: translateY(-2px); }
.btn svg { width: 17px; height: 17px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 242, 231, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand img { height: 52px; width: auto; }
.brand-text { font-family: var(--display); font-weight: 600; font-size: 1.18rem; line-height: 1; }
.brand-text small { display: block; font-family: var(--body); font-weight: 500; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-weight: 500; font-size: 0.95rem; position: relative; padding-block: 4px; color: var(--ink); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--terracotta); transition: width .28s ease; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--forest); }
.nav-cta { display: flex; align-items: center; gap: 0.8rem; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s; border-radius: 2px; }

@media (max-width: 940px) {
  .nav-links {
    position: fixed; inset: 76px 0 auto 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--gutter) 1.5rem;
    transform: translateY(-120%); transition: transform .35s ease; box-shadow: var(--shadow);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
  .nav-links a::after { display: none; }
  .nav-toggle { display: block; }
  .nav-cta .btn { display: none; }
  .nav-cta .btn.nav-call { display: inline-flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center; padding-block: clamp(3rem, 7vw, 5.5rem);
}
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); letter-spacing: -0.02em; }
.hero h1 .accent { color: var(--terracotta); font-style: italic; }
.hero h1 .leaf { color: var(--forest); }
.hero p.lead { margin-top: 1.4rem; }
.hero-actions { margin-top: 2.2rem; display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-meta { margin-top: 2.6rem; display: flex; gap: 2rem; flex-wrap: wrap; }
.hero-meta .stat { }
.hero-meta .num { font-family: var(--display); font-size: 1.9rem; color: var(--forest); font-weight: 600; }
.hero-meta .lbl { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }

/* Hero artwork — woven panel of the two products */
.hero-art {
  position: relative; aspect-ratio: 3 / 2.4; border-radius: 22px; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.hero-art svg { width: 100%; height: 100%; display: block; }
.hero-art img { width: 100%; height: 100%; object-fit: contain; display: block; background: var(--cream-deep); }
.hero-badge {
  position: absolute; bottom: 18px; left: 18px;
  background: var(--white); border-radius: 12px; padding: 0.7rem 1rem;
  box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.82rem; font-weight: 600;
}
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--olive); box-shadow: 0 0 0 4px rgba(122,154,78,.2); }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 460px; margin-inline: auto; order: -1; }
}

/* ============================================================
   MARQUEE / DESTINATIONS STRIP
   ============================================================ */
.strip { background: var(--forest-deep); color: var(--cream); padding-block: 0.9rem; overflow: hidden; }
.marquee { display: flex; gap: 3rem; white-space: nowrap; animation: scroll 30s linear infinite; }
.marquee span { font-family: var(--display); font-style: italic; font-size: 1.05rem; opacity: 0.92; display: inline-flex; gap: 3rem; }
.marquee span::after { content: "✦"; color: var(--gold); font-style: normal; }
@keyframes scroll { from { transform: translateX(0);} to { transform: translateX(-50%);} }
@media (prefers-reduced-motion: reduce) { .marquee { animation: none; } }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.sec-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.sec-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin-top: 0.8rem; }
.sec-head p { margin-top: 1rem; color: var(--ink-soft); }
.center { text-align: center; margin-inline: auto; }
.center .eyebrow { justify-content: center; }

/* ============================================================
   DUAL PRODUCT SPLIT (home)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.2rem, 3vw, 2rem); }
.cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 440px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem; color: var(--white); box-shadow: var(--shadow);
  border: 1px solid var(--line); isolation: isolate;
  transition: transform .35s ease;
}
.cat-card:hover { transform: translateY(-6px); }
.cat-card .art { position: absolute; inset: 0; z-index: -2; }
.cat-card .art svg { width: 100%; height: 100%; }
.cat-card .art img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .5s ease; }
.cat-card:hover .art img { transform: scale(1.05); }
.cat-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(20,30,18,0.12) 0%, rgba(20,30,18,0.15) 42%, rgba(20,30,18,0.82) 100%); }
.cat-card .kicker { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; color: var(--gold-soft); }
.cat-card h3 { font-size: 1.9rem; margin: 0.4rem 0 0.6rem; }
.cat-card p { font-size: 0.96rem; opacity: 0.94; margin: 0 0 1.3rem; max-width: 38ch; }
.cat-link { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; font-size: 0.92rem; }
.cat-link svg { width: 18px; height: 18px; flex: none; transition: transform .25s ease; }
.cat-card:hover .cat-link svg { transform: translateX(4px); }
@media (max-width: 760px) { .split { grid-template-columns: 1fr; } .cat-card { min-height: 360px; } }

/* Category card v2 — full image shown (no text cropping) with caption panel below */
.cat2 {
  display: flex; flex-direction: column; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--white);
  transition: transform .35s ease, box-shadow .35s ease;
}
.cat2:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.cat2 .pic { aspect-ratio: 16/10; background: var(--cream-deep); overflow: hidden; }
.cat2 .pic img { width: 100%; height: 100%; object-fit: contain; display: block; transition: transform .5s ease; }
.cat2:hover .pic img { transform: scale(1.03); }
.cat2 .txt { padding: 1.6rem 1.8rem 1.8rem; }
.cat2 .kicker { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; color: var(--terracotta); }
.cat2 h3 { font-size: 1.7rem; margin: 0.4rem 0 0.5rem; color: var(--ink); }
.cat2 p { font-size: 0.96rem; color: var(--ink-soft); margin: 0 0 1.1rem; }
.cat2 .cat-link { color: var(--forest); }
.cat2 .cat-link svg { width: 18px; height: 18px; }
.cat2:hover .cat-link svg { transform: translateX(4px); }

/* ============================================================
   FEATURE / WHY US
   ============================================================ */
.feature-bg { background: var(--cream-deep); }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.feat {
  background: var(--white); border-radius: var(--radius); padding: 1.8rem;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feat .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--cream); color: var(--forest); margin-bottom: 1rem; }
.feat .ic svg { width: 24px; height: 24px; }
.feat h3 { font-size: 1.18rem; margin-bottom: 0.45rem; }
.feat p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }
@media (max-width: 860px) { .feat-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PRODUCT GRID (catalogue pages)
   ============================================================ */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.prod {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease;
}
.prod:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.prod .thumb { aspect-ratio: 4 / 3; position: relative; overflow: hidden; background: var(--cream-deep); }
.prod .thumb svg { width: 100%; height: 100%; display: block; }
.prod .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.prod:hover .thumb img { transform: scale(1.05); }
.prod .tag {
  position: absolute; top: 12px; left: 12px; background: var(--white);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--terracotta); padding: 0.3rem 0.7rem; border-radius: 100px; box-shadow: var(--shadow-sm);
}
.prod .body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.prod h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.prod .desc { font-size: 0.9rem; color: var(--ink-soft); margin: 0 0 1rem; flex: 1; }
.prod .specs { border-top: 1px solid var(--line); padding-top: 0.9rem; margin-bottom: 1rem; }
.prod .specs dl { display: grid; grid-template-columns: auto 1fr; gap: 0.35rem 0.8rem; margin: 0; font-size: 0.84rem; }
.prod .specs dt { color: var(--ink-soft); }
.prod .specs dd { margin: 0; font-weight: 600; text-align: right; }
.prod .moq { font-size: 0.8rem; font-weight: 600; color: var(--forest); }
@media (max-width: 980px) { .prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .prod-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PAGE HERO (subpages)
   ============================================================ */
.page-hero { background: var(--cream-deep); border-bottom: 1px solid var(--line); }
.page-hero .wrap { padding-block: clamp(2.8rem, 6vw, 4.5rem); }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-top: 0.7rem; }
.page-hero p { margin-top: 1rem; max-width: 60ch; color: var(--ink-soft); }
.crumbs { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 0.3rem; }
.crumbs a:hover { color: var(--terracotta); }

/* ============================================================
   INFO / SPEC BAND
   ============================================================ */
.band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.band .cell { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.band .cell .n { font-family: var(--display); font-size: 1.7rem; color: var(--terracotta); font-weight: 600; }
.band .cell .t { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); margin-top: 0.3rem; }
@media (max-width: 760px) { .band { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   NUTRITION / VARIANTS (makhana)
   ============================================================ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
@media (max-width: 820px){ .two-col { grid-template-columns: 1fr; } }
.nut-list { display: grid; gap: 0.7rem; margin-top: 1.4rem; }
.nut-list li { display: flex; gap: 0.8rem; align-items: flex-start; font-size: 0.96rem; }
.nut-list li .chk { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--forest); color: #fff; display: grid; place-items: center; font-size: 12px; margin-top: 2px; }
.panel-art { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); aspect-ratio: 4/3.4; }
.panel-art svg { width: 100%; height: 100%; }
.panel-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* contain variant: show the whole image (no text cropping), letterbox on brand cream */
.panel-art.fit-contain { aspect-ratio: 3/2; background: var(--cream-deep); }
.panel-art.fit-contain img { object-fit: contain; }
.prod .thumb.fit-contain { background: var(--cream-deep); }
.prod .thumb.fit-contain img { object-fit: contain; }
.prod:hover .thumb.fit-contain img { transform: none; }
/* wide feature image band */
.showcase { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.showcase img { width: 100%; display: block; }

/* variant pills */
.variants { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; margin-top: 1rem; }
.variant { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; text-align: center; box-shadow: var(--shadow-sm); }
.variant .sz { font-family: var(--display); font-size: 2.1rem; color: var(--forest); font-weight: 600; }
.variant .lbl { font-weight: 600; margin: 0.3rem 0; }
.variant .mm { font-size: 0.82rem; color: var(--ink-soft); }
@media (max-width:680px){ .variants { grid-template-columns: 1fr; } }

/* ============================================================
   PRICING TABLE
   ============================================================ */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
table.price { width: 100%; border-collapse: collapse; background: var(--white); min-width: 560px; }
table.price th, table.price td { padding: 0.95rem 1.2rem; text-align: left; font-size: 0.92rem; }
table.price thead { background: var(--forest); color: var(--cream); }
table.price th { font-family: var(--body); font-weight: 600; letter-spacing: 0.04em; font-size: 0.82rem; text-transform: uppercase; }
table.price tbody tr { border-top: 1px solid var(--line); }
table.price tbody tr:nth-child(even) { background: var(--cream); }
table.price td:first-child { font-weight: 600; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; counter-reset: step; }
.step { position: relative; padding-top: 1rem; }
.step .num { font-family: var(--display); font-size: 2.6rem; color: var(--gold); font-weight: 600; line-height: 1; }
.step h3 { font-size: 1.15rem; margin: 0.5rem 0 0.4rem; }
.step p { font-size: 0.88rem; color: var(--ink-soft); margin: 0; }
.step::before { content: ""; position: absolute; top: 1.4rem; left: 2.6rem; right: -0.6rem; height: 1.5px; background: var(--line); }
.step:last-child::before { display: none; }
@media (max-width: 860px){ .steps { grid-template-columns: 1fr 1fr; } .step::before{display:none;} }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,3.5rem); }
@media (max-width: 860px){ .contact-grid { grid-template-columns: 1fr; } }
.info-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem,3vw,2.4rem); box-shadow: var(--shadow-sm); }
.info-row { display: flex; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.info-row:last-child { border-bottom: 0; padding-bottom: 0; }
.info-row .ic { flex: none; width: 42px; height: 42px; border-radius: 11px; background: var(--cream); color: var(--forest); display: grid; place-items: center; }
.info-row .ic svg { width: 20px; height: 20px; }
.info-row .k { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-soft); }
.info-row .v { font-weight: 600; font-size: 1rem; margin-top: 2px; word-break: break-word; }
.info-row .v a:hover { color: var(--terracotta); }

.form-card { background: var(--forest-deep); color: var(--cream); border-radius: var(--radius); padding: clamp(1.6rem,3vw,2.4rem); box-shadow: var(--shadow); }
.form-card h3 { color: var(--white); font-size: 1.6rem; }
.form-card p.sub { color: var(--gold-soft); font-size: 0.92rem; margin: 0.4rem 0 1.5rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.4rem; color: var(--gold-soft); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.8rem 1rem; border-radius: 10px; border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06); color: var(--cream); font-family: var(--body); font-size: 0.95rem;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(246,242,231,0.5); }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--gold); border-color: transparent; }
.field select option { color: var(--ink); }
.form-card .btn { width: 100%; justify-content: center; margin-top: 0.4rem; }
.form-note { font-size: 0.8rem; color: var(--gold-soft); margin-top: 1rem; text-align: center; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-band { background: var(--terracotta); color: var(--white); border-radius: 22px; padding: clamp(2.2rem,5vw,3.6rem); text-align: center; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.cta-band h2 { font-size: clamp(1.8rem,4vw,2.8rem); color: #fff; }
.cta-band p { max-width: 52ch; margin: 1rem auto 1.8rem; opacity: 0.95; }
.cta-band .btn-primary { background: var(--white); color: var(--terracotta-dk); }
.cta-band .btn-primary:hover { background: var(--cream); }
.cta-band .btn-ghost { border-color: rgba(255,255,255,0.7); color: #fff; }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,0.14); color: #fff; }
.cta-actions { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--forest-deep); color: var(--cream); padding-block: clamp(2.6rem,5vw,3.4rem) 1.5rem; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 2rem; }
.foot-brand img { height: 60px; width: auto; margin-bottom: 0.9rem; background: var(--cream); padding: 8px 12px; border-radius: 12px; }
.foot-brand p { font-size: 0.9rem; opacity: 0.82; max-width: 32ch; }
.foot-col h4 { font-family: var(--body); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1rem; }
.foot-col a, .foot-col li { font-size: 0.92rem; opacity: 0.86; margin-bottom: 0.6rem; transition: opacity .2s, color .2s; }
.foot-col a:hover { opacity: 1; color: var(--gold-soft); }
.foot-bottom { border-top: 1px solid rgba(246,242,231,0.16); margin-top: 2.4rem; padding-top: 1.4rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.82rem; opacity: 0.78; }
@media (max-width: 860px){ .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .foot-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: grid; place-items: center; box-shadow: 0 10px 26px -8px rgba(0,0,0,0.4);
  transition: transform .25s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   MISC
   ============================================================ */
.note-box { background: var(--cream-deep); border-left: 4px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.2rem 1.4rem; font-size: 0.92rem; color: var(--ink-soft); }
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.chip { background: var(--white); border: 1px solid var(--line); border-radius: 100px; padding: 0.4rem 0.9rem; font-size: 0.82rem; font-weight: 500; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }
