/* =====================================================================
   MH Foods — brand stylesheet
   Warm packaged-snacks brand system: tomato red, coral, turmeric,
   charcoal, cream. Inspired in structure/feel by warm food-brand sites.
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --red: #d6382e;
  --red-deep: #b0281f;
  --red-dark: #9d1f17;
  --coral: #ec9b96;
  --coral-soft: #f3b7b1;
  --turmeric: #f5b301;
  --gold: #f6a71f;
  --orange: #f0842a;

  --charcoal: #1c1b1a;
  --charcoal-2: #262523;
  --charcoal-3: #333230;

  --cream: #fbf6ee;
  --cream-2: #fdfaf4;
  --gray-bg: #f4f3f1;
  --line: #ececec;

  --ink: #222020;
  --body: #5f5c58;
  --muted: #6c6963;
  --white: #ffffff;

  --font-head: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-script: "Pacifico", "Brush Script MT", cursive;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;

  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;

  --maxw: 1180px;
  --gut: clamp(18px, 5vw, 48px);

  --shadow-sm: 0 6px 18px rgba(40, 25, 20, 0.06);
  --shadow: 0 18px 40px rgba(40, 25, 20, 0.10);
  --shadow-lg: 0 30px 70px rgba(40, 25, 20, 0.16);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background: var(--cream-2);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.12;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.sr-only:focus {
  position: fixed; top: 12px; left: 12px; width: auto; height: auto; margin: 0;
  clip: auto; overflow: visible; padding: 11px 18px; background: #fff; color: var(--red);
  border-radius: 10px; box-shadow: var(--shadow); z-index: 200;
  font-family: var(--font-head); font-weight: 600;
}
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

/* ---------- Reusable bits ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--ink);
  font-family: var(--font-head); font-weight: 600; font-size: 0.82rem;
  padding: 8px 16px; border-radius: 999px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); margin-bottom: 22px; letter-spacing: 0.02em;
}
.eyebrow .spark { color: var(--red); font-size: 1rem; }

.section { padding: clamp(56px, 9vw, 104px) 0; }
.section-head { max-width: 620px; margin: 0 auto clamp(34px, 5vw, 54px); text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }
.section-title {
  font-size: clamp(1.9rem, 4.4vw, 2.9rem); font-weight: 800; color: var(--ink);
}
.section-title .accent { color: var(--red); }
.section-sub { color: var(--body); font-size: 1.02rem; margin-top: 6px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.98rem;
  padding: 14px 30px; border-radius: 999px; border: 2px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s;
  will-change: transform;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 12px 26px rgba(214, 56, 46, 0.32); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-3px); box-shadow: 0 18px 34px rgba(214, 56, 46, 0.4); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.65); }
.btn-ghost:hover { background: #fff; color: var(--red); transform: translateY(-3px); }
.btn-dark { background: var(--charcoal); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-3px); }
.btn-light { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.stars { display: inline-flex; gap: 2px; color: var(--turmeric); font-size: 0.95rem; }
.stars svg { width: 17px; height: 17px; fill: var(--turmeric); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251, 246, 238, 0.9);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s, background 0.3s;
}
.site-header.scrolled { box-shadow: 0 8px 26px rgba(40, 25, 20, 0.08); background: rgba(251, 246, 238, 0.97); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 50px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: var(--font-head); font-weight: 500; color: var(--ink);
  padding: 9px 16px; border-radius: 999px; position: relative; transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--red); }
.nav-links a.active { color: var(--red); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 2px; height: 3px;
  background: var(--red); border-radius: 3px;
}
.nav-cta { margin-left: 10px; }
.nav-toggle {
  display: none; width: 46px; height: 46px; border: none; border-radius: 12px;
  background: var(--red); color: #fff; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; stroke: #fff; }

/* mobile drawer */
.nav-backdrop {
  position: fixed; inset: 0; background: rgba(0, 0, 0, 0.42); opacity: 0; visibility: hidden;
  transition: opacity 0.3s; z-index: 70;
}
.nav-backdrop.open { opacity: 1; visibility: visible; }
.nav-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(320px, 84vw);
  background: var(--cream); z-index: 80; transform: translateX(100%);
  transition: transform 0.36s var(--ease); box-shadow: -20px 0 50px rgba(0, 0, 0, 0.18);
  padding: 26px 24px; display: flex; flex-direction: column;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer .drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.nav-drawer .drawer-top img { height: 42px; }
.drawer-close { width: 46px; height: 46px; border: none; background: #fff; border-radius: 12px; box-shadow: var(--shadow-sm); font-size: 1.4rem; color: var(--ink); }
.nav-drawer a {
  font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; color: var(--ink);
  padding: 15px 12px; border-bottom: 1px solid rgba(0, 0, 0, 0.06); display: flex; justify-content: space-between; align-items: center;
}
.nav-drawer a.active { color: var(--red); }
.nav-drawer a.btn { margin-top: 22px; color: #fff; justify-content: center; border-bottom: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 130% at 78% 18%, #e6534a 0%, var(--red) 42%, var(--red-deep) 100%);
  color: #fff;
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: 0.4; pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.12) 0, transparent 40%),
    radial-gradient(circle at 90% 30%, rgba(255,255,255,0.10) 0, transparent 36%);
}
.hero-inner {
  position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 1fr;
  align-items: center; gap: 30px; min-height: min(78vh, 660px); padding: 48px 0 70px;
}
.hero-copy .eyebrow { background: rgba(255,255,255,0.16); color: #fff; border-color: rgba(255,255,255,0.25); backdrop-filter: blur(4px); }
.hero-copy .eyebrow .spark { color: #ffd85e; }
.hero-script {
  font-family: var(--font-script); font-weight: 400;
  font-size: clamp(2.1rem, 8.5vw, 5.2rem); line-height: 1.08; color: #fff;
  margin: 0 0 14px; text-shadow: 0 6px 26px rgba(0,0,0,0.18); letter-spacing: 0;
}
.hero-script .y { color: #ffd85e; }
.hero-title {
  font-family: var(--font-head); font-weight: 800; color: #fff;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem); letter-spacing: 0.02em; margin: 0 0 14px; text-transform: uppercase;
}
.hero-lead { color: rgba(255,255,255,0.92); font-size: 1.08rem; max-width: 460px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual { position: relative; min-height: 420px; }
.hero-visual .bowl {
  position: relative; z-index: 3; width: min(100%, 500px); margin-left: auto;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.28));
}
.hero-visual .packet {
  position: absolute; z-index: 4; width: 40%; right: 2%; top: -6%;
  filter: drop-shadow(0 26px 34px rgba(0,0,0,0.32));
  animation: bob 6s ease-in-out infinite;
}
.float { position: absolute; z-index: 2; pointer-events: none; filter: drop-shadow(0 10px 14px rgba(0,0,0,0.18)); }
.float.f1 { width: 92px; left: -2%; top: 12%; animation: bob 5s ease-in-out infinite; }
.float.f2 { width: 76px; left: 8%; bottom: 6%; animation: bob 6.5s ease-in-out infinite 0.4s; }
.float.f3 { width: 60px; right: 30%; bottom: -2%; animation: bob 5.6s ease-in-out infinite 0.8s; }
.float.leaf1 { width: 58px; left: 30%; top: 2%; animation: sway 7s ease-in-out infinite; }
.float.leaf2 { width: 46px; right: 6%; bottom: 20%; animation: sway 6s ease-in-out infinite 0.6s; }

@keyframes bob { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-16px) rotate(-3deg); } }
@keyframes sway { 0%,100% { transform: translateY(0) rotate(-6deg); } 50% { transform: translateY(-12px) rotate(8deg); } }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--red); color: #fff; overflow: hidden; padding: 15px 0;
  position: relative; z-index: 5;
}
.marquee-track {
  display: flex; width: max-content; gap: 0; animation: scroll-x 26s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 34px; padding: 0 34px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.18rem; white-space: nowrap;
}
.marquee-item .dot { color: #ffd85e; font-size: 1.1rem; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- About preview (home) ---------- */
.bg-gray { background: var(--gray-bg); }
.bg-cream { background: var(--cream); }

.about-preview .grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 66px); align-items: center; }
.about-media { position: relative; }
.about-banner {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--orange), #e2620f); box-shadow: var(--shadow);
  aspect-ratio: 16 / 11;
}
.about-banner img { width: 100%; height: 100%; object-fit: cover; }
.about-banner .tag {
  position: absolute; top: 16px; left: 18px; font-family: var(--font-script);
  color: #fff; font-size: 1.5rem; text-shadow: 0 3px 10px rgba(0,0,0,0.25);
}
.stat-card {
  position: absolute; left: -6%; bottom: -8%; z-index: 4; background: #fff;
  border-radius: var(--radius); padding: 22px 26px 22px; box-shadow: var(--shadow-lg);
  width: min(240px, 62%); border: 1px solid var(--line);
}
.stat-card .ic { width: 44px; height: 44px; color: var(--ink); margin-bottom: 12px; }
.stat-card .num { font-family: var(--font-head); font-weight: 800; font-size: 2.5rem; color: var(--ink); line-height: 1; }
.stat-card .lab { font-family: var(--font-head); font-weight: 500; color: var(--body); font-size: 0.92rem; }
.stat-card .chip-badge {
  position: absolute; top: -26px; right: -14px; width: 62px; height: 62px; border-radius: 50%;
  background: #fff; box-shadow: var(--shadow); display: grid; place-items: center; overflow: hidden; border: 4px solid #fff;
}
.stat-card .chip-badge img { width: 76%; }

.about-copy h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); font-weight: 800; }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; margin: 24px 0 30px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: 0.98rem; }
.check-list .tick { flex: 0 0 24px; width: 24px; height: 24px; border-radius: 7px; background: var(--red); display: grid; place-items: center; }
.check-list .tick svg { width: 14px; height: 14px; stroke: #fff; }

/* ---------- Product preview / grid ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.4vw, 28px); }
.product-card {
  background: #fff; border-radius: var(--radius); padding: 20px 20px 26px; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line); position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.product-thumb {
  border-radius: var(--radius-sm); background: linear-gradient(160deg, #fff, var(--gray-bg));
  aspect-ratio: 1 / 1; display: grid; place-items: center; margin-bottom: 16px; overflow: hidden; padding: 10px;
}
.product-thumb img { height: 100%; width: auto; object-fit: contain; transition: transform 0.4s var(--ease); }
.product-card:hover .product-thumb img { transform: scale(1.06) rotate(-2deg); }
.product-card h3 { font-family: var(--font-serif); font-weight: 700; font-size: 1.28rem; color: var(--ink); margin: 4px 0 8px; }
.product-card p { font-size: 0.95rem; color: var(--body); margin: 8px 0 0; }
.product-card .stars { margin-top: 4px; }

/* ---------- Specialities / dark band ---------- */
.band-dark { background: var(--charcoal); color: #fff; position: relative; overflow: hidden; }
.band-dark .section-title { color: #fff; }
.band-dark .accent { color: var(--gold); }
.band-dark .eyebrow { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.14); }
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.spec-card {
  background: var(--charcoal-2); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius);
  padding: 32px 28px; transition: transform 0.3s var(--ease), background 0.3s;
}
.spec-card:hover { transform: translateY(-6px); background: var(--charcoal-3); }
.spec-card .ic {
  width: 58px; height: 58px; border-radius: 16px; background: var(--red); display: grid; place-items: center; margin-bottom: 18px;
}
.spec-card .ic svg { width: 28px; height: 28px; stroke: #fff; fill: none; }
.spec-card h3 { color: #fff; font-size: 1.24rem; font-weight: 700; }
.spec-card p { color: rgba(255,255,255,0.66); font-size: 0.96rem; margin: 0; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--gray-bg); }
.tcarousel { position: relative; }
.tviewport { overflow: hidden; }
.ttrack { display: flex; transition: transform 0.5s var(--ease); }
.tslide { flex: 0 0 33.3333%; padding: 14px; }
.tcard {
  background: #fff; border-radius: var(--radius); padding: 34px 30px 30px; position: relative;
  box-shadow: var(--shadow-sm); height: 100%; border: 1px solid var(--line);
}
.tcard .quote {
  position: absolute; top: -22px; left: 28px; width: 46px; height: 46px; border-radius: 50%;
  background: var(--charcoal); color: #fff; display: grid; place-items: center; font-family: var(--font-serif);
  font-size: 1.8rem; line-height: 1; box-shadow: var(--shadow);
}
.tcard .quote svg { width: 20px; height: 20px; fill: #fff; }
.tcard--dark { background: var(--charcoal); border-color: var(--charcoal); box-shadow: var(--shadow); }
.tcard--dark .quote { background: var(--red); }
.tcard .stars { margin: 8px 0 14px; }
.tcard p { color: var(--body); font-size: 0.98rem; }
.tcard--dark p { color: rgba(255,255,255,0.82); }
.tperson { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.tperson .av { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; background: var(--coral); }
.tperson .nm { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 0.98rem; }
.tcard--dark .tperson .nm { color: #fff; }
.tperson .rl { font-size: 0.82rem; color: var(--muted); }
.tdots { display: flex; justify-content: center; gap: 6px; margin-top: 26px; }
.tdots button {
  position: relative; width: 12px; height: 12px; border-radius: 50%; border: none;
  background: #d7d3cd; transition: transform 0.25s, background 0.25s; padding: 0;
  display: grid; place-items: center;
}
.tdots button::after { content: ""; position: absolute; inset: -12px; } /* ~36px touch target */
.tdots button.active { background: var(--red); transform: scale(1.3); }

/* ---------- Page banner (inner pages) ---------- */
.page-banner {
  background: linear-gradient(180deg, #c34a3f 0%, #b23a30 100%);
  color: #fff; text-align: center; padding: clamp(46px, 8vw, 78px) 0; position: relative; overflow: hidden;
}
.page-banner::after {
  content: ""; position: absolute; inset: 0; opacity: 0.12; pointer-events: none;
  background: radial-gradient(circle at 15% 120%, rgba(255,255,255,0.5), transparent 40%),
              radial-gradient(circle at 90% -20%, rgba(255,255,255,0.4), transparent 42%);
}
.page-banner h1 { font-family: var(--font-head); font-weight: 800; color: #fff; font-size: clamp(2rem, 5vw, 3.1rem); margin: 0; position: relative; text-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.page-banner .crumbs { position: relative; font-family: var(--font-head); font-weight: 500; margin-top: 10px; color: rgba(255,255,255,0.92); font-size: 0.95rem; }
.page-banner .crumbs a:hover { text-decoration: underline; }

/* ---------- About page ---------- */
.about-hero .grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(34px, 6vw, 70px); align-items: center; }
.about-hero h2 { font-size: clamp(1.9rem, 4.4vw, 2.9rem); font-weight: 800; }
.about-circles { position: relative; min-height: 440px; }
.about-circles .c1, .about-circles .c2 { border-radius: 50%; overflow: hidden; box-shadow: var(--shadow); border: 8px solid #fff; }
.about-circles .c1 { width: 74%; aspect-ratio: 1; margin-left: auto; }
.about-circles .c2 { width: 46%; aspect-ratio: 1; position: absolute; left: 0; bottom: -4%; }
.about-circles img { width: 100%; height: 100%; object-fit: cover; }
.about-circles { overflow-x: clip; }
.about-circles .blob { position: absolute; z-index: -1; width: 68%; height: 70%; right: 0; top: -8%; background: var(--coral); opacity: 0.28; border-radius: 46% 54% 60% 40% / 52% 44% 56% 48%; }

.values .grid { display: grid; grid-template-columns: 300px 1fr; gap: clamp(30px, 5vw, 60px); align-items: start; }
.value-badge {
  background: linear-gradient(160deg, var(--charcoal-2), var(--charcoal)); color: #fff;
  border-radius: var(--radius); padding: 40px 30px; text-align: center; box-shadow: var(--shadow);
}
.value-badge .num { font-family: var(--font-head); font-weight: 800; font-size: 3.4rem; line-height: 1; }
.value-badge .num .accent { color: var(--gold); }
.value-badge p { color: rgba(255,255,255,0.72); margin: 8px 0 0; font-size: 0.98rem; }
.value-list { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 44px; }
.value-item h3 { font-size: 1.24rem; font-weight: 700; margin-bottom: 6px; position: relative; padding-left: 18px; }
.value-item h3::before { content: ""; position: absolute; left: 0; top: 6px; width: 6px; height: 18px; border-radius: 4px; background: var(--red); }
.value-item p { color: var(--body); font-size: 0.96rem; margin: 0; }

/* ---------- Contact page ---------- */
.info-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.info-card { background: var(--gray-bg); border-radius: var(--radius); padding: 30px 26px; transition: transform 0.3s var(--ease), box-shadow 0.3s; }
.info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); background: #fff; }
.info-card .ic {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(150deg, #f0685f, var(--red)); box-shadow: 0 10px 22px rgba(214,56,46,0.28);
}
.info-card .ic svg { width: 26px; height: 26px; stroke: #fff; fill: none; }
.info-card h3 { font-size: 1.16rem; font-weight: 700; margin-bottom: 6px; }
.info-card p, .info-card a { color: var(--muted); font-size: 0.96rem; margin: 0; word-break: break-word; }
.info-card a:hover { color: var(--red); }

.contact-panel { display: grid; grid-template-columns: 1fr 1.05fr; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.contact-map {
  position: relative; min-height: 420px;
  background:
    repeating-linear-gradient(0deg, rgba(0,0,0,0.035) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.035) 0 1px, transparent 1px 46px),
    linear-gradient(135deg, #f2eadd, #ece2d2);
  background-color: #efe6d6;
}
.contact-map iframe, .contact-map img { width: 100%; height: 100%; border: 0; object-fit: cover; position: absolute; inset: 0; }
.contact-map .map-pin {
  position: absolute; left: 50%; top: 46%; transform: translate(-50%, -50%); z-index: 2;
  background: #fff; border-radius: 14px; padding: 10px 16px; box-shadow: var(--shadow); display: flex; gap: 10px; align-items: center;
  font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: 0.9rem;
}
.contact-map .map-pin svg { width: 18px; height: 18px; fill: var(--red); }
.contact-form { background: var(--charcoal); color: #fff; padding: clamp(30px, 4vw, 50px); }
.contact-form h2 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.3rem); font-weight: 800; margin-bottom: 6px; }
.contact-form .fsub { color: rgba(255,255,255,0.6); margin-bottom: 24px; font-size: 0.96rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-bottom: 6px; font-family: var(--font-head); font-weight: 500; }
.field input, .field textarea {
  width: 100%; background: var(--charcoal-2); border: 1.5px solid rgba(255,255,255,0.1); border-radius: 14px;
  padding: 14px 16px; color: #fff; font-family: var(--font-body); font-size: 16px; transition: border-color 0.2s, background 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.56); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--red); background: #2d2b28; }
.field textarea { resize: vertical; min-height: 120px; }
.field.invalid input, .field.invalid textarea { border-color: #ff7a6e; }
.field .err { color: #ffb0a7; font-size: 0.78rem; margin-top: 5px; display: none; }
.field.invalid .err { display: block; }
.form-note { min-height: 22px; margin-top: 14px; font-size: 0.92rem; }
.form-note.ok { color: #7bd88f; }
.contact-form .btn { width: 100%; margin-top: 8px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,0.72); padding: clamp(50px, 7vw, 76px) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand img { height: 54px; margin-bottom: 18px; }
.footer-brand p { max-width: 300px; font-size: 0.96rem; }
.footer-col h4 { color: #fff; font-size: 1.02rem; font-weight: 700; margin-bottom: 18px; letter-spacing: 0.02em; }
.footer-col .frow { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.footer-col .frow svg { flex: 0 0 20px; width: 20px; height: 20px; stroke: var(--red); fill: none; margin-top: 2px; }
.footer-col .frow span, .footer-col .frow a { font-size: 0.96rem; color: rgba(255,255,255,0.72); }
.footer-col .frow a:hover { color: #fff; }
.footer-col ul.links a { display: inline-block; padding: 5px 0; font-size: 0.96rem; }
.footer-col ul.links a:hover { color: #fff; padding-left: 5px; transition: padding 0.2s; }
.socials { display: flex; gap: 12px; margin-top: 6px; }
.socials a { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.08); display: grid; place-items: center; transition: background 0.25s, transform 0.25s; }
.socials a:hover { background: var(--red); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; fill: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 0.88rem; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; left: 20px; bottom: 20px; bottom: calc(20px + env(safe-area-inset-bottom));
  z-index: 55; width: 60px; height: 60px; border-radius: 50%;
  background: transparent; box-shadow: 0 10px 24px rgba(0,0,0,0.28);
  transition: transform 0.25s; display: block;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float img { width: 100%; height: 100%; display: block; border-radius: 50%; }

/* ---------- Reveal animation (only when JS is active, so no-JS shows content) ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .values .grid { grid-template-columns: 1fr; }
  .value-badge { max-width: 340px; }
}
@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .spec-grid { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: repeat(2, 1fr); }
  .contact-panel { grid-template-columns: 1fr; }
  .contact-map { min-height: 300px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; min-height: 0; gap: 10px; padding-top: 30px; }
  .hero-copy .eyebrow, .hero-actions { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-visual { max-width: 460px; margin: 10px auto 0; min-height: 340px; }
  .about-preview .grid, .about-hero .grid { grid-template-columns: 1fr; }
  .about-media { max-width: 500px; margin: 0 auto; }
  .stat-card { left: auto; right: 4%; }
  .about-circles { max-width: 460px; margin: 0 auto; min-height: 380px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav { height: 64px; }
  .logo img { height: 42px; }
  .site-footer { padding-bottom: 92px; }
  .check-list { grid-template-columns: 1fr; }
  .value-list { grid-template-columns: 1fr; }
  .tslide { flex-basis: 100%; }
  .footer-bottom { justify-content: center; text-align: center; }
}
@media (max-width: 540px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .product-card { padding: 14px 14px 20px; }
  .product-card h3 { font-size: 1.1rem; }
  .info-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .marquee-item { font-size: 1rem; gap: 22px; padding: 0 22px; }
  .stat-card { position: static; width: 100%; margin-top: 20px; left: auto; }
  .about-banner { aspect-ratio: 16 / 12; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
