/* =========================================================
   NOVA FESTA — Unified Brand Stylesheet
   Design system ported from mocks/04-brand-locked.html
   ========================================================= */

:root {
  /* Surfaces */
  --bg:        #FFFFFF;
  --bg-2:      #F8FAFC;
  --bg-blue:   #EDF3F9;
  --bg-warm:   #FDF3EA;

  /* Text */
  --ink:       #0F1827;
  --ink-2:     #3A4358;
  --ink-mute:  #7E8993;

  /* Brand */
  --blue:      #226DA3;
  --blue-soft: #4D90C2;
  --blue-deep: #18527E;
  --blue-bg:   #14416A;

  --orange:      #DE612D;
  --orange-soft: #F08855;
  --orange-deep: #B54B1E;

  /* Lines */
  --line:   rgba(15, 24, 39, 0.10);
  --line-2: rgba(15, 24, 39, 0.18);

  --shadow-card:   0 1px 3px rgba(15,24,39,0.05), 0 12px 30px rgba(15,24,39,0.08);
  --shadow-card-h: 0 24px 50px rgba(15,24,39,0.14);
  --shadow-blue:   0 14px 32px rgba(34, 109, 163, 0.25);
  --shadow-orange: 0 12px 28px rgba(222, 97, 45, 0.28);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }
::selection { background: var(--blue); color: white; }

/* ──────────────────────────── LAYOUT ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-bg { background: var(--bg-2); }
.section-blue { background: var(--bg-blue); }

/* ──────────────────────────── ATOMS ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  background: var(--bg-blue);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(34, 109, 163, 0.18);
}
.eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--orange); border-radius: 50%;
  box-shadow: 0 0 10px var(--orange);
}
.eyebrow.on-dark {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
  color: white;
}
.eyebrow.on-dark .dot { background: var(--orange-soft); box-shadow: 0 0 10px var(--orange-soft); }

h1, h2, h3, h4 { font-family: 'Manrope', sans-serif; color: var(--ink); line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 700; line-height: 1.05; letter-spacing: -0.03em; }
h3 { font-size: 1.4rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }

em.serif, .serif {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  color: var(--orange);
  font-weight: 500;
  letter-spacing: -0.02em;
}

p { color: var(--ink-2); }
.lead { font-size: clamp(1rem, 1.2vw, 1.15rem); color: var(--ink-2); }

/* Section heading */
.sec-head { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 3rem; }
.sec-head.center { text-align: center; align-items: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.sec-head .lead { max-width: 600px; }

/* ──────────────────────────── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.95rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.3s var(--ease-out);
  text-align: center;
  white-space: nowrap;
}
.btn-blue   { background: var(--blue); color: white; box-shadow: var(--shadow-blue); }
.btn-blue:hover   { background: var(--blue-deep); transform: translateY(-2px); box-shadow: 0 18px 36px rgba(34,109,163,0.35); }
.btn-orange { background: var(--orange); color: white; box-shadow: var(--shadow-orange); }
.btn-orange:hover { background: var(--orange-deep); transform: translateY(-2px); }
.btn-ghost  { border: 1.5px solid var(--line-2); color: var(--ink); background: white; }
.btn-ghost:hover  { border-color: var(--blue); color: var(--blue); }
.btn-white  { background: white; color: var(--blue); }
.btn-white:hover  { background: var(--bg-blue); transform: translateY(-2px); }
.btn-wa     { background: #25D366; color: white; box-shadow: 0 12px 28px rgba(37, 211, 102, 0.28); }
.btn-wa:hover     { background: #1DA851; transform: translateY(-2px); }
.btn-outline-white { border: 1.5px solid rgba(255,255,255,0.4); color: white; background: transparent; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; }

.btn .arrow { transition: transform 0.3s; display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.82rem; }

/* ──────────────────────────── HEADER ── */
header.site {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, padding 0.3s;
}
header.site.scrolled {
  background: rgba(255,255,255,0.95);
  border-bottom-color: var(--line);
  padding: 0.75rem 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; }
.brand img {
  height: 64px; width: auto; display: block;
  image-rendering: auto;
}
header.site.scrolled .brand img { height: 56px; transition: height 0.3s; }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--ink-2); transition: color 0.3s;
  position: relative; padding: 0.3rem 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--blue); color: white;
  padding: 0.65rem 1.2rem; border-radius: 10px;
  font-size: 0.85rem; font-weight: 600;
  transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 0.5rem;
  box-shadow: var(--shadow-blue);
}
.nav-cta:hover { background: var(--blue-deep); transform: translateY(-2px); }

.hamburger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: white;
  border: 1px solid var(--line-2);
  flex-direction: column; justify-content: center; align-items: center; gap: 4px;
  transition: all 0.3s;
}
.hamburger span {
  display: block; width: 18px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .brand img { height: 54px; }
  header.site.scrolled .brand img { height: 48px; }
}

/* Mobile drawer */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(15, 24, 39, 0.55);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }

.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 88vw);
  background: white;
  z-index: 210;
  padding: 5rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-out);
  display: flex; flex-direction: column;
  box-shadow: -20px 0 60px rgba(15,24,39,0.18);
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--bg-blue); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: background 0.3s;
}
.drawer-close:hover { background: var(--blue); color: white; }
.drawer-links { display: flex; flex-direction: column; gap: 0.25rem; flex: 1; list-style: none; }
.drawer-links a {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 0;
  font-size: 1.15rem; font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: color 0.3s, padding-left 0.3s;
}
.drawer-links a:hover, .drawer-links a.active { color: var(--blue); padding-left: 0.5rem; }
.drawer-links a::before {
  content: attr(data-num);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem; font-weight: 500;
  color: var(--orange); letter-spacing: 0.1em;
  width: 22px;
}
.drawer-foot {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem; margin-top: 1.5rem;
  display: flex; flex-direction: column; gap: 0.4rem;
  font-size: 0.9rem; color: var(--ink-2);
}
.drawer-foot a { color: var(--blue); font-weight: 600; }

/* ──────────────────────────── HERO (HOME) ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 78% 22%, rgba(222, 97, 45, 0.18), transparent 60%),
    radial-gradient(ellipse 80% 60% at 0% 90%, rgba(34, 109, 163, 0.08), transparent 60%),
    var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
  position: relative; z-index: 2;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 1.5rem 0 1.5rem;
  color: var(--ink);
}
.hero h1 em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  color: var(--orange);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.hero p.lead {
  font-size: clamp(1.02rem, 1.2vw, 1.18rem);
  color: var(--ink-2);
  max-width: 480px;
  margin-bottom: 2.25rem;
  line-height: 1.6;
}
.actions {
  display: flex; gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.meta {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  max-width: 600px;
}
.meta .num {
  font-weight: 700; font-size: clamp(1.4rem, 2.2vw, 1.95rem);
  color: var(--blue);
  display: block; line-height: 1; letter-spacing: -0.03em;
}
.meta .lbl {
  font-size: 0.7rem; color: var(--ink-mute);
  margin-top: 0.4rem; display: block;
  font-weight: 500;
}

/* Mango showcase */
.mango-stage {
  position: relative; aspect-ratio: 1;
  max-width: 500px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
}
.mango-glow {
  position: absolute; inset: 5%;
  background: radial-gradient(circle at 50% 50%, rgba(222, 97, 45, 0.45), transparent 60%);
  border-radius: 50%;
  filter: blur(60px);
  animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 0.7; transform: scale(1); } 50% { opacity: 1; transform: scale(1.1); } }
.mango-ring {
  position: absolute; inset: -2%;
  border: 1px dashed rgba(34, 109, 163, 0.4);
  border-radius: 50%;
  animation: spin 32s linear infinite;
}
.mango-ring::before, .mango-ring::after {
  content: ""; position: absolute;
  width: 8px; height: 8px;
  background: var(--blue); border-radius: 50%;
  box-shadow: 0 0 14px var(--blue);
}
.mango-ring::before { top: -4px; left: 50%; }
.mango-ring::after { bottom: -4px; left: 50%; background: var(--orange); box-shadow: 0 0 14px var(--orange); }
@keyframes spin { to { transform: rotate(360deg); } }

.mango-pic {
  position: relative;
  width: 75%; aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 50px 100px rgba(222, 97, 45, 0.25),
    0 20px 50px rgba(34, 109, 163, 0.18),
    0 0 0 4px rgba(255, 255, 255, 0.7);
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}
.mango-pic img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.leaf {
  position: absolute; font-size: 1.7rem; z-index: 3;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.1));
  animation: floatLeaf 7s ease-in-out infinite;
}
.leaf.l1 { top: 4%; left: 10%; }
.leaf.l2 { top: 22%; right: 4%; font-size: 1.3rem; animation-delay: -2s; }
.leaf.l3 { bottom: 14%; left: 14%; font-size: 1.5rem; animation-delay: -4s; }
@keyframes floatLeaf { 0%,100% { transform: translate(0,0) rotate(0); } 50% { transform: translate(8px,-10px) rotate(8deg); } }

.badge-card {
  position: absolute; z-index: 4;
  background: white;
  border-radius: var(--r-md);
  padding: 0.85rem 1rem;
  display: flex; align-items: center; gap: 0.7rem;
  box-shadow: var(--shadow-card);
  min-width: 200px;
  border: 1px solid var(--line);
}
.badge-card .b-ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.badge-card.b-blue .b-ic   { background: var(--bg-blue); color: var(--blue); }
.badge-card.b-orange .b-ic { background: var(--bg-warm); color: var(--orange); }
.badge-card .b-tt { font-size: 0.84rem; font-weight: 600; color: var(--ink); }
.badge-card .b-st { font-size: 0.72rem; color: var(--ink-mute); margin-top: 1px; }
.badge-card.b-top { top: 6%; right: -10%; animation: float 5s ease-in-out infinite; }
.badge-card.b-btm { bottom: 12%; left: -10%; animation: float 6.5s ease-in-out infinite reverse; }

@media (max-width: 900px) {
  .hero { padding: 6.5rem 0 3rem; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .mango-stage { max-width: 320px; order: -1; }
  .badge-card.b-top { right: -4%; min-width: 170px; padding: 0.65rem 0.8rem; }
  .badge-card.b-btm { left: -4%; min-width: 170px; padding: 0.65rem 0.8rem; }
  .meta { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .actions { margin-bottom: 2rem; }
}
@media (max-width: 480px) {
  .badge-card { min-width: 150px; padding: 0.55rem 0.7rem; }
  .badge-card .b-ic { width: 30px; height: 30px; font-size: 0.85rem; }
  .badge-card .b-tt { font-size: 0.78rem; }
  .badge-card .b-st { font-size: 0.66rem; }
  .leaf { font-size: 1.3rem; }
  .actions .btn { width: 100%; }
}

/* ──────────────────────────── PAGE HERO (interior pages) ── */
.page-hero {
  padding: 9rem 0 4rem;
  background:
    radial-gradient(ellipse 60% 60% at 80% 30%, rgba(222, 97, 45, 0.12), transparent 60%),
    radial-gradient(ellipse 70% 60% at 0% 100%, rgba(34, 109, 163, 0.08), transparent 60%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  margin: 1rem 0 1rem;
  letter-spacing: -0.03em;
}
.page-hero h1 em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic; color: var(--orange); font-weight: 500;
}
.page-hero p { max-width: 600px; font-size: 1.05rem; }
.page-hero .crumbs {
  display: flex; align-items: center; gap: 0.5rem;
  margin-top: 1.5rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute);
}
.page-hero .crumbs a { color: var(--blue); }
.page-hero .crumbs i { font-size: 0.55rem; color: var(--orange); }

/* ──────────────────────────── TRUST STRIP ── */
.trust {
  background: var(--bg-blue);
  border-top: 1px solid rgba(34,109,163,0.12);
  border-bottom: 1px solid rgba(34,109,163,0.12);
  padding: 1.4rem 0;
}
.trust-row {
  display: flex; align-items: center;
  gap: 2.5rem; flex-wrap: wrap;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-deep);
}
.trust-row .sep { color: var(--orange); font-family: 'Manrope'; }
@media (max-width: 600px) {
  .trust-row { gap: 1rem; font-size: 0.65rem; }
}

/* ──────────────────────────── STORY / SPLIT ── */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-grid.flip > :first-child { order: 2; }
.split-grid h2 { margin-bottom: 1.25rem; }
.split-grid h2 em { font-family: 'Fraunces', Georgia, serif; font-style: italic; color: var(--orange); font-weight: 500; }
.split-grid p { color: var(--ink-2); margin-bottom: 1rem; max-width: 520px; }

.split-img {
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15,24,39,0.12);
  position: relative;
}
.split-img::after {
  content: "";
  position: absolute;
  bottom: -16px; right: -16px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 16px 32px rgba(222, 97, 45, 0.4);
  z-index: 2;
}
.split-img img, .split-img video { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .split-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-grid.flip > :first-child { order: 0; }
  .split-img { aspect-ratio: 4/3; max-height: 460px; }
}

/* ──────────────────────────── VARIETY CARDS (3-col home preview) ── */
.head-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 2rem; margin-bottom: 3rem; flex-wrap: wrap;
}
.head-row h2 { margin-top: 0.75rem; }
.head-row h2 em { font-family: 'Fraunces', Georgia, serif; font-style: italic; color: var(--orange); font-weight: 500; }
.head-row .right { max-width: 360px; color: var(--ink-2); }

.v-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.v-card {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s ease;
  border: 1px solid var(--line);
  position: relative;
  display: block;
}
.v-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease-out);
  z-index: 5;
}
.v-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-h); }
.v-card:hover::before { transform: scaleX(1); }
.v-card .pic { aspect-ratio: 4/3; overflow: hidden; }
.v-card .pic img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.v-card:hover .pic img { transform: scale(1.05); }
.v-card .body { padding: 1.5rem; }
.v-card .num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.15em;
  color: var(--blue); font-weight: 600;
}
.v-card h3 { font-size: 1.4rem; font-weight: 700; margin-top: 0.5rem; letter-spacing: -0.02em; color: var(--ink); }
.v-card .sub { font-size: 0.88rem; color: var(--ink-mute); margin-top: 0.25rem; }
.v-card .arrow-row { display: flex; justify-content: flex-end; margin-top: 1rem; }
.v-card .arrow-row span {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-blue); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.v-card:hover .arrow-row span { background: var(--orange); color: white; transform: rotate(-45deg); }

@media (max-width: 900px) { .v-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .v-grid { grid-template-columns: 1fr; } }

/* ──────────────────────────── PRODUCT CARDS (2-col on varieties page) ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-h); }
.product-card .pic { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.product-card .pic img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.product-card:hover .pic img { transform: scale(1.05); }
.product-card .pic .pill {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(255,255,255,0.95); color: var(--blue);
  padding: 0.35rem 0.75rem; border-radius: 999px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(15,24,39,0.12);
}
.product-card .pic .pill.orange { color: var(--orange); }
.product-card .pic .season {
  position: absolute; bottom: 1rem; right: 1rem;
  background: rgba(15, 24, 39, 0.7); backdrop-filter: blur(6px);
  color: white; padding: 0.35rem 0.85rem;
  border-radius: 999px; font-size: 0.72rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.product-card .body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.product-card .body h3 { font-size: 1.45rem; margin-bottom: 0.2rem; }
.product-card .body h3 small { font-size: 0.85rem; font-weight: 400; color: var(--ink-mute); }
.product-card .body .subtitle { font-style: italic; color: var(--ink-mute); font-size: 0.85rem; margin-bottom: 1rem; }
.product-card .body .desc { color: var(--ink-2); font-size: 0.92rem; line-height: 1.65; margin-bottom: 1.25rem; }

.specs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem; margin-bottom: 1.25rem;
  padding: 1rem; background: var(--bg-2);
  border-radius: var(--r-md);
}
.spec { display: flex; align-items: flex-start; gap: 0.6rem; }
.spec i { color: var(--blue); margin-top: 0.25rem; flex-shrink: 0; font-size: 0.85rem; }
.spec .k {
  display: block; font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--ink-mute); font-weight: 600; margin-bottom: 1px;
}
.spec .v { display: block; font-size: 0.85rem; color: var(--ink); font-weight: 500; }

.tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.25rem; }
.tag-chip {
  padding: 0.3rem 0.75rem; border-radius: 999px;
  background: var(--bg-blue); color: var(--blue-deep);
  font-size: 0.72rem; font-weight: 600;
  border: 1px solid rgba(34,109,163,0.18);
}

.product-card .footer {
  margin-top: auto;
  padding: 1.1rem 1.5rem;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap;
}
.product-card .footer .btn { flex: 1; min-width: 120px; font-size: 0.82rem; padding: 0.7rem 1rem; }
.product-card .footer .moq {
  font-size: 0.7rem; color: var(--ink-mute); text-align: right; line-height: 1.3;
}
.product-card .footer .moq strong { display: block; color: var(--ink); font-size: 0.92rem; font-weight: 700; }

/* Custom enquire card */
.product-card.cta-style {
  background: linear-gradient(135deg, var(--blue-bg) 0%, var(--blue-deep) 100%);
  color: white; border: none;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 3rem 2rem; text-align: center;
  min-height: 420px;
}
.product-card.cta-style h3 { color: white; font-size: 1.5rem; margin-bottom: 0.75rem; }
.product-card.cta-style p { color: rgba(255,255,255,0.78); font-size: 0.92rem; margin-bottom: 2rem; max-width: 280px; }
.product-card.cta-style .btn { width: 100%; max-width: 240px; margin: 0.35rem 0; }

@media (max-width: 760px) {
  .product-grid { grid-template-columns: 1fr; }
  .specs { grid-template-columns: 1fr; }
}

/* ──────────────────────────── CTA SECTION ── */
.cta {
  padding: clamp(4rem, 8vw, 7rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-bg) 0%, var(--blue-deep) 100%);
  color: white;
}
.cta::before {
  content: ""; position: absolute;
  top: -150px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(222, 97, 45, 0.4), transparent 60%);
  filter: blur(20px); pointer-events: none;
}
.cta::after {
  content: ""; position: absolute;
  bottom: -200px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(34, 109, 163, 0.5), transparent 60%);
  pointer-events: none;
}
.cta .container { position: relative; z-index: 2; }
.cta h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: white;
  margin: 1.25rem auto;
  max-width: 700px;
}
.cta h2 em { font-family: 'Fraunces', Georgia, serif; font-style: italic; color: var(--orange-soft); font-weight: 500; }
.cta p { color: rgba(255,255,255,0.78); max-width: 540px; margin: 0 auto 2rem; }
.cta .actions { justify-content: center; margin-bottom: 0; }

/* ──────────────────────────── FOOTER ── */
footer.site {
  background: var(--ink);
  color: white;
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img {
  height: 96px; width: auto;
  opacity: 0.95;
  margin-bottom: 1.25rem;
}
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 1.25rem; max-width: 320px; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s;
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: white; }

.footer-col h4 {
  color: white;
  font-size: 0.78rem;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul a {
  color: rgba(255,255,255,0.7); font-size: 0.9rem;
  transition: color 0.3s, padding-left 0.3s;
}
.footer-col ul a:hover { color: var(--orange); padding-left: 0.4rem; }

.footer-contact { display: flex; flex-direction: column; gap: 0.85rem; font-size: 0.88rem; }
.footer-contact .row { display: flex; gap: 0.75rem; align-items: flex-start; color: rgba(255,255,255,0.7); }
.footer-contact .row i { color: var(--orange); width: 16px; margin-top: 4px; flex-shrink: 0; font-size: 0.85rem; }
.footer-contact .row a { color: rgba(255,255,255,0.7); transition: color 0.3s; }
.footer-contact .row a:hover { color: var(--orange); }

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.85); }
.footer-bottom a:hover { color: var(--orange); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ──────────────────────────── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform 0.3s;
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50%     { box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4), 0 0 0 18px rgba(37, 211, 102, 0); }
}

/* ──────────────────────────── BENTO / CERTS ── */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.bento-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 1.75rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
  display: flex; flex-direction: column; gap: 0.85rem;
  min-height: 220px;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-h); }
.bento-card .b-head {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 600;
}
.bento-card .b-head .ic {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--bg-blue); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}
.bento-card .b-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.4rem; font-weight: 700;
  letter-spacing: -0.02em; color: var(--ink); line-height: 1.15;
}
.bento-card .b-title .accent { color: var(--orange); font-family: 'Fraunces', Georgia, serif; font-style: italic; font-weight: 500; }
.bento-card .b-sub { font-size: 0.92rem; color: var(--ink-2); }
.bento-card .b-glyph {
  position: absolute; bottom: -20px; right: -10px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 9rem; font-weight: 600;
  color: rgba(34, 109, 163, 0.06);
  pointer-events: none; line-height: 1;
}
.bento-card.tall { grid-row: span 2; min-height: 460px; }
.bento-card.wide { grid-column: span 2; }
.bento-card.dark {
  background: linear-gradient(135deg, var(--blue-bg) 0%, var(--blue-deep) 100%);
  color: white; border-color: transparent;
}
.bento-card.dark .b-head, .bento-card.dark .b-title, .bento-card.dark .b-sub { color: white; }
.bento-card.dark .b-head { color: rgba(255,255,255,0.7); }
.bento-card.dark .b-head .ic { background: rgba(255,255,255,0.12); color: white; }
.bento-card.dark .b-glyph { color: rgba(255,255,255,0.08); }

@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-card.tall { grid-row: auto; min-height: 220px; }
  .bento-card.wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .bento-card.wide { grid-column: auto; }
}

/* ──────────────────────────── FEATURE / WHY GRID ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feature-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-h); }
.feature-card .ic {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--bg-blue); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 1.25rem;
  transition: background 0.3s, color 0.3s;
}
.feature-card:hover .ic { background: var(--orange); color: white; }
.feature-card .num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.15em;
  color: var(--blue); font-weight: 600; display: block; margin-bottom: 0.5rem;
}
.feature-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.feature-card p { font-size: 0.92rem; color: var(--ink-2); line-height: 1.6; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }

/* ──────────────────────────── PROCESS STEPS ── */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  counter-reset: step;
}
.process-step {
  background: white;
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease-out);
  position: relative;
}
.process-step:hover { transform: translateY(-4px); }
.process-step .ic {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--blue); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-blue);
}
.process-step.accent .ic { background: var(--orange); box-shadow: var(--shadow-orange); }
.process-step .num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem; letter-spacing: 0.15em;
  color: var(--ink-mute); font-weight: 600;
  text-transform: uppercase; display: block; margin-bottom: 0.5rem;
}
.process-step h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.85rem; color: var(--ink-2); line-height: 1.55; }

/* ──────────────────────────── TABLE ── */
.tbl-wrap { overflow-x: auto; border-radius: var(--r-lg); box-shadow: var(--shadow-card); }
.tbl {
  width: 100%; border-collapse: collapse;
  background: white; min-width: 560px;
}
.tbl thead tr { background: var(--blue-bg); color: white; }
.tbl th {
  padding: 1rem 1.25rem; text-align: center;
  font-size: 0.78rem; font-weight: 600;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.tbl th:first-child { text-align: left; }
.tbl td {
  padding: 0.95rem 1rem; text-align: center;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem; color: var(--ink-2);
}
.tbl td:first-child { text-align: left; font-weight: 600; color: var(--ink); padding-left: 1.25rem; }
.tbl tbody tr:nth-child(even) { background: var(--bg-2); }
.tbl tbody tr:last-child td { border-bottom: none; }
.pill {
  display: inline-block; padding: 0.28rem 0.75rem;
  border-radius: 999px; font-size: 0.7rem; font-weight: 700;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.05em;
}
.pill.peak  { background: var(--orange); color: white; }
.pill.early { background: var(--bg-warm); color: var(--orange-deep); }
.pill.late  { background: var(--bg-blue); color: var(--blue-deep); }

/* ──────────────────────────── COUNTRIES ── */
.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.85rem;
}
.country {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.1rem 0.75rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.country:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: rgba(34, 109, 163, 0.4); }
.country .flag { font-size: 1.6rem; margin-bottom: 0.35rem; }
.country .name { font-size: 0.85rem; font-weight: 600; color: var(--ink); }

/* ──────────────────────────── TESTIMONIAL ── */
.testimonial {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--bg-blue);
}
.testi-stage {
  max-width: 780px; margin: 0 auto;
  text-align: center;
  position: relative;
}
.testi-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  line-height: 1.45;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 2rem;
  position: relative;
}
.testi-quote::before {
  content: """;
  position: absolute; top: -2rem; left: 50%;
  transform: translateX(-50%);
  font-size: 4rem; color: var(--orange);
  line-height: 1; opacity: 0.4;
}
.testi-author { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.testi-author .who { font-weight: 700; color: var(--ink); }
.testi-author .div { width: 24px; height: 1px; background: var(--orange); }
.testi-author .where { font-size: 0.9rem; color: var(--ink-mute); }

.testi-dots { display: flex; justify-content: center; gap: 0.6rem; margin-top: 2rem; }
.testi-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(34, 109, 163, 0.25);
  transition: all 0.3s;
}
.testi-dots button.active { background: var(--orange); width: 32px; border-radius: 5px; }

.testi-slide { display: none; }
.testi-slide.active { display: block; animation: fadeIn 0.6s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ──────────────────────────── FAQ ── */
.faq-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.faq-side h2 { margin-bottom: 1rem; }
.faq-side h2 em { font-family: 'Fraunces', Georgia, serif; font-style: italic; color: var(--orange); font-weight: 500; }
.faq-side p { margin-bottom: 1.5rem; max-width: 360px; }

.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: white;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.faq-item:hover { border-color: rgba(34,109,163,0.3); }
.faq-item.open { box-shadow: var(--shadow-card); border-color: rgba(34,109,163,0.4); }
.faq-q {
  padding: 1.25rem 1.5rem;
  font-weight: 600; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-size: 1rem; gap: 1rem;
  user-select: none;
}
.faq-q .toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-blue); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; flex-shrink: 0;
  transition: all 0.3s;
}
.faq-item.open .toggle { background: var(--orange); color: white; transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s ease, padding 0.45s ease;
  padding: 0 1.5rem;
}
.faq-item.open .faq-a { max-height: 280px; padding: 0 1.5rem 1.25rem; }
.faq-a p { font-size: 0.92rem; color: var(--ink-2); line-height: 1.65; }

@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ──────────────────────────── GALLERY ── */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  justify-content: center; margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: white; color: var(--ink-2);
  border: 1px solid var(--line);
  font-size: 0.85rem; font-weight: 600;
  transition: all 0.3s;
}
.filter-btn:hover { border-color: var(--blue); color: var(--blue); }
.filter-btn.active { background: var(--blue); color: white; border-color: var(--blue); box-shadow: var(--shadow-blue); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: 220px;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-2);
  transition: opacity 0.4s, transform 0.4s;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .ov {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,24,39,0) 50%, rgba(15,24,39,0.7) 100%);
  display: flex; align-items: flex-end; justify-content: flex-end;
  padding: 1rem;
  color: white; font-size: 1.1rem;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .ov { opacity: 1; }

.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(15, 24, 39, 0.95);
  z-index: 300;
  align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%; max-height: 90vh;
  border-radius: var(--r-md);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: background 0.3s;
}
.lightbox-close:hover { background: var(--orange); }

/* ──────────────────────────── FORMS ── */
.form-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
}
.form-card h3 {
  font-size: 1.35rem; margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.form-card h3 i { color: var(--orange); }
.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-bottom: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label {
  font-size: 0.78rem; font-weight: 600;
  color: var(--ink); text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line-2);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(34, 109, 163, 0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }

@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; gap: 0; } }

/* ──────────────────────────── CONTACT GRID ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 3rem; align-items: start;
}
.contact-card {
  background: white;
  border-radius: var(--r-md);
  padding: 1.25rem;
  border: 1px solid var(--line);
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 0.75rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-card:hover { border-color: rgba(34,109,163,0.3); box-shadow: var(--shadow-card); }
.contact-card .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg-blue); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-card h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-mute); margin-bottom: 0.25rem; font-weight: 700; }
.contact-card .v { font-size: 1rem; font-weight: 600; color: var(--ink); }
.contact-card .v a { color: var(--ink); transition: color 0.3s; }
.contact-card .v a:hover { color: var(--blue); }
.contact-card .v p { font-size: 0.9rem; color: var(--ink-2); margin: 0; font-weight: 400; }
.contact-card .small { font-size: 0.78rem; color: var(--ink-mute); margin-top: 0.3rem; }

.wa-card {
  display: flex; align-items: center; gap: 1rem;
  background: #25D366; color: white;
  padding: 1.25rem 1.5rem;
  border-radius: var(--r-md); margin-top: 1rem;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.25);
}
.wa-card:hover { background: #1DA851; transform: translateY(-2px); }
.wa-card i.brand { font-size: 1.8rem; }
.wa-card .small { font-size: 0.78rem; opacity: 0.9; font-weight: 400; }
.wa-card i.arrow-r { margin-left: auto; }

.map-wrap {
  margin-top: 3rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  height: 400px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-card { padding: 1.75rem; }
  .map-wrap { height: 320px; }
}

/* ──────────────────────────── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-x { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s var(--ease-out); }
.reveal-x.left { transform: translateX(-40px); }
.reveal-x.visible { opacity: 1; transform: none; }

/* ──────────────────────────── UTILITIES ── */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }

/* ──────────────────────────── ULTRA-SMALL SCREEN POLISH ── */
@media (max-width: 480px) {
  .nav-cta { display: none; }
  header.site { padding: 0.85rem 0; }
  .brand img { height: 46px; }
  header.site.scrolled .brand img { height: 42px; }
  .footer-brand img { height: 80px; }

  .page-hero { padding: 7rem 0 3rem; }
  .page-hero h1 { font-size: 2rem; }

  .cta .actions, .actions { flex-direction: column; align-items: stretch; }
  .cta .actions .btn, .actions .btn { width: 100%; }

  .sec-head { margin-bottom: 2rem; }
  .section { padding: 3.5rem 0; }

  .form-card { padding: 1.25rem; border-radius: var(--r-md); }
  .form-card h3 { font-size: 1.15rem; }

  .product-card .footer { flex-direction: column; align-items: stretch; }
  .product-card .footer .moq { text-align: center; }

  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-item.tall { grid-row: span 1; }

  .testi-quote::before { font-size: 3rem; top: -1.4rem; }

  .wa-float { width: 50px; height: 50px; font-size: 1.4rem; bottom: 1rem; right: 1rem; }

  .bento-card { padding: 1.5rem; min-height: 180px; }
  .bento-card .b-glyph { font-size: 7rem; }

  .feature-card { padding: 1.5rem; }

  .contact-card { padding: 1rem; }
  .contact-card .ic { width: 38px; height: 38px; font-size: 0.9rem; }

  .meta { gap: 0.75rem; padding-top: 1.25rem; }
  .meta .num { font-size: 1.25rem; }
  .meta .lbl { font-size: 0.62rem; }
}

@media (max-width: 360px) {
  .container { padding: 0 1rem; }
  .hero h1 { font-size: 2rem; }
  .badge-card { display: none; }
  .mango-stage { max-width: 260px; }
}


/* =========================================================
   BRAND BIRD SYSTEM — flying logo birds, ambient light,
   warm tint, story timeline. (Bird extracted from master logo;
   inlined as base64 because CSS mask fetches are CORS-blocked
   over file://.)
   ========================================================= */
:root {
  --bird: url("data:image/png;base64,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");
}

/* sections that host flying birds */
.has-wm { position: relative; overflow: hidden; }
.has-wm .container { position: relative; z-index: 1; }

/* static bird accent (mango circle) */
.wm {
  position: absolute; pointer-events: none; z-index: 0;
  background: var(--blue);
  -webkit-mask: var(--bird) center/contain no-repeat;
          mask: var(--bird) center/contain no-repeat;
}

/* mango stage: warm sunrise fill + blended photo */
.mango-pic {
  background:
    radial-gradient(circle at 68% 16%, rgba(222, 97, 45, 0.22), transparent 42%),
    radial-gradient(circle at 32% 30%, #FFF8F0 0%, #FBE9D9 55%, #F3D7C0 100%);
}
.mango-pic img { mix-blend-mode: multiply; position: relative; z-index: 1; }
.mango-pic .wm { z-index: 0; }

/* ── 3D flying birds: logo bird split into body + wings; wings beat,
     bird banks along a flight path; depth via size + blur + opacity ── */
.birdfly {
  position: absolute; top: 0; left: 0;
  pointer-events: none; z-index: 1;
  offset-rotate: auto 0deg;
  animation: flyPath var(--bf-dur, 30s) linear infinite;
  animation-delay: var(--bf-delay, 0s);
  filter: blur(var(--bf-blur, 0px));
  opacity: var(--bf-op, 0.5);
}
.birdfly .bob { position: absolute; inset: 0; animation: birdBob 4.2s ease-in-out infinite; }
.birdfly .layer {
  position: absolute; inset: 0;
  background: var(--bf-color, var(--blue-soft));
  -webkit-mask: var(--bird) center/contain no-repeat;
          mask: var(--bird) center/contain no-repeat;
}
.birdfly .body  { clip-path: polygon(0 62%, 100% 36%, 100% 100%, 0 100%); }
.birdfly .wings {
  clip-path: polygon(0 0, 100% 0, 100% 38%, 0 64%);
  transform-origin: 50% 58%;
  animation: flapWings var(--bf-flap, 1s) ease-in-out infinite;
  animation-delay: var(--bf-delay, 0s);
}
@keyframes flapWings {
  0%, 100% { transform: scaleY(1); }
  50%      { transform: scaleY(0.62) skewX(4deg); }
}
@keyframes flyPath {
  0%   { offset-distance: 0%; }
  100% { offset-distance: 100%; }
}
@keyframes birdBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

/* hero flock: three depth planes */
.birdfly.f1 {
  width: 92px; height: 88px;
  --bf-dur: 32s; --bf-flap: 1.05s; --bf-op: 0.55;
  offset-path: path("M -120 380 C 250 270, 520 150, 820 175 C 1050 190, 1280 120, 1580 85");
}
.birdfly.f2 {
  width: 54px; height: 52px;
  --bf-dur: 46s; --bf-delay: -19s; --bf-flap: 0.9s; --bf-op: 0.34; --bf-blur: 0.6px;
  offset-path: path("M -80 210 C 320 150, 720 265, 1540 195");
}
.birdfly.f3 {
  width: 32px; height: 31px;
  --bf-dur: 58s; --bf-delay: -37s; --bf-flap: 0.8s; --bf-op: 0.22; --bf-blur: 1.4px;
  offset-path: path("M -60 480 C 420 430, 920 330, 1520 295");
}
/* white bird crossing the dark CTA */
.birdfly.f-cta {
  width: 62px; height: 59px;
  --bf-color: #fff; --bf-dur: 28s; --bf-flap: 0.95s; --bf-op: 0.5;
  offset-path: path("M -90 250 C 350 180, 800 120, 1560 70");
}
/* section birds: slow "live watermarks" */
.birdfly.w-a {
  width: 130px; height: 124px;
  --bf-op: 0.14; --bf-dur: 55s; --bf-flap: 1.2s;
  offset-path: path("M -160 340 C 330 240, 780 140, 1560 210");
}
.birdfly.w-b {
  width: 52px; height: 50px;
  --bf-op: 0.11; --bf-blur: 0.8px; --bf-dur: 72s; --bf-delay: -33s; --bf-flap: 0.95s;
  offset-path: path("M -70 150 C 420 250, 880 330, 1510 250");
}
.birdfly.w-c {
  width: 84px; height: 80px;
  --bf-op: 0.13; --bf-dur: 64s; --bf-delay: -16s; --bf-flap: 1.05s;
  offset-path: path("M -100 400 C 360 310, 820 190, 1550 150");
}
/* page-hero birds (interior pages, shallower section) */
.birdfly.ph-a {
  width: 64px; height: 61px;
  --bf-op: 0.35; --bf-dur: 38s; --bf-flap: 1s;
  offset-path: path("M -80 210 C 350 120, 800 190, 1520 110");
}
.birdfly.ph-b {
  width: 36px; height: 34px;
  --bf-op: 0.2; --bf-blur: 1px; --bf-dur: 55s; --bf-delay: -26s; --bf-flap: 0.85s;
  offset-path: path("M -50 95 C 400 165, 900 85, 1490 155");
}

/* warm-tinted section */
.section-warm { background: var(--bg-warm); }

/* ambient light: white sections never read as flat white */
.section:not(.section-bg):not(.section-warm):not(.section-blue) {
  background:
    radial-gradient(ellipse 55% 50% at 100% 0%, rgba(222, 97, 45, 0.055), transparent 62%),
    radial-gradient(ellipse 60% 55% at 0% 100%, rgba(34, 109, 163, 0.05), transparent 62%),
    var(--bg);
}

/* story micro-timeline: dawn -> packed -> shipped */
.story-points {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem; margin: 1.75rem 0 0.5rem; max-width: 540px;
}
.story-points .sp {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 0.9rem 0.85rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}
.story-points .sp:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: rgba(34, 109, 163, 0.35); }
.story-points .sp i {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--bg-warm); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}
.story-points .sp:nth-child(2) i { background: var(--bg-blue); color: var(--blue); }
.story-points .sp strong { font-size: 0.82rem; color: var(--ink); display: block; }
.story-points .sp span.t { font-size: 0.72rem; color: var(--ink-mute); line-height: 1.4; }
@media (max-width: 560px) { .story-points { grid-template-columns: 1fr; } }

/* graceful degradation */
@supports not (offset-path: path("M0 0 L1 1")) { .birdfly { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .birdfly, .birdfly .wings, .birdfly .bob { animation: none; }
  .birdfly { display: none; }
}
