@charset "UTF-8";
/* ==========================================================================
   FLAVOURFOOD AND CHEMICALS CO., LTD.
   Design system — corporate navy (from the FAC mark) + warm gold + cream,
   MTech's structured grid mixed with Maharah's airy, image-led layout.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* brand */
  --navy-900: #14163f;
  --navy-800: #1d2060;
  --navy-700: #24276f;
  --navy:     #2e3192;   /* sampled from the FAC logo */
  --navy-400: #6266bd;
  --navy-200: #b9bce2;
  --navy-100: #dfe1f4;
  --navy-50:  #f1f2fb;

  --gold-700: #9a6f16;
  --gold:     #c8942a;
  --gold-400: #e0b455;
  --gold-100: #f6ecd6;

  --line:     #06c755;
  --line-dark:#04a244;

  /* neutrals */
  --ink:      #171a2b;
  --body:     #464a5e;
  --muted:    #6b7186;
  --hair:     #e6e8f0;
  --hair-soft:#f0f2f7;
  --cream:    #faf7f2;
  --white:    #ffffff;

  /* type */
  --font-sans: "Inter", "Noto Sans Thai", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-thai: "Noto Sans Thai", "Inter", sans-serif;

  /* space + shape */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(20, 22, 63, .06);
  --shadow-sm: 0 2px 10px rgba(20, 22, 63, .06);
  --shadow:    0 10px 30px rgba(20, 22, 63, .09);
  --shadow-lg: 0 24px 60px rgba(20, 22, 63, .14);

  --nav-h: 80px;
  --wrap: 1240px;

  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* --------------------------------------------------------------------------
   2. Reset / base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Thai comes from the fallback inside --font-sans, so Latin glyphs render in
   Inter and Thai glyphs fall through to Noto Sans Thai. Do NOT add a blanket
   :lang(th) font-family rule here — it out-specifies Font Awesome's .fa-*
   classes and turns every icon into an empty box. */
.th { font-family: var(--font-thai); }

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: var(--navy); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--navy-700); }

h1, h2, h3, h4, h5 {
  margin: 0 0 .6em;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2rem, 1.35rem + 2.7vw, 3.5rem); line-height: 1.16; }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.7vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 1.05rem + .8vw, 1.65rem); }
h4 { font-size: 1.125rem; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1.15em; padding-left: 1.3em; }
li { margin-bottom: .35em; }

::selection { background: var(--navy); color: #fff; }

:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--navy); color: #fff; padding: 12px 20px;
  border-radius: 0 0 var(--r-sm) 0; font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.wrap-narrow { max-width: 900px; }

.section { padding: clamp(60px, 7vw, 108px) 0; }
.section--tight { padding: clamp(44px, 5vw, 72px) 0; }
.section--cream { background: var(--cream); }
.section--soft  { background: var(--navy-50); }
.section--navy  { background: var(--navy-900); color: #cfd2ea; }
.section--navy h2, .section--navy h3 { color: #fff; }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.stack  > * + * { margin-top: 1rem; }
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }

/* section heading block */
.sec-head { max-width: 760px; margin-bottom: clamp(36px, 4vw, 60px); }
.sec-head.center { margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .75rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--gold); border-radius: 2px;
}
.eyebrow--gold { color: var(--gold-700); }
.eyebrow--light { color: var(--gold-400); }
.eyebrow--light::before { background: var(--gold-400); }
.center .eyebrow::before { display: none; }
.center .eyebrow {
  padding: 6px 16px; background: var(--navy-50); border-radius: var(--r-pill);
}
.section--navy .center .eyebrow { background: rgba(255,255,255,.08); }

.lead { font-size: 1.075rem; color: var(--muted); line-height: 1.85; }
.section--navy .lead { color: #b6bada; }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 26px;
  border: 1.5px solid transparent;
  border-radius: var(--r-pill);
  font-family: inherit; font-size: .95rem; font-weight: 600; line-height: 1;
  text-align: center; cursor: pointer; white-space: nowrap;
  transition: all .22s var(--ease);
}
.btn i { font-size: .95em; }

.btn-primary {
  background: var(--navy); color: #fff; box-shadow: 0 6px 18px rgba(46,49,146,.25);
}
.btn-primary:hover { background: var(--navy-700); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(46,49,146,.32); }

.btn-gold { background: var(--gold); color: #fff; box-shadow: 0 6px 18px rgba(200,148,42,.28); }
.btn-gold:hover { background: var(--gold-700); color: #fff; transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy-200); }
.btn-outline:hover { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-2px); }

.btn-ghost { background: var(--white); color: var(--navy); border-color: var(--hair); box-shadow: var(--shadow-xs); }
.btn-ghost:hover { border-color: var(--navy-200); color: var(--navy-700); transform: translateY(-2px); }

.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--navy-50); color: var(--navy-700); transform: translateY(-2px); }

.btn-onnavy { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-onnavy:hover { background: #fff; color: var(--navy); border-color: #fff; }

.btn-line { background: var(--line); color: #fff; box-shadow: 0 6px 18px rgba(6,199,85,.28); }
.btn-line:hover { background: var(--line-dark); color: #fff; transform: translateY(-2px); }

.btn-line-outline { background: transparent; color: var(--line-dark); border-color: var(--line); }
.btn-line-outline:hover { background: var(--line); color: #fff; }

.btn-chip {
  padding: 8px 16px; font-size: .82rem; background: var(--navy-50);
  color: var(--navy); border-color: transparent;
}
.btn-chip:hover { background: var(--navy); color: #fff; }

.btn-sm { padding: 10px 20px; font-size: .86rem; }
.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row.center { justify-content: center; }

/* the little "get enquiry" icon used on cards + section corners */
.enq-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; flex: 0 0 44px;
  border-radius: 50%;
  background: var(--white); color: var(--navy);
  border: 1.5px solid var(--hair);
  box-shadow: var(--shadow-sm);
  font-size: .95rem;
  transition: all .25s var(--ease);
}
.enq-icon:hover {
  background: var(--navy); color: #fff; border-color: var(--navy);
  transform: translateY(-3px) rotate(-6deg);
  box-shadow: 0 12px 24px rgba(46,49,146,.3);
}
.enq-icon--gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.enq-icon--gold:hover { background: var(--gold-700); border-color: var(--gold-700); }

/* inline text link with arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .92rem; color: var(--navy);
}
.link-arrow i { transition: transform .22s var(--ease); font-size: .8em; }
.link-arrow:hover i { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   5. Top bar + navigation
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--navy-900); color: #b9bce2;
  font-size: .8rem; line-height: 1.5;
}
.topbar .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; min-height: 40px; flex-wrap: wrap;
}
.topbar a { color: #dfe1f4; }
.topbar a:hover { color: #fff; }
.topbar-items { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar-items span, .topbar-items a { display: inline-flex; align-items: center; gap: 7px; }
.topbar i { color: var(--gold-400); font-size: .9em; }

.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--hair);
  transition: box-shadow .25s var(--ease), background .25s var(--ease);
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); background: rgba(255,255,255,.97); }

.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: var(--nav-h);
}

.brand { display: flex; align-items: center; gap: 13px; flex-shrink: 0; }
.brand img { width: 58px; height: auto; border-radius: 6px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-weight: 800; font-size: 1.04rem; color: var(--navy-900); letter-spacing: -.02em; }
.brand-sub {
  font-size: .625rem; font-weight: 600; letter-spacing: .13em;
  text-transform: uppercase; color: var(--muted);
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 10px 15px; border-radius: var(--r-sm);
  font-size: .92rem; font-weight: 600; color: var(--body);
  transition: all .2s var(--ease);
}
.nav-link:hover { color: var(--navy); background: var(--navy-50); }
.nav-link.is-active { color: var(--navy); }
.nav-link.is-active::after {
  content: ""; display: block; height: 2px; width: 18px; margin: 5px auto -6px;
  background: var(--gold); border-radius: 2px;
}

.nav-actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none; width: 46px; height: 46px; align-items: center; justify-content: center;
  background: var(--navy-50); border: 0; border-radius: var(--r-sm);
  color: var(--navy); font-size: 1.2rem; cursor: pointer;
}

.mobile-nav {
  display: none; border-top: 1px solid var(--hair); background: #fff;
  box-shadow: var(--shadow);
}
.mobile-nav.is-open { display: block; }
.mobile-nav .wrap { flex-direction: column; align-items: stretch; padding-block: 14px 22px; min-height: 0; }
.mobile-nav a.m-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 4px; border-bottom: 1px solid var(--hair-soft);
  font-weight: 600; color: var(--ink);
}
.mobile-nav a.m-link i { color: var(--navy-200); font-size: .8rem; }
.mobile-nav a.m-link.is-active { color: var(--navy); }
.mobile-nav .btn-row { margin-top: 20px; }
.mobile-nav .btn { flex: 1; }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 480px at 88% 8%, var(--gold-100) 0%, transparent 62%),
    radial-gradient(760px 520px at 4% 92%, var(--navy-50) 0%, transparent 60%),
    var(--white);
  padding: clamp(48px, 6vw, 88px) 0 clamp(56px, 7vw, 100px);
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 1px; background: var(--hair);
}
.hero .wrap {
  display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(34px, 5vw, 70px);
  align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px 8px 10px; margin-bottom: 22px;
  background: #fff; border: 1px solid var(--navy-100); border-radius: var(--r-pill);
  font-size: .8rem; font-weight: 600; color: var(--navy-700);
  box-shadow: var(--shadow-xs);
}
.hero-badge b {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 11px; border-radius: var(--r-pill);
  background: var(--navy); color: #fff; font-size: .7rem; letter-spacing: .04em;
}

.hero h1 { color: var(--navy-900); margin-bottom: 20px; }
.hero h1 .accent {
  color: var(--navy);
  background: linear-gradient(transparent 80%, var(--gold-100) 80%);
  padding-inline: 2px;
}
.hero-lead {
  font-size: 1.08rem; line-height: 1.9; color: var(--muted);
  max-width: 34em; margin-bottom: 30px;
}

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 14px 38px;
  margin-top: 38px; padding-top: 28px; border-top: 1px solid var(--hair);
}
.hero-stat b {
  display: block; font-size: 1.75rem; font-weight: 800; color: var(--navy); line-height: 1.1;
  letter-spacing: -.02em;
}
.hero-stat span { font-size: .8rem; color: var(--muted); font-weight: 500; }

/* image collage */
.hero-art { position: relative; }
.hero-art-grid {
  display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: auto auto; gap: 16px;
}
.hero-art figure { margin: 0; overflow: hidden; border-radius: var(--r-lg); box-shadow: var(--shadow); background: var(--cream); }
.hero-art figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.hero-art figure:hover img { transform: scale(1.05); }
.hero-art .a1 { grid-row: span 2; aspect-ratio: 3 / 4.15; }
.hero-art .a2 { aspect-ratio: 4 / 3; }
.hero-art .a3 { aspect-ratio: 4 / 3; }

.hero-float {
  position: absolute; left: -14px; bottom: 26px; z-index: 3;
  display: flex; align-items: center; gap: 13px;
  padding: 13px 20px 13px 14px;
  background: #fff; border-radius: var(--r); box-shadow: var(--shadow-lg);
  border: 1px solid var(--hair);
}
.hero-float .ico {
  width: 42px; height: 42px; flex: 0 0 42px; border-radius: 12px;
  display: grid; place-items: center; background: var(--gold-100); color: var(--gold-700);
  font-size: 1.05rem;
}
.hero-float b { display: block; font-size: .88rem; color: var(--ink); line-height: 1.3; }
.hero-float span { font-size: .74rem; color: var(--muted); }

/* --------------------------------------------------------------------------
   7. Marquee of origin countries
   -------------------------------------------------------------------------- */
.origins { background: var(--navy-900); padding: 20px 0; overflow: hidden; }
.origins-inner { display: flex; align-items: center; gap: 44px; flex-wrap: wrap; justify-content: center; }
.origin-chip {
  display: inline-flex; align-items: center; gap: 9px;
  color: #c3c6e6; font-size: .86rem; font-weight: 500; white-space: nowrap;
}
.origin-chip .flag { font-size: 1.15rem; line-height: 1; }
.origins-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-400); padding-right: 12px; border-right: 1px solid rgba(255,255,255,.16);
}

/* --------------------------------------------------------------------------
   8. Cards
   -------------------------------------------------------------------------- */
.card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--hair); border-radius: var(--r-lg);
  overflow: hidden; transition: all .3s var(--ease);
}
.card:hover { border-color: var(--navy-100); box-shadow: var(--shadow); transform: translateY(-4px); }

.card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover .card-media img { transform: scale(1.06); }

/* optional second view of the product, cross-faded in on hover */
.card-media-alt {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity .45s var(--ease), transform .7s var(--ease);
}
.card:hover .card-media-alt { opacity: 1; }

.card-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 6px 13px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.94); backdrop-filter: blur(6px);
  font-size: .7rem; font-weight: 700; color: var(--navy); letter-spacing: .02em;
  box-shadow: var(--shadow-xs);
}
.card-enq { position: absolute; top: 12px; right: 12px; z-index: 2; }

.card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.card-cat {
  font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-700); margin-bottom: 9px;
}
.card-title { font-size: 1.15rem; margin-bottom: 4px; color: var(--ink); }
.card-title-en { font-size: .82rem; color: var(--muted); font-weight: 500; margin-bottom: 12px; }
.card-text { font-size: .9rem; line-height: 1.8; color: var(--body); margin-bottom: 16px; }

.card-meta {
  margin-top: auto; padding-top: 16px; border-top: 1px solid var(--hair-soft);
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.card-meta dl { margin: 0; font-size: .78rem; color: var(--muted); }
.card-meta dt { font-weight: 600; color: var(--ink); display: inline; }
.card-meta dd { margin: 0; display: inline; }

/* category card */
.cat-card {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--r-lg); min-height: 230px;
  background: var(--navy-800); color: #fff;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); color: #fff; }
.cat-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease); opacity: .55;
}
.cat-card:hover img { transform: scale(1.08); opacity: .42; }
.cat-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(190deg, rgba(20,22,63,.35) 0%, rgba(20,22,63,.88) 78%);
}
.cat-card-inner {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; min-height: 230px;
}
.cat-card .ico {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: rgba(255,255,255,.14); backdrop-filter: blur(4px);
  color: var(--gold-400); font-size: 1.1rem; margin-bottom: auto;
}
.cat-card h3 { color: #fff; font-size: 1.1rem; margin: 16px 0 3px; }
.cat-card .en {
  font-size: .74rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold-400); font-weight: 600;
}
.cat-card .desc {
  font-size: .84rem; line-height: 1.7; color: #c3c6e6;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .4s var(--ease), opacity .3s var(--ease), margin .4s var(--ease);
}
.cat-card:hover .desc { max-height: 130px; opacity: 1; margin-top: 10px; }

/* feature / advantage card */
.feat {
  background: #fff; border: 1px solid var(--hair); border-radius: var(--r-lg);
  padding: 30px 26px; transition: all .3s var(--ease); height: 100%;
}
.feat:hover { border-color: var(--navy-100); box-shadow: var(--shadow); transform: translateY(-4px); }
.feat .ico {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: var(--navy-50); color: var(--navy); font-size: 1.3rem; margin-bottom: 20px;
  transition: all .3s var(--ease);
}
.feat:hover .ico { background: var(--navy); color: #fff; transform: rotate(-6deg); }
.feat h3 { font-size: 1.08rem; margin-bottom: 2px; }
.feat .en {
  font-size: .7rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--gold-700); font-weight: 700; margin-bottom: 12px;
}
.feat p { font-size: .89rem; line-height: 1.8; color: var(--body); margin: 0; }

/* --------------------------------------------------------------------------
   9. About / split image blocks
   -------------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 72px); align-items: center; }
.split--wide-text { grid-template-columns: 1.1fr .9fr; }

.split-art { position: relative; }
.split-art .main {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3;
}
.split-art .main img { width: 100%; height: 100%; object-fit: cover; }
.split-art .inset {
  position: absolute; right: -18px; bottom: -28px; width: 46%;
  border-radius: var(--r); overflow: hidden; border: 6px solid #fff;
  box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3;
}
.split-art .inset img { width: 100%; height: 100%; object-fit: cover; }

.quote-block {
  border-left: 3px solid var(--gold); background: var(--gold-100);
  padding: 22px 26px; border-radius: 0 var(--r) var(--r) 0; margin: 26px 0;
}
.quote-block p { font-size: .95rem; color: var(--navy-800); line-height: 1.85; margin: 0; }

/* bullet list with check marks */
.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.ticks li {
  display: flex; align-items: flex-start; gap: 12px; margin: 0;
  font-size: .93rem; color: var(--body); line-height: 1.7;
}
.ticks i {
  flex: 0 0 22px; width: 22px; height: 22px; margin-top: 3px; border-radius: 50%;
  display: grid; place-items: center; background: var(--navy-50); color: var(--navy);
  font-size: .62rem;
}
.ticks--gold i { background: var(--gold-100); color: var(--gold-700); }

/* --------------------------------------------------------------------------
   10. Full-width image band + CTA
   -------------------------------------------------------------------------- */
.band {
  position: relative; overflow: hidden;
  padding: clamp(60px, 8vw, 110px) 0;
  background: var(--navy-900);
}
.band-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: .16; filter: saturate(.7);
}
.band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20,22,63,.95) 20%, rgba(29,32,96,.72) 100%);
}
.band .wrap { position: relative; z-index: 2; }
.band h2 { color: #fff; }
.band p { color: #b9bce2; }

.cta-panel {
  position: relative; overflow: hidden;
  border-radius: clamp(var(--r), 3vw, 30px);
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-800) 58%, var(--navy-900) 100%);
  color: #fff; padding: clamp(36px, 5vw, 64px);
  box-shadow: var(--shadow-lg);
}
.cta-panel::before {
  content: ""; position: absolute; right: -60px; top: -80px;
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,180,85,.3) 0%, transparent 68%);
}
.cta-panel::after {
  content: ""; position: absolute; left: -70px; bottom: -110px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 68%);
}
.cta-panel > * { position: relative; z-index: 2; }
.cta-panel h2 { color: #fff; margin-bottom: 14px; }
.cta-panel p { color: #c7cae8; max-width: 52ch; }
.cta-panel .btn-row { margin-top: 30px; }

/* --------------------------------------------------------------------------
   11. Flavour list / chips
   -------------------------------------------------------------------------- */
.flavour-group { margin-bottom: 34px; }
.flavour-group h3 {
  display: flex; align-items: center; gap: 12px;
  font-size: 1rem; color: var(--navy-800); margin-bottom: 16px;
}
.flavour-group h3::after { content: ""; flex: 1; height: 1px; background: var(--hair); }

.chips { display: flex; flex-wrap: wrap; gap: 9px; list-style: none; padding: 0; margin: 0; }
.chips li { margin: 0; }
.chips li, .chip {
  display: inline-block; padding: 8px 15px; border-radius: var(--r-pill);
  background: #fff; border: 1px solid var(--hair);
  font-size: .84rem; color: var(--body); line-height: 1.4;
  transition: all .2s var(--ease);
}
.chips li:hover { border-color: var(--navy-200); background: var(--navy-50); color: var(--navy-700); }

.swatches { display: grid; grid-template-columns: repeat(auto-fill, minmax(168px, 1fr)); gap: 12px; }
.swatch {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; background: #fff; border: 1px solid var(--hair); border-radius: var(--r);
  transition: all .2s var(--ease);
}
.swatch:hover { box-shadow: var(--shadow-sm); border-color: var(--navy-100); }
.swatch .dot {
  width: 30px; height: 30px; flex: 0 0 30px; border-radius: 9px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.09);
}
.swatch b { display: block; font-size: .8rem; color: var(--ink); line-height: 1.3; font-weight: 600; }
.swatch span { font-size: .72rem; color: var(--muted); }

/* --------------------------------------------------------------------------
   12. Filter bar (products page)
   -------------------------------------------------------------------------- */
.filters {
  display: flex; flex-wrap: wrap; gap: 9px;
  padding: 16px 0 6px; margin-bottom: 34px;
}
.filter-btn {
  padding: 9px 18px; border-radius: var(--r-pill);
  background: #fff; border: 1.5px solid var(--hair);
  font-family: inherit; font-size: .85rem; font-weight: 600; color: var(--body);
  cursor: pointer; transition: all .2s var(--ease); white-space: nowrap;
}
.filter-btn:hover { border-color: var(--navy-200); color: var(--navy); }
.filter-btn.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }

.is-hidden { display: none !important; }

.empty-note {
  padding: 50px 20px; text-align: center; color: var(--muted);
  border: 1px dashed var(--hair); border-radius: var(--r-lg); background: var(--cream);
}

/* --------------------------------------------------------------------------
   13. Contact / form
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(30px, 4vw, 56px); align-items: start; }

.info-card {
  background: #fff; border: 1px solid var(--hair); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--shadow-xs);
}
.info-card + .info-card { margin-top: 20px; }
.info-card h3 { font-size: 1.05rem; margin-bottom: 18px; }

.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 17px; }
.info-list li { display: flex; gap: 14px; margin: 0; }
.info-list .ico {
  width: 40px; height: 40px; flex: 0 0 40px; border-radius: 12px;
  display: grid; place-items: center; background: var(--navy-50); color: var(--navy); font-size: .95rem;
}
.info-list .ico.line { background: rgba(6,199,85,.12); color: var(--line-dark); }
.info-list .ico.gold { background: var(--gold-100); color: var(--gold-700); }
.info-list b { display: block; font-size: .73rem; font-weight: 700; color: var(--muted);
               text-transform: uppercase; letter-spacing: .1em; margin-bottom: 3px; }
.info-list .val { font-size: .95rem; color: var(--ink); line-height: 1.65; }
.info-list .val a { color: var(--ink); font-weight: 600; }
.info-list .val a:hover { color: var(--navy); }

.form-card {
  background: #fff; border: 1px solid var(--hair); border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 40px); box-shadow: var(--shadow);
}

.field { margin-bottom: 20px; }
.field label {
  display: block; margin-bottom: 8px;
  font-size: .85rem; font-weight: 600; color: var(--ink);
}
.field label .req { color: #d92d20; margin-left: 2px; }
.field .hint { font-size: .76rem; color: var(--muted); font-weight: 400; margin-top: 6px; }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%; padding: 13px 16px;
  font-family: inherit; font-size: .94rem; color: var(--ink);
  background: var(--white); border: 1.5px solid var(--hair); border-radius: var(--r-sm);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 148px; resize: vertical; line-height: 1.7; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236b7186'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; background-size: 14px;
  padding-right: 42px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy-400); box-shadow: 0 0 0 4px rgba(46,49,146,.1);
}
.field input.has-error, .field textarea.has-error, .field select.has-error {
  border-color: #f04438; box-shadow: 0 0 0 4px rgba(240,68,56,.09);
}
.field-error { display: none; margin-top: 6px; font-size: .78rem; color: #d92d20; }
.field-error.is-shown { display: block; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

.consent {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: .83rem; color: var(--muted); line-height: 1.65;
}
.consent input { margin-top: 4px; accent-color: var(--navy); width: 17px; height: 17px; flex-shrink: 0; }

.form-alert {
  display: none; align-items: flex-start; gap: 13px;
  padding: 16px 18px; border-radius: var(--r); margin-bottom: 24px;
  font-size: .9rem; line-height: 1.65;
}
.form-alert.is-shown { display: flex; }
.form-alert i { font-size: 1.05rem; margin-top: 2px; }
.form-alert.ok   { background: #ecfdf3; color: #05603a; border: 1px solid #a6f4c5; }
.form-alert.err  { background: #fef3f2; color: #b42318; border: 1px solid #fecdca; }
.form-alert.info { background: var(--navy-50); color: var(--navy-800); border: 1px solid var(--navy-100); }

.btn.is-loading { pointer-events: none; opacity: .75; }
.btn.is-loading i { animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* map */
.map-card {
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--hair);
  background: #fff; box-shadow: var(--shadow-xs);
}
.map-card img { width: 100%; height: auto; }
.map-card iframe { width: 100%; height: 400px; border: 0; display: block; }
.map-tabs { display: flex; border-bottom: 1px solid var(--hair); background: var(--cream); }
.map-tab {
  flex: 1; padding: 14px 16px; border: 0; background: transparent;
  font-family: inherit; font-size: .86rem; font-weight: 600; color: var(--muted);
  cursor: pointer; transition: all .2s var(--ease); border-bottom: 2px solid transparent;
}
.map-tab:hover { color: var(--navy); }
.map-tab.is-active { color: var(--navy); background: #fff; border-bottom-color: var(--gold); }
.map-pane { display: none; }
.map-pane.is-active { display: block; }

/* --------------------------------------------------------------------------
   14. Payment page
   -------------------------------------------------------------------------- */
.bank-card {
  background: linear-gradient(125deg, var(--navy) 0%, var(--navy-800) 100%);
  color: #fff; border-radius: var(--r-lg); padding: 34px;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.bank-card::after {
  content: ""; position: absolute; right: -50px; top: -50px; width: 220px; height: 220px;
  border-radius: 50%; background: radial-gradient(circle, rgba(224,180,85,.26) 0%, transparent 70%);
}
.bank-card > * { position: relative; z-index: 2; }
.bank-card .bank-label {
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold-400); font-weight: 700; margin-bottom: 8px;
}
.bank-card .bank-name { font-size: 1.3rem; font-weight: 700; margin-bottom: 26px; color: #fff; }
.bank-card dl { margin: 0; display: grid; gap: 18px; }
.bank-card dt { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: #9ea2cf; margin-bottom: 4px; }
.bank-card dd { margin: 0; font-size: 1.02rem; color: #fff; font-weight: 600; }
.bank-card .acct {
  font-size: clamp(1.4rem, 1.1rem + 1.2vw, 1.9rem); letter-spacing: .06em;
  font-weight: 800; font-variant-numeric: tabular-nums;
}
.copy-btn {
  display: inline-flex; align-items: center; gap: 8px; margin-left: 12px;
  padding: 6px 13px; border-radius: var(--r-pill); border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.1); color: #fff;
  font-family: inherit; font-size: .74rem; font-weight: 600; cursor: pointer;
  transition: all .2s var(--ease); vertical-align: middle;
}
.copy-btn:hover { background: #fff; color: var(--navy); }

.steps { counter-reset: step; display: grid; gap: 18px; list-style: none; padding: 0; margin: 0; }
.steps li {
  position: relative; padding: 22px 24px 22px 74px; margin: 0;
  background: #fff; border: 1px solid var(--hair); border-radius: var(--r);
  transition: all .25s var(--ease);
}
.steps li:hover { border-color: var(--navy-100); box-shadow: var(--shadow-sm); }
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 22px; top: 22px;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--navy); color: #fff; font-size: .9rem; font-weight: 700;
}
.steps b { display: block; color: var(--ink); font-size: .98rem; margin-bottom: 4px; }
.steps p { font-size: .88rem; color: var(--muted); margin: 0; line-height: 1.75; }

.pay-logos {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 30px;
  padding: 26px; background: #fff; border: 1px solid var(--hair); border-radius: var(--r-lg);
}
.pay-logos img { max-height: 74px; width: auto; object-fit: contain; }

/* --------------------------------------------------------------------------
   15. Page hero (inner pages)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy) 130%);
  color: #fff; padding: clamp(50px, 6vw, 86px) 0 clamp(44px, 5vw, 72px);
}
.page-hero::before {
  content: ""; position: absolute; right: -90px; top: -130px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,180,85,.2) 0%, transparent 68%);
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { color: #bfc2e4; font-size: 1.04rem; max-width: 62ch; margin: 0; }

.crumbs {
  display: flex; align-items: center; flex-wrap: wrap; gap: 9px;
  font-size: .8rem; color: #9ea2cf; margin-bottom: 20px;
}
.crumbs a { color: #cfd2ea; }
.crumbs a:hover { color: #fff; }
.crumbs i { font-size: .6rem; opacity: .6; }

/* --------------------------------------------------------------------------
   16. Lightbox
   -------------------------------------------------------------------------- */
.lightbox {
  position: fixed; inset: 0; z-index: 1200;
  display: none; align-items: center; justify-content: center;
  padding: 24px; background: rgba(11,12,34,.92);
  backdrop-filter: blur(6px);
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: min(1040px, 94vw); max-height: 88vh; width: auto;
  border-radius: var(--r); box-shadow: 0 30px 80px rgba(0,0,0,.6); background: #fff;
}
.lightbox-close {
  position: absolute; top: 20px; right: 22px;
  width: 46px; height: 46px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,.14); color: #fff; font-size: 1.15rem; cursor: pointer;
  transition: background .2s var(--ease);
}
.lightbox-close:hover { background: rgba(255,255,255,.3); }
.lightbox-cap {
  position: absolute; left: 0; right: 0; bottom: 22px; text-align: center;
  color: #d8daf0; font-size: .86rem; padding-inline: 24px;
}
.lightbox-cap a { color: var(--gold-400); font-weight: 600; margin-left: 10px; }

/* --------------------------------------------------------------------------
   17. Floating action buttons
   -------------------------------------------------------------------------- */
.fab-stack {
  position: fixed; right: 20px; bottom: 22px; z-index: 950;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.fab {
  display: inline-flex; align-items: center; gap: 11px;
  height: 56px; padding: 0 20px 0 17px;
  border-radius: var(--r-pill); border: 0;
  font-family: inherit; font-size: .9rem; font-weight: 700; cursor: pointer;
  box-shadow: 0 10px 28px rgba(20,22,63,.28);
  transition: all .28s var(--ease); white-space: nowrap;
}
.fab i { font-size: 1.32rem; }
.fab-line { background: var(--line); color: #fff; }
.fab-line:hover { background: var(--line-dark); color: #fff; transform: translateY(-3px); box-shadow: 0 16px 34px rgba(6,199,85,.4); }
.fab-enq { background: var(--navy); color: #fff; }
.fab-enq:hover { background: var(--navy-700); color: #fff; transform: translateY(-3px); }

.fab .fab-label {
  max-width: 260px; overflow: hidden;
  transition: max-width .3s var(--ease), opacity .25s var(--ease);
}

.to-top {
  width: 46px; height: 46px; padding: 0; justify-content: center;
  background: #fff; color: var(--navy); border: 1px solid var(--hair);
  opacity: 0; visibility: hidden; transform: translateY(10px);
}
.to-top.is-shown { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--navy); color: #fff; }

/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--navy-900); color: #a7abd2; padding: clamp(50px, 6vw, 76px) 0 0; }
.site-footer a { color: #cfd2ea; }
.site-footer a:hover { color: #fff; }

.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 38px; padding-bottom: 46px; }
.footer-brand { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; }
.footer-brand img { width: 54px; border-radius: 6px; background: #fff; }
.footer-brand b { color: #fff; font-size: 1rem; line-height: 1.3; display: block; }
.footer-brand span { font-size: .67rem; letter-spacing: .12em; text-transform: uppercase; color: #8388b8; }
.footer-about { font-size: .88rem; line-height: 1.85; margin-bottom: 20px; }

.footer-col h4 {
  color: #fff; font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 11px; font-size: .88rem; }
.footer-col li:last-child { margin-bottom: 0; }

.footer-contact li { display: flex; gap: 11px; align-items: flex-start; line-height: 1.7; }
.footer-contact i { color: var(--gold-400); width: 16px; margin-top: 5px; flex-shrink: 0; font-size: .85rem; }

.footer-line-cta {
  display: flex; align-items: center; gap: 12px; margin-top: 20px;
  padding: 14px 18px; border-radius: var(--r);
  background: rgba(6,199,85,.12); border: 1px solid rgba(6,199,85,.28);
}
.footer-line-cta i { font-size: 1.6rem; color: var(--line); }
.footer-line-cta b { display: block; color: #fff; font-size: .88rem; }
.footer-line-cta span { font-size: .76rem; color: #9ea2cf; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0 26px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
  font-size: .78rem; color: #8388b8;
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 20px; }

/* --------------------------------------------------------------------------
   19. Cookie banner
   -------------------------------------------------------------------------- */
.cookie-bar {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1000;
  display: none; gap: 20px; align-items: center; flex-wrap: wrap;
  max-width: 980px; margin-inline: auto;
  padding: 20px 24px; background: #fff; border: 1px solid var(--hair);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
}
.cookie-bar.is-shown { display: flex; }
.cookie-bar p { flex: 1 1 340px; font-size: .84rem; line-height: 1.7; margin: 0; color: var(--body); }
.cookie-bar b { color: var(--ink); display: block; margin-bottom: 3px; }
.cookie-bar .btn-row { flex-shrink: 0; }

/* --------------------------------------------------------------------------
   20. Reveal on scroll
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   21. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  .nav, .nav-actions .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero .wrap { grid-template-columns: 1fr; }
  /* headline leads on small screens — the collage follows it */
  .hero-art { max-width: 560px; margin-top: 8px; }
  .hero-float { left: auto; right: 10px; bottom: -18px; }
  .split, .split--wide-text { grid-template-columns: 1fr; }
  .split-art .inset { right: 12px; bottom: -22px; width: 40%; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  :root { --nav-h: 68px; }
  .topbar { font-size: .74rem; }
  .topbar .wrap { justify-content: center; }
  .topbar-items { gap: 16px; justify-content: center; }
  .topbar-items .hide-sm { display: none; }
  .brand img { width: 48px; }
  .brand-name { font-size: .94rem; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .hero-art-grid { grid-template-columns: 1fr 1fr; }
  .hero-art .a1 { grid-row: span 2; aspect-ratio: 3 / 4; }
  .hero-stats { gap: 16px 26px; }
  .hero-stat b { font-size: 1.45rem; }

  /* icon-only FABs on small screens, and drop the back-to-top button —
     the browser already offers that and three stacked pills cover too much. */
  .fab-stack { right: 14px; bottom: 14px; gap: 10px; }
  .fab .fab-label { max-width: 0; opacity: 0; }
  .fab { padding: 0; width: 52px; height: 52px; justify-content: center; gap: 0; }
  .fab i { font-size: 1.2rem; }
  .to-top { display: none; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .pay-logos { gap: 22px; padding: 20px; }
  .pay-logos img { max-height: 54px; }

  .cookie-bar { padding: 18px; }
  .cookie-bar .btn-row { width: 100%; }
  .cookie-bar .btn { flex: 1; }
}

@media (max-width: 480px) {
  .hero-art-grid { grid-template-columns: 1fr; }
  .hero-art .a1 { grid-row: auto; aspect-ratio: 4 / 3; }
  .hero-art .a3 { display: none; }
  .hero-float { position: static; margin-top: 16px; }
  .btn-row .btn { width: 100%; }
  .split-art .inset { display: none; }
}

/* --------------------------------------------------------------------------
   22. Print
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .topbar, .fab-stack, .cookie-bar, .site-footer, .band, .cta-panel { display: none !important; }
  body { color: #000; }
  .card, .info-card, .form-card { break-inside: avoid; border-color: #ccc; }
}
