/* ============================================================
   MVM Food & Beverages Pvt. Ltd. — "Nourishing Workplace Experiences"
   UI v2 — Artisan Roastery: espresso + caramel + sage, Fraunces serif
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500;1,9..144,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

:root {
  /* Roast palette */
  --espresso:   #1c1208;   /* near-black bean */
  --coffee:     #2e1d10;   /* dark roast */
  --mocha:      #4b3120;   /* medium roast */
  --mocha-soft: #6f4e34;
  --caramel:    #b5762e;   /* signature amber */
  --caramel-lt: #d99a52;
  --gold:       #c8a560;   /* antique gold (logo) */
  --gold-light: #e6cd97;

  /* Tea side */
  --tea:        #5f7d4f;
  --tea-deep:   #3f5a35;
  --tea-light:  #8aa67a;

  /* Neutrals */
  --cream:      #f5ecda;   /* porcelain — tuned to logo ground */
  --cream-2:    #faf4e7;
  --paper:      #fffdf8;
  --sand:       #efe3cf;
  --ink:        #2a1d12;
  --ink-soft:   #6d5c49;
  --line:       #e7dac4;
  --line-soft:  #f0e7d6;

  --shadow-xs: 0 2px 8px rgba(43, 26, 12, .06);
  --shadow-sm: 0 6px 18px rgba(54, 33, 14, .10);
  --shadow-md: 0 16px 40px rgba(54, 33, 14, .16);
  --shadow-lg: 0 28px 70px rgba(20, 11, 4, .30);
  --glow-gold: 0 0 0 1px rgba(200,165,96,.35), 0 18px 44px rgba(181,118,46,.22);

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --container: 1200px;

  --display: 'Fraunces', Georgia, serif;
  --body: 'DM Sans', 'Segoe UI', sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--cream-2);
  background-image:
    radial-gradient(circle at 12% -5%, rgba(200,165,96,.14), transparent 38%),
    radial-gradient(circle at 92% 8%, rgba(95,125,79,.10), transparent 36%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { width: min(var(--container), 92%); margin: 0 auto; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--coffee);
  line-height: 1.14;
  font-weight: 600;
  letter-spacing: -.01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--body);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--caramel);
}
.eyebrow::before { content: "❦"; font-size: .95rem; color: var(--gold); letter-spacing: 0; }
.eyebrow.center { gap: .8rem; }
.eyebrow.center::after { content: "❦"; font-size: .95rem; color: var(--gold); }

.section-head { max-width: 720px; margin-bottom: 3.2rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  margin: .7rem 0 .9rem;
}
.section-head h2 em { font-style: italic; color: var(--caramel); }
.section-head p { color: var(--ink-soft); font-size: 1.07rem; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .92rem 2rem;
  border-radius: 50px;
  font-family: var(--body);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
  overflow: hidden;
}
.btn::after { /* sheen */
  content: "";
  position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  transition: left .6s var(--ease);
}
.btn:hover::after { left: 140%; }
.btn-green { background: var(--tea); color: #fff; box-shadow: 0 10px 24px rgba(63,90,53,.28); }
.btn-green:hover { background: var(--tea-deep); transform: translateY(-3px); box-shadow: 0 16px 32px rgba(63,90,53,.36); }
.btn-gold { background: linear-gradient(135deg, var(--caramel-lt), var(--caramel)); color: #fff; box-shadow: 0 10px 24px rgba(181,118,46,.32); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(181,118,46,.42); }
.btn-outline-light { border-color: rgba(247,239,225,.55); color: var(--cream); }
.btn-outline-light:hover { background: var(--cream); color: var(--coffee); transform: translateY(-3px); }
.btn-outline-dark { border-color: var(--mocha); color: var(--coffee); }
.btn-outline-dark:hover { background: var(--coffee); color: var(--cream); transform: translateY(-3px); }

/* ============================================================
   Intro splash — cheering-jug animation
   ============================================================ */
.intro-splash {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(181,118,46,.22), transparent 60%),
    radial-gradient(circle at 50% 50%, #2a1a0d 0%, #160d05 70%);
  overflow: hidden;
  opacity: 1;
  transition: opacity .8s var(--ease), visibility .8s var(--ease),
              transform .8s var(--ease), filter .8s var(--ease);
}
.intro-splash::before { /* bean-dot texture */
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(230,205,151,.07) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  pointer-events: none;
}
.intro-splash.hide { opacity: 0; visibility: hidden; transform: scale(1.06); filter: blur(6px); }
body.intro-active { overflow: hidden; }   /* lock scroll while playing */

/* page rises into view as the splash leaves */
@keyframes introReveal {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}
body.intro-reveal .hero-main { animation: introReveal 1s var(--ease) .15s both; }

.intro-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  animation: introPop 1s var(--ease) both;
}
@keyframes introPop {
  from { opacity: 0; transform: scale(1.04); }
  to   { opacity: 1; transform: scale(1); }
}
.intro-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;          /* fill the whole screen */
  background: #160d05;
  /* zoom + nudge so the bottom-right watermark is pushed off-screen
     (container has overflow:hidden). Increase scale if any of it still shows. */
  transform: scale(1.16) translate(1.4%, 2.4%);
  transform-origin: center;
}
.intro-skip {
  position: absolute;
  top: 1.4rem; right: 1.6rem;
  z-index: 2;
  padding: .5rem 1.15rem;
  border-radius: 50px;
  border: 1px solid rgba(230,205,151,.4);
  background: rgba(12,7,2,.45);
  color: var(--gold-light);
  font-family: var(--body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background .25s, border-color .25s, transform .25s;
}
.intro-skip:hover { background: rgba(181,118,46,.35); border-color: var(--gold-light); transform: translateY(-1px); }

@media (max-width: 560px) {
  .intro-skip { top: 1rem; right: 1rem; }
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--espresso);
  color: var(--gold-light);
  font-size: .82rem;
  letter-spacing: .03em;
  padding: .5rem 0;
}
.topbar .container { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.topbar span { display: inline-flex; align-items: center; gap: .4rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 244, 231, .92);
  backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .3s;
}
.site-header:hover { box-shadow: var(--shadow-xs); }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .5rem 0;
}
.brand { display: flex; align-items: center; gap: .55rem; flex-shrink: 0; }
.brand img {
  height: 140px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
  background: transparent;
  transition: transform .5s var(--ease);
}
.brand:hover img { transform: scale(1.04); }
.brand-text .brand-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.55rem;
  color: var(--coffee);
  letter-spacing: -.01em;
}
.brand-text .brand-tag {
  display: block;
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--tea);
  margin-top: 3px;
}

.main-nav { display: flex; align-items: center; gap: 2rem; flex: 1; }
.main-nav ul { display: flex; gap: 2.1rem; flex: 1; justify-content: center; }
.main-nav a {
  font-size: 1.03rem;
  font-weight: 500;
  color: var(--ink);
  padding: .4rem 0;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--caramel), var(--gold));
  border-radius: 2px;
  transition: width .3s var(--ease);
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--caramel); }

.nav-actions { display: flex; align-items: center; gap: .7rem; white-space: nowrap; flex-shrink: 0; }
.nav-actions .btn { padding: .64rem 1.55rem; font-size: .94rem; }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 6px;
}
.nav-toggle span { width: 26px; height: 2.5px; background: var(--coffee); border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO (Home) — coffee-station ambience
   ============================================================ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 92vh;
  color: var(--cream);
  background:
    linear-gradient(98deg,
      rgba(14, 9, 4, .97) 0%,
      rgba(20, 12, 5, .9) 34%,
      rgba(20, 12, 5, .42) 62%,
      rgba(10, 6, 2, .66) 100%),
    url("../assets/coffee-station.png") right center / cover no-repeat;
}
.hero::after { /* warm vignette + grain feel */
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 35%, rgba(216,154,82,.16), transparent 55%),
    radial-gradient(rgba(230,205,151,.05) 1px, transparent 1px);
  background-size: auto, 24px 24px;
  pointer-events: none;
}
.hero-main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 5rem 0 3.5rem;
}
.hero .eyebrow { color: var(--gold-light); }
.hero .eyebrow::before { color: var(--gold-light); }
.hero-title {
  color: #f4ecdb;
  font-weight: 600;
  font-size: clamp(2.5rem, 5.4vw, 4.3rem);
  margin-top: 1.2rem;
  letter-spacing: -.02em;
}
.hero-title span { display: block; }
.hero-title .line-gold {
  font-style: italic;
  background: linear-gradient(180deg, #f0d9a8 8%, #c89a52 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-title .line-sub {
  font-family: var(--body);
  font-size: .26em;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #ecdfc7;
  margin-top: .9rem;
}
.hero-rule { display: block; width: 64px; height: 3px; margin: 1.6rem 0; background: linear-gradient(90deg, var(--caramel), transparent); border-radius: 3px; }
.hero .lead { font-size: 1.2rem; color: #e3d6bf; max-width: 480px; }
.hero .sub-lead { margin-top: .35rem; color: var(--gold-light); font-size: 1.05rem; font-style: italic; }
.hero-cta { display: flex; gap: 1rem; margin-top: 2.2rem; flex-wrap: wrap; }

.hero-features { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 3rem; }
.hero-features div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  width: 118px;
  font-size: .8rem;
  line-height: 1.35;
  text-align: center;
  color: #ebe0ca;
}
.hero-features .ico {
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.55rem;
  border: 1px solid rgba(216,169,95,.4);
  border-radius: 16px;
  background: rgba(12,7,2,.4);
  box-shadow: inset 0 0 24px rgba(216,169,95,.1);
  transition: transform .4s var(--ease), border-color .3s, background .3s;
}
.hero-features div:hover .ico { transform: translateY(-5px); border-color: var(--gold-light); background: rgba(181,118,46,.25); }

/* glassy stats strip pinned to hero bottom */
.hero-stats {
  position: relative;
  z-index: 1;
  background: linear-gradient(to top, rgba(10,6,2,.94), rgba(24,15,6,.5));
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(216,169,95,.28);
  padding: 1.6rem 0;
}
.hero-stats .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.hero-stats .stat { display: flex; align-items: center; justify-content: center; gap: .95rem; }
.hero-stats .ico { font-size: 1.7rem; }
.hero-stats .num { font-family: var(--display); font-size: 2rem; font-weight: 600; line-height: 1.1; color: var(--gold-light); }
.hero-stats .label { font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: #cbbb9f; }

/* ---------- Generic stats band (about) ---------- */
.stats-band {
  position: relative;
  background: var(--espresso);
  color: var(--cream);
  padding: 3rem 0;
  border-block: 1px solid rgba(216,169,95,.22);
}
.stats-band .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stats-band .stat { position: relative; }
.stats-band .stat:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 15%; height: 70%;
  width: 1px; background: rgba(216,169,95,.2);
}
.stats-band .num { font-family: var(--display); font-size: 2.6rem; font-weight: 600; color: var(--gold-light); }
.stats-band .label { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: #cbbb9f; }

/* ---------- Sections ---------- */
section.block { padding: 5.5rem 0; position: relative; }
section.block.tinted {
  background: linear-gradient(180deg, var(--cream-2), var(--sand));
}
section.block.dark {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(181,118,46,.2), transparent 55%),
    linear-gradient(125deg, #1a1006, #30200f);
  color: var(--cream);
}
section.block.dark h2, section.block.dark h3 { color: var(--cream); }
section.block.dark p { color: #d9cbb6; }

/* ---------- Image placeholders ---------- */
.img-ph {
  position: relative;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 30% 22%, rgba(216,169,95,.4), transparent 60%),
    linear-gradient(135deg, #53341c, #2a1809);
  background-color: #2a1809;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .5rem;
  color: var(--gold-light);
  overflow: hidden;
  min-height: 230px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(216,169,95,.18);
}
.img-ph::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(230,205,151,.08) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
}
.img-ph .ph-icon { font-size: 2.8rem; z-index: 1; filter: drop-shadow(0 6px 12px rgba(0,0,0,.4)); }
.img-ph .ph-label { z-index: 1; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: #cbbb9f; }
.img-ph.tall { min-height: 440px; }
.img-ph.short { min-height: 170px; }

/* real photos */
.photo { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); object-fit: cover; }
.photo.tall { height: 440px; }
.photo.crop-right { object-position: right center; }

/* ---------- Service cards (home, 4-up) ---------- */
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.s-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.s-card:hover { transform: translateY(-10px); border-color: var(--gold); box-shadow: var(--glow-gold); }
.s-card .img-ph { border-radius: 0; min-height: 155px; }
.s-card .img-ph .ph-icon { transition: transform .5s var(--ease); }
.s-card:hover .img-ph .ph-icon { transform: scale(1.18) rotate(-6deg); }
.s-card .body { padding: 1.3rem 1.2rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.s-card h3 { font-size: 1.12rem; margin-bottom: .5rem; }
.s-card p { font-size: .9rem; color: var(--ink-soft); flex: 1; }
.s-card .more {
  margin-top: 1.1rem; font-size: .8rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--tea);
  transition: gap .3s, color .3s; display: inline-flex; gap: .35rem;
}
.s-card .more:hover { color: var(--caramel); gap: .7rem; }

/* ---------- Logo marquee strip ---------- */
.logo-strip { padding: 3rem 0; background: var(--coffee); color: var(--cream); overflow: hidden; }
.logo-strip .strip-title {
  text-align: center; font-size: .78rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.8rem;
}
.logo-marquee { position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.logo-row { display: flex; align-items: center; gap: 4rem; width: max-content; animation: marquee 26s linear infinite; }
.logo-strip:hover .logo-row { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.logo-chip {
  font-family: var(--display); font-weight: 600; font-size: 1.5rem; font-style: italic;
  color: var(--gold-light); opacity: .65; white-space: nowrap;
  transition: opacity .3s, transform .3s;
}
.logo-chip:hover { opacity: 1; transform: scale(1.06); }

/* ---------- Split (text + image) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.8rem; align-items: center; }
.split.rev { direction: rtl; }
.split.rev > * { direction: ltr; }

.check-list { margin-top: 1.5rem; display: grid; gap: .8rem; }
.check-list li { display: flex; gap: .75rem; align-items: baseline; color: var(--ink-soft); }
.check-list li::before { content: "✦"; color: var(--caramel); font-size: .85rem; }
section.block.dark .check-list li { color: #d9cbb6; }

/* ---------- Value icons row (about) ---------- */
.value-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; text-align: center; }
.value-item {
  padding: 2rem 1rem 1.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.value-item:hover { transform: translateY(-7px); border-color: var(--gold); box-shadow: var(--shadow-md); }
.value-item .ico {
  width: 64px; height: 64px; margin: 0 auto 1rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, var(--sand));
  border: 1px solid var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.65rem;
  box-shadow: inset 0 -4px 12px rgba(181,118,46,.1);
  transition: transform .4s var(--ease);
}
.value-item:hover .ico { transform: rotate(-8deg) scale(1.08); }
.value-item h4 { font-size: 1rem; }

/* ---------- Mission / Vision ---------- */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.mv-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.3rem;
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s;
}
.mv-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: linear-gradient(var(--tea), var(--tea-deep)); }
.mv-card.gold::before { background: linear-gradient(var(--caramel-lt), var(--caramel)); }
.mv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.mv-card h3 { margin-bottom: .7rem; display: flex; align-items: center; gap: .6rem; font-size: 1.5rem; }
.mv-card p { color: var(--ink-soft); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  color: var(--cream);
  padding: 5rem 0 4.2rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 82% 0%, rgba(181,118,46,.28), transparent 55%),
    linear-gradient(115deg, #160d05, #34210f);
}
.page-hero.about-hero {
  background:
    linear-gradient(to right, rgba(28, 18, 8, 0.94) 0%, rgba(28, 18, 8, 0.6) 40%, rgba(28, 18, 8, 0.15) 70%, rgba(28, 18, 8, 0.45) 100%),
    url("../assets/about-onpremises.jpg") center center / cover no-repeat;
  padding: 7.5rem 0 6.5rem;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(230,205,151,.07) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--cream); font-size: clamp(2.2rem, 4.4vw, 3.2rem); }
.breadcrumb { margin-top: .8rem; font-size: .9rem; color: var(--gold-light); letter-spacing: .04em; }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero .deco-cup {
  position: absolute; right: 4%; bottom: -10px;
  font-size: 6rem; opacity: .22;
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-12px) rotate(6deg); } }

/* ---------- Services page rows ---------- */
.service-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3.2rem; align-items: center;
  padding: 3.6rem 0;
}
.service-row + .service-row { border-top: 1px solid var(--line); }
.service-row .num {
  font-family: var(--display); font-style: italic; font-size: 1rem;
  color: var(--caramel); letter-spacing: .12em;
}
.service-row h3 { font-size: 1.85rem; margin: .5rem 0 .8rem; }
.service-row p { color: var(--ink-soft); }
.pill-list { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.3rem; }
.pill-list li {
  font-size: .82rem; padding: .42rem 1.05rem; border-radius: 50px;
  background: var(--cream); border: 1px solid var(--line); color: var(--mocha);
  transition: background .25s, color .25s, border-color .25s;
}
.pill-list li:hover { background: var(--tea); color: #fff; border-color: var(--tea); }

/* Service detail formatting (h4, ul, tagline paragraph) */
.service-row h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--coffee);
  margin: 1.6rem 0 .8rem;
  padding-left: 1rem;
  border-left: 3px solid var(--caramel);
  letter-spacing: .02em;
}
.service-row > div > ul:not(.pill-list) {
  display: grid;
  gap: .55rem;
  margin-top: .3rem;
  padding-left: .15rem;
}
.service-row > div > ul:not(.pill-list) li {
  display: flex;
  gap: .75rem;
  align-items: baseline;
  color: var(--ink-soft);
  font-size: .96rem;
  line-height: 1.6;
}
.service-row > div > ul:not(.pill-list) li::before {
  content: "✦";
  color: var(--caramel);
  font-size: .8rem;
  flex-shrink: 0;
}
/* Make the tagline paragraph (first p after h3) stand out */
.service-row > div > h3 + p {
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--coffee);
  font-style: italic;
  margin-bottom: .4rem;
}
/* Normal description paragraphs after the tagline */
.service-row > div > h3 + p + p {
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  color: var(--ink-soft);
  margin-bottom: .25rem;
}
.service-row > div > h3 + p + p + p {
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  color: var(--ink-soft);
  margin-bottom: .25rem;
}

/* ---------- Products page ---------- */
.products-layout { display: grid; grid-template-columns: 250px 1fr; gap: 2.6rem; align-items: start; }
.cat-menu {
  position: sticky; top: 112px;
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--paper); box-shadow: var(--shadow-xs);
}
.cat-menu button {
  display: block; width: 100%; text-align: left;
  padding: 1rem 1.3rem; font-family: var(--body); font-size: .96rem; font-weight: 500;
  background: none; border: none; border-bottom: 1px solid var(--line-soft);
  color: var(--ink); cursor: pointer; transition: .25s;
}
.cat-menu button:last-child { border-bottom: none; }
.cat-menu button:hover { background: var(--cream-2); padding-left: 1.6rem; }
.cat-menu button.active {
  background: linear-gradient(135deg, var(--tea), var(--tea-deep));
  color: #fff; box-shadow: inset 4px 0 0 var(--gold);
}
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.p-card {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.p-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: var(--glow-gold); }
.p-card .img-ph { border-radius: 0; min-height: 155px; }
.p-card .img-ph .ph-icon { transition: transform .5s var(--ease); }
.p-card:hover .img-ph .ph-icon { transform: scale(1.18) rotate(6deg); }
.p-card .body { padding: 1.1rem 1.1rem 1.3rem; flex: 1; display: flex; flex-direction: column; }
.p-card h4 { font-size: 1.05rem; margin-bottom: .35rem; }
.p-card p { font-size: .86rem; color: var(--ink-soft); flex: 1; }
.p-card .enquire {
  margin-top: 1rem; font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--tea); display: inline-flex; gap: .35rem;
  transition: gap .3s, color .3s;
}
.p-card .enquire:hover { color: var(--caramel); gap: .7rem; }
.cat-title { font-size: 1.7rem; margin-bottom: 1.6rem; display: flex; align-items: center; gap: .8rem; }
.cat-title::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
.cat-section { display: none; }
.cat-section.active { display: block; animation: fadeUp .5s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ---------- Industries ---------- */
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.i-card {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 260px;
  display: flex; align-items: flex-end;
  background:
    radial-gradient(circle at 75% 20%, rgba(181,118,46,.35), transparent 55%),
    linear-gradient(140deg, #4d3018, #271607);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s;
}
.i-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.i-card .bg-ico { position: absolute; top: 1.3rem; right: 1.5rem; font-size: 3.2rem; opacity: .35; transition: transform .5s var(--ease); }
.i-card:hover .bg-ico { transform: scale(1.15) rotate(-8deg); opacity: .5; }
.i-card .body { position: relative; padding: 1.5rem; width: 100%; background: linear-gradient(to top, rgba(18,9,2,.94), transparent); color: var(--cream); }
.i-card h3 { color: var(--cream); font-size: 1.25rem; margin-bottom: .35rem; }
.i-card p { font-size: .86rem; color: #cdbfa8; }

/* ---------- Clients page ---------- */
.client-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.3rem; }
.client-tile {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper);
  min-height: 118px; display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 600; font-style: italic; font-size: 1.2rem;
  color: var(--mocha-soft); text-align: center; padding: .8rem;
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s, color .3s;
}
.client-tile:hover { transform: translateY(-6px); color: var(--coffee); border-color: var(--gold); box-shadow: var(--shadow-md); }

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.9rem; box-shadow: var(--shadow-xs); position: relative;
  transition: transform .4s var(--ease), box-shadow .4s;
}
.testi:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testi::before {
  content: "\201C"; font-family: var(--display); font-size: 4.5rem; color: var(--gold-light);
  position: absolute; top: .3rem; left: 1.1rem; line-height: 1;
}
.testi p { padding-top: 1.7rem; color: var(--ink-soft); font-style: italic; font-size: .96rem; }
.testi .who { margin-top: 1.2rem; font-weight: 700; color: var(--coffee); font-size: .9rem; }
.testi .who small { display: block; font-weight: 400; color: var(--ink-soft); }

/* ---------- Gallery ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; margin-bottom: 2.6rem; }
.filter-bar button {
  padding: .58rem 1.5rem; border-radius: 50px; border: 1.5px solid var(--line);
  background: var(--paper); font-family: var(--body); font-size: .88rem; font-weight: 600;
  color: var(--ink-soft); cursor: pointer; transition: .25s;
}
.filter-bar button:hover { border-color: var(--gold); color: var(--coffee); }
.filter-bar button.active { background: linear-gradient(135deg, var(--tea), var(--tea-deep)); border-color: var(--tea-deep); color: #fff; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.g-item { display: none; }
.g-item.show { display: block; animation: fadeUp .45s var(--ease); }
.g-item .img-ph { min-height: 250px; cursor: pointer; }
.g-item .ph-icon { transition: transform .4s var(--ease); }
.g-item .img-ph:hover .ph-icon { transform: scale(1.2); }
.g-item .cap { margin-top: .6rem; font-size: .86rem; color: var(--ink-soft); text-align: center; }

/* ---------- Contact ---------- */
.contact-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 3rem; align-items: start; }
.form-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.4rem; box-shadow: var(--shadow-sm);
}
.form-card h3 { margin-bottom: 1.5rem; font-size: 1.55rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.05rem; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: .8rem; font-weight: 600; letter-spacing: .04em; margin-bottom: .4rem; color: var(--mocha); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--body); font-size: .95rem; color: var(--ink); background: var(--cream-2);
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--tea); background: #fff;
  box-shadow: 0 0 0 4px rgba(95,125,79,.12);
}
.field textarea { resize: vertical; min-height: 115px; }
.hp-field { display: none !important; }
.form-note { font-size: .82rem; color: var(--ink-soft); margin-top: .9rem; }
.form-success {
  display: none; margin-top: 1rem; padding: .95rem 1.2rem; border-radius: var(--radius-sm);
  background: #eef6e8; border: 1px solid #bcd9ae; color: var(--tea-deep); font-size: .92rem;
}

.info-card {
  background:
    radial-gradient(circle at 85% 10%, rgba(181,118,46,.3), transparent 55%),
    linear-gradient(140deg, #271607, #43290f);
  color: var(--cream); border-radius: var(--radius); padding: 2.4rem; box-shadow: var(--shadow-md);
}
.info-card h3 { color: var(--gold-light); margin-bottom: 1.4rem; font-size: 1.5rem; }
.info-card ul { display: grid; gap: 1.15rem; }
.info-card li { display: flex; gap: .9rem; align-items: flex-start; font-size: .95rem; color: #e3d7c2; }
.info-card li .ico { font-size: 1.25rem; margin-top: .1rem; }
.info-card a:hover { color: var(--gold-light); }
.hours { margin-top: 1.7rem; padding-top: 1.4rem; border-top: 1px solid rgba(216,169,95,.25); font-size: .88rem; color: #cbbb9f; }
.map-ph { margin-top: 1.5rem; }
.map-ph .img-ph { min-height: 230px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  text-align: center;
  padding: 5rem 0;
  color: var(--cream);
  background:
    radial-gradient(ellipse at 18% 50%, rgba(95,125,79,.4), transparent 55%),
    linear-gradient(115deg, #160d05, #34210f);
  overflow: hidden;
}
.cta-band.with-photo {
  background:
    linear-gradient(rgba(14,9,4,.9), rgba(14,9,4,.92)),
    url("../assets/coffee-station.png") center 30% / cover no-repeat;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(230,205,151,.06) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}
.cta-band .container { position: relative; }
.cta-band h2 { color: var(--cream); font-size: clamp(2rem, 3.6vw, 2.8rem); margin: .7rem 0; }
.cta-band p { color: #ddd0ba; max-width: 580px; margin: 0 auto 1.9rem; }
.cta-band .btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--espresso); color: #cbbb9f; padding: 4rem 0 0; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 2.6rem; padding-bottom: 2.8rem; }
.site-footer h4 { color: var(--gold-light); font-family: var(--display); font-weight: 600; font-size: 1.15rem; margin-bottom: 1.2rem; }
.footer-brand { display: flex; align-items: center; gap: .85rem; margin-bottom: 1.1rem; }
.footer-brand img { height: 60px; width: auto; object-fit: contain; border-radius: 10px; background: transparent; }
.footer-brand .fb-name { font-family: var(--display); font-weight: 600; color: var(--cream); }
.footer-brand .fb-tag { font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-light); }
.site-footer ul li { margin-bottom: .6rem; }
.site-footer a { transition: color .25s, padding-left .25s; }
.site-footer a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact li { display: flex; gap: .6rem; margin-bottom: .75rem; align-items: flex-start; }
.footer-bottom {
  border-top: 1px solid rgba(216,169,95,.18); padding: 1.3rem 0;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .82rem; color: #9a8a73;
}

/* ---------- Floating contact (WhatsApp + Call) ---------- */
.float-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.fc-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  color: #fff;
  box-shadow: var(--shadow-md);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.fc-btn:hover { transform: translateY(-3px) scale(1.06); box-shadow: var(--shadow-lg); }
.fc-wa { background: #25D366; }
.fc-call { background: var(--tea); }
@media (max-width: 560px) {
  .fc-btn { width: 50px; height: 50px; font-size: 1.35rem; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .value-row { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .client-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 820px) {
  .main-nav {
    position: fixed; top: 0; right: -300px; width: 290px; height: 100vh;
    flex: none; flex-direction: column; align-items: stretch; gap: 1.4rem;
    background: var(--espresso); padding: 5.5rem 2rem 2rem;
    transition: right .4s var(--ease); z-index: 99; box-shadow: var(--shadow-lg);
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex: none; flex-direction: column; gap: 1.3rem; justify-content: flex-start; }
  .main-nav a { color: var(--cream); font-size: 1.08rem; }
  .nav-toggle { display: flex; z-index: 100; }
  .nav-actions { flex-direction: column; align-items: stretch; gap: .8rem; }
  .nav-actions .btn { width: 100%; justify-content: center; }

  .split, .split.rev, .service-row, .contact-layout, .mv-grid { grid-template-columns: 1fr; }
  .service-row { gap: 1.8rem; }
  .products-layout { grid-template-columns: 1fr; }
  .cat-menu { position: static; display: flex; flex-wrap: wrap; }
  .cat-menu button { width: auto; flex: 1 1 auto; text-align: center; border-bottom: none; }
  .cat-menu button:hover { padding-left: 1.3rem; }
  .hero { min-height: 0; }
  .hero-stats .container, .stats-band .container { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1rem; }
  .hero-stats .stat { justify-content: flex-start; }
  .stats-band .stat:not(:last-child)::after { display: none; }
  .industry-grid, .gallery-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-hero.about-hero {
    background:
      linear-gradient(rgba(28, 18, 8, 0.8), rgba(28, 18, 8, 0.8)),
      url("../assets/about-onpremises.jpg") center center / cover no-repeat;
    padding: 5.5rem 0 4.5rem;
  }
}

@media (max-width: 560px) {
  .cards-4, .product-grid, .industry-grid, .gallery-grid, .testi-grid, .value-row { grid-template-columns: 1fr; }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar { display: none; }
  .hero-features { gap: 1rem; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
