@charset "UTF-8";
/* ═══════════════════════════════════════════════════
   style.css — Fairvelle · golf equipment & clubhouse
   Prefix: gf-  (cart engine keeps rst- for drawer/badge/qty/toast)
   Theme: green pelouse · cream · navy · gold accent
   Fonts: Hedvig Letters Serif (display) + Mona Sans (body)
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Hedvig+Letters+Serif:opsz@12..24&family=Mona+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── Custom Properties ────────────────────────────── */
:root {
  --green:      #2f6e3b;   /* fairway / pelouse */
  --green-deep: #245430;
  --green-soft: #3f8a4d;
  --cream:      #f4f1e6;   /* clubhouse cream */
  --cream-deep: #ece6d4;
  --paper:      #faf8f1;
  --navy:       #16243a;   /* ink / navy */
  --navy-soft:  #2c3c54;
  --gold:       #c9a24a;   /* trophy gold accent */
  --gold-deep:  #ad8634;
  --ink:        #16243a;
  --ink-soft:   #44505f;
  --ink-mute:   #6f7884;
  --line:       #ddd6c4;
  --line-soft:  #e8e2d2;
  --white:      #ffffff;
  --shadow:     18 28 46;

  --ff-display: 'Hedvig Letters Serif', Georgia, 'Times New Roman', serif;
  --ff-body:    'Mona Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --maxw:   1240px;
  --rad:    4px;
  --rad-md: 8px;
  --rad-lg: 16px;
  --gutter: clamp(1.1rem, 4vw, 2.6rem);
  --anim:   0.2s ease;
}

/* ── Reset ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, textarea, select { font: inherit; }
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 400; line-height: 1.1; letter-spacing: -0.01em; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ── Utility ──────────────────────────────────────── */
.gf-sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.gf-container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.gf-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.gf-reveal.is-visible { opacity: 1; transform: none; }
.gf-eyebrow {
  font-family: var(--ff-body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep);
}
.gf-section { padding: clamp(3rem, 6vw, 5rem) 0; }
.gf-section-head { margin-bottom: 2rem; }
.gf-h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  color: var(--navy);
  margin-top: 0.3rem;
}
.gf-section-intro { font-size: 1rem; color: var(--ink-mute); max-width: 56ch; margin-top: 0.85rem; line-height: 1.7; }
.gf-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

/* ── Buttons ──────────────────────────────────────── */
.gf-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  font-family: var(--ff-body); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.01em;
  padding: 0.8rem 1.6rem; border-radius: var(--rad-md); line-height: 1;
  border: 1.6px solid transparent; text-align: center;
  transition: background var(--anim), color var(--anim), border-color var(--anim), box-shadow var(--anim), transform var(--anim);
}
.gf-btn:active { transform: translateY(1px); }
.gf-btn:focus-visible { outline: 2.5px solid var(--gold); outline-offset: 3px; }
.gf-btn-primary { background: var(--green); color: var(--cream); }
.gf-btn-primary:hover { background: var(--green-deep); box-shadow: 0 8px 22px -10px rgb(var(--shadow) / .55); }
.gf-btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.gf-btn-ghost:hover { border-color: var(--navy); background: var(--navy); color: var(--cream); }
.gf-btn-accent { background: var(--gold); color: var(--navy); }
.gf-btn-accent:hover { background: var(--gold-deep); color: var(--white); }
.gf-btn-white { background: var(--cream); color: var(--navy); }
.gf-btn-white:hover { background: var(--white); box-shadow: 0 8px 22px -12px rgba(0,0,0,0.35); }
.gf-btn-sm { padding: 0.5rem 1rem; font-size: 0.8rem; }
.gf-btn-block { width: 100%; }

/* ── ANNOUNCEMENT STRIP (worded) ──────────────────── */
.gf-strip {
  background: var(--navy); color: var(--cream);
  font-family: var(--ff-body); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-align: center; padding: 0.5rem 1rem;
}
.gf-strip b { color: var(--gold); font-weight: 700; margin: 0 0.45rem; }

/* ═══════════════════════════════════════
   HEADER — FIXED LEFT VERTICAL RAIL
   (brand top · stacked nav · actions bottom)
   page content is inset to the right of the rail on desktop
   ═══════════════════════════════════════ */
:root { --rail-w: 244px; }

.gf-head {
  position: fixed; top: 0; left: 0; bottom: 0; width: var(--rail-w); z-index: 100;
  background: var(--navy);
  border-right: 1px solid rgba(244,241,230,0.10);
  transition: box-shadow var(--anim);
}
.gf-head--stuck { box-shadow: 14px 0 40px -28px rgba(0,0,0,0.6); }
.gf-head-inner {
  display: flex; flex-direction: column; height: 100%;
  padding: 1.9rem 1.5rem 1.6rem;
}

/* Brand (top of rail) */
.gf-brand { display: inline-flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.gf-brand-mark { width: 36px; height: 36px; flex: none; }
.gf-brand-name {
  font-family: var(--ff-display); font-size: 1.55rem; color: var(--cream);
  letter-spacing: 0.005em; line-height: 1;
}
.gf-brand-name b { color: var(--green-soft); font-weight: 400; }
.gf-rail-tag {
  margin-top: 1.15rem; font-family: var(--ff-body); font-size: 0.64rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
  line-height: 1.6; max-width: 22ch;
}

/* Nav — stacked vertical column, centred in the rail */
.gf-nav {
  display: flex; flex-direction: column; align-items: stretch; gap: 0.15rem;
  margin: auto 0; padding: 1.4rem 0;
  border-top: 1px solid rgba(244,241,230,0.10);
  border-bottom: 1px solid rgba(244,241,230,0.10);
}
.gf-nav-link {
  font-family: var(--ff-body); font-size: 0.86rem; font-weight: 600; letter-spacing: 0.03em;
  color: rgba(244,241,230,0.74); padding: 0.62rem 0.7rem; position: relative;
  border-radius: var(--rad); transition: color var(--anim), background var(--anim);
  display: flex; align-items: center; gap: 0.7rem;
}
.gf-nav-link::before {
  content: ''; width: 6px; height: 6px; border-radius: 999px; flex: none;
  background: var(--gold); opacity: 0; transform: scale(0.4); transition: opacity var(--anim), transform var(--anim);
}
.gf-nav-link:hover { color: var(--cream); background: rgba(244,241,230,0.06); }
.gf-nav-link:hover::before, .gf-nav-link.is-active::before { opacity: 1; transform: scale(1); }
.gf-nav-link.is-active { color: var(--cream); }

/* Actions (bottom of rail) */
.gf-head-actions { display: flex; align-items: center; gap: 0.35rem; flex-shrink: 0; margin-top: 1.4rem; }
.gf-icon-btn {
  width: 42px; height: 42px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--cream); position: relative; transition: background var(--anim);
}
.gf-icon-btn:hover { background: rgba(244,241,230,0.10); }
.gf-icon-btn svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* cart badge — engine hook (rst-) */
.rst-cart-badge {
  position: absolute; top: 3px; right: 3px; min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--gold); color: var(--navy); border-radius: 999px;
  font-family: var(--ff-body); font-size: 0.66rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* Hamburger — only shown on mobile top-bar */
.gf-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.gf-hamburger span { display: block; width: 22px; height: 2px; background: var(--cream); border-radius: 1px; transition: transform var(--anim), opacity var(--anim); }
.gf-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gf-hamburger.is-open span:nth-child(2) { opacity: 0; }
.gf-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile slide-in nav (collapsed rail state) */
.gf-mobile-nav {
  display: none; position: fixed; inset: 0; background: var(--navy); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
  opacity: 0; transition: opacity 0.25s ease;
}
.gf-mobile-nav.is-open { opacity: 1; }
.gf-mobile-nav a {
  font-family: var(--ff-display); font-size: clamp(1.6rem, 5vw, 2.3rem); color: var(--cream);
  transition: color var(--anim);
}
.gf-mobile-nav a:hover { color: var(--green-soft); }

/* Page shell inset to the right of the fixed rail (desktop) */
.gf-strip { margin-left: var(--rail-w); }
body > main,
.gf-foot,
.gf-pageframe { margin-left: var(--rail-w); }

/* ═══════════════════════════════════════
   HERO — FULL-BLEED FAIRWAY · oversized type overlay
   single CTA · horizontal spec/credential band at the foot
   (NO split, NO image-card, NO seal, NO 3-stat row)
   ═══════════════════════════════════════ */
.gf-hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: clamp(560px, 82vh, 760px);
  display: flex; flex-direction: column; justify-content: flex-end;
  background:
    radial-gradient(120% 90% at 18% 8%, rgba(22,36,58,0.42) 0%, rgba(22,36,58,0.62) 46%, rgba(11,18,30,0.88) 100%),
    var(--green-deep);
}
.gf-hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center 38%;
}
.gf-hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,18,30,0) 38%, rgba(11,18,30,0.55) 100%);
}
.gf-hero-inner {
  max-width: var(--maxw); width: 100%; margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) var(--gutter) 0;
}
.gf-hero-eyebrow { margin-bottom: 1.2rem; color: var(--gold); }
.gf-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.7rem, 8vw, 6rem);
  line-height: 1.0; letter-spacing: -0.02em; color: var(--cream);
  max-width: 18ch; text-wrap: balance;
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
}
.gf-hero-title em { font-style: italic; color: var(--gold); }
.gf-hero-lede {
  font-size: clamp(1rem, 1.3vw, 1.18rem); color: rgba(244,241,230,0.86);
  max-width: 52ch; margin: 1.5rem 0 2.1rem; line-height: 1.7;
}
.gf-hero-ctas { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.gf-hero-ctas .gf-btn-primary { background: var(--gold); color: var(--navy); padding: 0.95rem 2rem; font-size: 0.92rem; }
.gf-hero-ctas .gf-btn-primary:hover { background: var(--gold-deep); color: var(--white); box-shadow: 0 14px 34px -14px rgba(201,162,74,0.6); }
.gf-hero-scrolllink {
  font-family: var(--ff-body); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--cream); display: inline-flex; align-items: center; gap: 0.55rem;
  border-bottom: 1px solid rgba(244,241,230,0.35); padding-bottom: 0.2rem; transition: border-color var(--anim);
}
.gf-hero-scrolllink:hover { border-color: var(--gold); }
.gf-hero-scrolllink svg { width: 16px; height: 16px; fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Horizontal spec / credential band along the bottom edge */
.gf-hero-band {
  margin-top: clamp(2.6rem, 6vw, 4.5rem);
  border-top: 1px solid rgba(244,241,230,0.16);
  background: rgba(11,18,30,0.42);
  backdrop-filter: blur(3px);
}
.gf-hero-band-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 1.15rem var(--gutter);
  display: flex; flex-wrap: wrap; align-items: center; gap: clamp(1rem, 3vw, 2.6rem);
}
.gf-hero-cred { display: flex; align-items: center; gap: 0.7rem; min-width: 0; }
.gf-hero-cred svg { width: 22px; height: 22px; flex: none; fill: none; stroke: var(--gold); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.gf-hero-cred-t { font-family: var(--ff-body); font-size: 0.85rem; font-weight: 600; color: var(--cream); line-height: 1.3; }
.gf-hero-cred-d { font-size: 0.72rem; color: rgba(244,241,230,0.62); line-height: 1.3; }
.gf-hero-cred-sep { width: 1px; align-self: stretch; background: rgba(244,241,230,0.14); }

/* ═══════════════════════════════════════
   CATEGORY TILES
   ═══════════════════════════════════════ */
.gf-cat-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.85rem; }
.gf-cat-tile {
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  padding: 1.3rem 0.6rem; border: 1px solid var(--line); border-radius: var(--rad-md);
  background: var(--white); text-align: center; transition: transform var(--anim), border-color var(--anim), box-shadow var(--anim);
}
.gf-cat-tile:hover { transform: translateY(-4px); border-color: var(--green); box-shadow: 0 10px 26px -16px rgb(var(--shadow) / .5); }
.gf-cat-ico { width: 30px; height: 30px; fill: none; stroke: var(--green); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.gf-cat-label { font-size: 0.8rem; font-weight: 600; color: var(--navy); letter-spacing: 0.01em; line-height: 1.3; }

/* ═══════════════════════════════════════
   PRODUCT GRID + CARD
   ═══════════════════════════════════════ */
.gf-grid { display: grid; gap: 1.4rem; }
.gf-grid-4 { grid-template-columns: repeat(4, 1fr); }
.gf-grid-3 { grid-template-columns: repeat(3, 1fr); }

.gf-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--rad-md);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--anim), box-shadow var(--anim), border-color var(--anim);
}
.gf-card:hover { transform: translateY(-5px); box-shadow: 0 16px 34px -20px rgb(var(--shadow) / .55); border-color: var(--green-soft); }
.gf-card-media { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--cream-deep); }
.gf-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.gf-card:hover .gf-card-media img { transform: scale(1.05); }
.gf-card-cat {
  position: absolute; top: 0.7rem; left: 0.7rem;
  background: rgba(22,36,58,0.82); color: var(--cream);
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.25rem 0.55rem; border-radius: var(--rad);
}
.gf-card-body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; flex: 1; gap: 0.5rem; }
.gf-card-name { font-family: var(--ff-display); font-size: 1.08rem; color: var(--navy); line-height: 1.25; }
.gf-card-short { font-size: 0.82rem; color: var(--ink-mute); line-height: 1.55; flex: 1; }
.gf-card-chips { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.gf-chip {
  font-family: var(--ff-body); font-size: 0.64rem; font-weight: 600;
  background: var(--cream); color: var(--green-deep);
  padding: 0.22rem 0.55rem; border-radius: 999px; letter-spacing: 0.02em;
  border: 1px solid var(--line-soft);
}
.gf-chip-accent { background: rgba(201,162,74,0.16); color: var(--gold-deep); border-color: rgba(201,162,74,0.3); }
.gf-card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 0.4rem; gap: 0.5rem; }
.gf-price { font-family: var(--ff-display); font-size: 1.18rem; color: var(--navy); }
.gf-price-sub { font-size: 0.7rem; color: var(--ink-mute); }

/* ═══════════════════════════════════════
   FEATURE BAND (dark / fairway)
   ═══════════════════════════════════════ */
.gf-band-dark { background: var(--green-deep); color: var(--cream); }
.gf-band-dark .gf-h2 { color: var(--cream); }
.gf-band-dark .gf-eyebrow { color: var(--gold); }
.gf-band-dark .gf-section-intro { color: rgba(244,241,230,0.8); }
.gf-trait-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 2rem; }
.gf-trait-card {
  background: rgba(244,241,230,0.06); border: 1px solid rgba(244,241,230,0.14);
  border-radius: var(--rad-md); padding: 1.5rem;
}
.gf-trait-icon { width: 30px; height: 30px; fill: none; stroke: var(--gold); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 0.85rem; }
.gf-trait-name { font-family: var(--ff-display); font-size: 1.15rem; color: var(--cream); margin-bottom: 0.4rem; }
.gf-trait-desc { font-size: 0.85rem; color: rgba(244,241,230,0.72); line-height: 1.6; }

/* ═══════════════════════════════════════
   FEATURE SPLIT
   ═══════════════════════════════════════ */
.gf-feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.gf-feature-media { border-radius: var(--rad-lg); overflow: hidden; aspect-ratio: 5/4; box-shadow: 0 24px 50px -28px rgb(var(--shadow) / .5); }
.gf-feature-media img { width: 100%; height: 100%; object-fit: cover; }
.gf-feature-list { display: flex; flex-direction: column; gap: 1.1rem; margin: 1.6rem 0 2rem; }
.gf-feature-item { display: flex; gap: 0.85rem; align-items: flex-start; }
.gf-feature-item-ico { width: 26px; height: 26px; flex: none; fill: none; stroke: var(--green); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; margin-top: 0.15rem; }
.gf-feature-item-t { display: block; font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.gf-feature-item-d { display: block; font-size: 0.85rem; color: var(--ink-mute); line-height: 1.6; margin-top: 0.2rem; }

/* ═══════════════════════════════════════
   FITTING / CARE BAND (gold tint)
   ═══════════════════════════════════════ */
.gf-care { background: var(--navy); color: var(--cream); }
.gf-care-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.gf-care h2 { font-family: var(--ff-display); font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--cream); margin-bottom: 1rem; }
.gf-care p { color: rgba(244,241,230,0.82); max-width: 56ch; margin: 0 auto 1.8rem; line-height: 1.7; }
.gf-care-pills { display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2rem; }
.gf-care-pill {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.04em;
  border: 1px solid rgba(201,162,74,0.5); color: var(--gold);
  padding: 0.4rem 0.9rem; border-radius: 999px;
}

/* ═══════════════════════════════════════
   JOURNAL / NOTES
   ═══════════════════════════════════════ */
.gf-notes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.gf-note { background: var(--white); border: 1px solid var(--line); border-radius: var(--rad-md); overflow: hidden; transition: transform var(--anim), box-shadow var(--anim); }
.gf-note:hover { transform: translateY(-4px); box-shadow: 0 16px 34px -20px rgb(var(--shadow) / .5); }
.gf-note-media { aspect-ratio: 16/9; overflow: hidden; }
.gf-note-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gf-note:hover .gf-note-media img { transform: scale(1.05); }
.gf-note-tag { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--gold-deep); margin: 1.1rem 1.2rem 0.4rem; }
.gf-note-title { font-family: var(--ff-display); font-size: 1.12rem; color: var(--navy); line-height: 1.3; margin: 0 1.2rem 0.5rem; }
.gf-note-ex { font-size: 0.84rem; color: var(--ink-mute); line-height: 1.55; margin: 0 1.2rem 0.9rem; }
.gf-note-link { display: inline-block; margin: 0 1.2rem 1.2rem; font-size: 0.82rem; font-weight: 600; color: var(--green); text-decoration: underline; text-underline-offset: 3px; }

/* ═══════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════ */
.gf-news { text-align: center; }
.gf-news-inner { max-width: 560px; margin: 0 auto; }
.gf-news h2 { font-family: var(--ff-display); font-size: clamp(1.7rem, 3.5vw, 2.4rem); color: var(--navy); margin-bottom: 0.7rem; }
.gf-news p { font-size: 0.95rem; color: var(--ink-mute); margin-bottom: 1.5rem; line-height: 1.65; }
.gf-news-form { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
.gf-input {
  flex: 1 1 240px; padding: 0.75rem 1rem; border: 1.5px solid var(--line);
  border-radius: var(--rad-md); background: var(--white); color: var(--navy);
  transition: border-color var(--anim), box-shadow var(--anim);
}
.gf-input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(47,110,59,0.12); }
.gf-news-fine { font-size: 0.75rem; color: var(--ink-mute); margin-top: 0.75rem; }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.gf-foot { background: var(--navy); color: var(--cream); padding-top: clamp(3rem, 6vw, 5rem); }
.gf-foot-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.gf-foot-brand { display: inline-flex; align-items: center; gap: 0.55rem; margin-bottom: 0.85rem; }
.gf-foot-brand-name { font-family: var(--ff-display); font-size: 1.4rem; color: var(--cream); }
.gf-foot-brand-name b { color: var(--gold); font-weight: 400; }
.gf-foot-tagline { font-size: 0.84rem; color: rgba(244,241,230,0.65); margin-bottom: 1.1rem; max-width: 30ch; }
.gf-foot-address { font-style: normal; font-size: 0.82rem; color: rgba(244,241,230,0.7); line-height: 1.8; }
.gf-foot-hours { font-size: 0.78rem; color: rgba(244,241,230,0.55); margin-top: 0.75rem; line-height: 1.9; }
.gf-foot-col h4 { font-family: var(--ff-body); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(244,241,230,0.45); margin-bottom: 1rem; }
.gf-foot-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.gf-foot-col a { font-size: 0.85rem; color: rgba(244,241,230,0.75); transition: color var(--anim); }
.gf-foot-col a:hover { color: var(--gold); }

.gf-foot-lang { display: flex; gap: 0.55rem; flex-wrap: wrap; align-items: center; padding: 1.5rem 0; border-top: 1px solid rgba(244,241,230,0.12); }
.gf-foot-lang-label { font-size: 0.7rem; color: rgba(244,241,230,0.45); margin-right: 0.3rem; }
/* lang buttons — chrome engine hook (rst-) */
.rst-lang-btn { font-family: var(--ff-body); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.04em; color: rgba(244,241,230,0.5); padding: 0.28rem 0.55rem; border-radius: var(--rad); transition: color var(--anim), background var(--anim); }
.rst-lang-btn:hover, .rst-lang-btn.is-active { color: var(--navy); background: var(--gold); }

.gf-foot-fine {
  border-top: 1px solid rgba(244,241,230,0.12); padding: 1.25rem 0;
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; flex-wrap: wrap;
  font-size: 0.74rem; color: rgba(244,241,230,0.4);
}
.gf-foot-fine a { color: rgba(244,241,230,0.55); transition: color var(--anim); }
.gf-foot-fine a:hover { color: var(--gold); }
.gf-foot-fine-links { display: flex; gap: 1.4rem; }

/* ═══════════════════════════════════════
   CART DRAWER + TOAST — engine (rst-)
   ═══════════════════════════════════════ */
.rst-cart-overlay { position: fixed; inset: 0; background: rgba(22,36,58,0.5); z-index: 190; opacity: 0; pointer-events: none; transition: opacity 0.25s ease; }
.rst-cart-overlay.is-visible { opacity: 1; pointer-events: all; }
.rst-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100vw);
  background: var(--paper); z-index: 200; transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.32,0,0.15,1);
  display: flex; flex-direction: column; box-shadow: -4px 0 28px rgba(22,36,58,0.18);
}
.rst-drawer.is-open { transform: translateX(0); }
.rst-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--line); }
.rst-drawer-title { font-family: var(--ff-display); font-size: 1.25rem; color: var(--navy); }
.rst-drawer-close { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--ink-mute); font-size: 1.3rem; transition: background var(--anim), color var(--anim); }
.rst-drawer-close:hover { background: var(--cream-deep); color: var(--navy); }
.rst-drawer-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.rst-drawer-empty { font-size: 0.9rem; color: var(--ink-mute); text-align: center; padding: 2rem 0; }
.rst-drawer-item { display: flex; gap: 0.85rem; position: relative; }
.rst-drawer-item-img { width: 64px; height: 64px; border-radius: var(--rad); object-fit: cover; flex-shrink: 0; background: var(--cream-deep); }
.rst-drawer-item-info { flex: 1; min-width: 0; }
.rst-drawer-item-name { font-size: 0.88rem; font-weight: 600; color: var(--navy); line-height: 1.3; }
.rst-drawer-item-meta { font-size: 0.68rem; color: var(--ink-mute); margin-top: 0.15rem; }
.rst-drawer-item-row { display: flex; align-items: center; justify-content: space-between; margin-top: 0.4rem; }
.rst-drawer-item-price { font-family: var(--ff-display); font-size: 0.95rem; color: var(--navy); }
.rst-drawer-remove { position: absolute; top: 0; right: 0; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: var(--ink-mute); border-radius: 50%; transition: background var(--anim), color var(--anim); }
.rst-drawer-remove:hover { background: var(--cream-deep); color: var(--navy); }
.rst-qty-ctrl { display: flex; align-items: center; gap: 0.3rem; }
.rst-qty-btn { width: 24px; height: 24px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; color: var(--navy); transition: background var(--anim); }
.rst-qty-btn:hover { background: var(--cream-deep); }
.rst-qty-val { font-family: var(--ff-body); font-weight: 600; font-size: 0.82rem; min-width: 20px; text-align: center; }
.rst-drawer-foot { padding: 1.25rem 1.5rem; border-top: 1px solid var(--line); }
.rst-drawer-subtotal { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; font-size: 0.9rem; font-weight: 600; color: var(--navy); }
.rst-drawer-subtotal-val { font-family: var(--ff-display); font-size: 1.15rem; }
body.rst-drawer-lock { overflow: hidden; }

#rst-toast-container { position: fixed; bottom: 2rem; left: 2rem; z-index: 300; display: flex; flex-direction: column; gap: 0.5rem; pointer-events: none; }
.rst-toast { background: var(--navy); color: var(--cream); padding: 0.75rem 1.25rem; border-radius: var(--rad-md); font-size: 0.85rem; box-shadow: 0 16px 34px -18px rgba(0,0,0,0.5); opacity: 0; transform: translateY(8px); transition: opacity 0.22s ease, transform 0.22s ease; pointer-events: none; max-width: 280px; }
.rst-toast.is-visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════
   SEARCH MODAL
   ═══════════════════════════════════════ */
.gf-search-overlay { position: fixed; inset: 0; background: rgba(22,36,58,0.62); z-index: 180; display: none; align-items: flex-start; justify-content: center; padding-top: 80px; }
.gf-search-overlay.is-open { display: flex; }
.gf-search-box { background: var(--white); border-radius: var(--rad-lg); padding: 1.5rem; width: min(560px, 90vw); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.5); }
.gf-search-input { width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--line); border-radius: var(--rad-md); font-size: 1rem; color: var(--navy); }
.gf-search-input:focus { outline: none; border-color: var(--green); }
.gf-search-results { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; max-height: 320px; overflow-y: auto; }
.gf-search-result { padding: 0.6rem 0.8rem; border-radius: var(--rad); display: flex; gap: 0.75rem; align-items: center; transition: background var(--anim); }
.gf-search-result:hover { background: var(--cream); }
.gf-search-result img { width: 44px; height: 44px; border-radius: var(--rad); object-fit: cover; background: var(--cream-deep); }
.gf-search-result-name { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.gf-search-result-meta { font-size: 0.66rem; color: var(--ink-mute); }

/* ═══════════════════════════════════════
   PAGE HERO BAND (secondary pages)
   ═══════════════════════════════════════ */
.gf-page-hero { background: var(--green-deep); color: var(--cream); padding: clamp(2.5rem, 5vw, 4rem) 0; }
.gf-page-hero-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.gf-page-title { font-family: var(--ff-display); font-size: clamp(2rem, 5vw, 3.4rem); color: var(--cream); line-height: 1.08; }
.gf-page-sub { font-size: 0.92rem; color: rgba(244,241,230,0.7); margin-top: 0.5rem; max-width: 60ch; }

/* ── BREADCRUMB ───────────────────────────────────── */
.gf-breadcrumb { padding: 0.85rem var(--gutter); font-size: 0.78rem; color: var(--ink-mute); max-width: var(--maxw); margin: 0 auto; display: flex; gap: 0.5rem; align-items: center; }
.gf-breadcrumb a { color: var(--ink-mute); transition: color var(--anim); }
.gf-breadcrumb a:hover { color: var(--green); }
.gf-breadcrumb-sep { opacity: 0.4; }

/* ═══════════════════════════════════════
   SHOP PAGE
   ═══════════════════════════════════════ */
.gf-shop-header { padding: clamp(2rem, 4vw, 3rem) 0 0; border-bottom: 1px solid var(--line); background: var(--cream); }
.gf-shop-title { font-family: var(--ff-display); font-size: clamp(2rem, 4vw, 3rem); color: var(--navy); margin-bottom: 1.2rem; }
.gf-shop-toolbar { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; flex-wrap: wrap; gap: 1rem; }
.gf-filter-chips { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.gf-filter-chip { font-size: 0.78rem; font-weight: 600; padding: 0.4rem 0.9rem; border-radius: 999px; border: 1.5px solid var(--line); color: var(--ink-mute); background: transparent; transition: all var(--anim); }
.gf-filter-chip:hover { border-color: var(--green); color: var(--green); }
.gf-filter-chip.is-active { background: var(--green); border-color: var(--green); color: var(--cream); }
.gf-sort-select { padding: 0.45rem 0.8rem; border: 1.5px solid var(--line); border-radius: var(--rad); background: var(--white); font-size: 0.8rem; color: var(--navy); }
.gf-sort-select:focus { outline: none; border-color: var(--green); }
.gf-shop-grid { padding: clamp(2rem, 4vw, 3rem) var(--gutter); max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }

/* ═══════════════════════════════════════
   PRODUCT PAGE (PDP)
   ═══════════════════════════════════════ */
.gf-pdp { padding: clamp(2rem, 4vw, 3.5rem) var(--gutter); max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.gf-pdp-gallery { position: sticky; top: 90px; }
.gf-pdp-main-img { border-radius: var(--rad-lg); overflow: hidden; aspect-ratio: 4/5; background: var(--cream-deep); border: 1px solid var(--line); }
.gf-pdp-main-img img { width: 100%; height: 100%; object-fit: cover; }
.gf-pdp-thumbs { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
.gf-pdp-thumb { width: 64px; height: 64px; border-radius: var(--rad); overflow: hidden; border: 2px solid transparent; transition: border-color var(--anim), transform var(--anim); background: var(--cream-deep); }
.gf-pdp-thumb:hover { transform: translateY(-2px); }
.gf-pdp-thumb.is-active { border-color: var(--green); }
.gf-pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gf-pdp-cat { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.5rem; }
.gf-pdp-name { font-family: var(--ff-display); font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--navy); line-height: 1.1; margin-bottom: 1rem; }
.gf-pdp-short { font-size: 1rem; color: var(--ink-soft); line-height: 1.7; margin-bottom: 1.25rem; }
.gf-pdp-specs { background: var(--cream); border: 1px solid var(--line); border-radius: var(--rad-md); padding: 1rem 1.25rem; margin-bottom: 1.25rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem 1.5rem; }
.gf-pdp-spec-key { font-size: 0.66rem; color: var(--ink-mute); letter-spacing: 0.05em; text-transform: uppercase; display: block; margin-bottom: 0.15rem; }
.gf-pdp-spec-val { color: var(--navy); font-size: 0.86rem; font-weight: 500; }
.gf-pdp-notes-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 0.5rem; }
.gf-pdp-notes-chips { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.gf-selector-label { font-size: 0.78rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.gf-selector-options { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 1rem; }
.gf-selector-opt { padding: 0.42rem 0.9rem; border: 1.5px solid var(--line); border-radius: var(--rad); font-size: 0.8rem; color: var(--navy); transition: all var(--anim); }
.gf-selector-opt:hover { border-color: var(--green); }
.gf-selector-opt.is-active { background: var(--green); border-color: var(--green); color: var(--cream); }
.gf-pdp-price-row { display: flex; align-items: baseline; gap: 0.5rem; margin: 1.2rem 0; }
.gf-pdp-price { font-family: var(--ff-display); font-size: 1.8rem; color: var(--navy); }
.gf-pdp-price-unit { font-size: 0.8rem; color: var(--ink-mute); }
.gf-pdp-qty-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.gf-pdp-qty-ctrl { display: flex; align-items: center; border: 1.5px solid var(--line); border-radius: var(--rad-md); overflow: hidden; }
.gf-pdp-qty-btn { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--navy); transition: background var(--anim); }
.gf-pdp-qty-btn:hover { background: var(--cream); }
.gf-pdp-qty-val { min-width: 38px; text-align: center; font-family: var(--ff-body); font-weight: 600; font-size: 0.9rem; border-left: 1px solid var(--line); border-right: 1px solid var(--line); height: 38px; line-height: 38px; }
.gf-pdp-atc { width: 100%; justify-content: center; padding: 0.9rem; font-size: 0.95rem; }
.gf-pdp-long { max-width: 65ch; margin-top: 2.2rem; }
.gf-pdp-long p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.8; }
.gf-pdp-tip { background: var(--cream); border-left: 3px solid var(--gold); border-radius: var(--rad); padding: 1rem 1.25rem; margin-top: 1.5rem; }
.gf-pdp-tip-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.3rem; }
.gf-pdp-tip p { font-size: 0.86rem; color: var(--navy); line-height: 1.65; }
.gf-related { padding: clamp(2.5rem, 5vw, 4rem) 0; background: var(--cream); border-top: 1px solid var(--line); }
.gf-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; margin-top: 1.5rem; }

/* ═══════════════════════════════════════
   CART PAGE
   ═══════════════════════════════════════ */
.gf-cart-page { padding: clamp(2rem, 4vw, 3.5rem) var(--gutter); max-width: 900px; margin: 0 auto; }
.gf-cart-page-title { font-family: var(--ff-display); font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--navy); margin-bottom: 2rem; }
.gf-cart-table { width: 100%; border-collapse: collapse; }
.gf-cart-table th { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); padding: 0 0 0.75rem; border-bottom: 1px solid var(--line); text-align: left; }
.gf-cart-table td { padding: 1rem 0; border-bottom: 1px solid var(--line-soft); vertical-align: middle; }
.gf-cart-table td:last-child { text-align: right; }
.gf-cart-item-img { width: 56px; height: 56px; border-radius: var(--rad); object-fit: cover; background: var(--cream-deep); }
.gf-cart-item-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.gf-cart-item-meta { font-size: 0.66rem; color: var(--ink-mute); margin-top: 0.15rem; }
.gf-cart-totals { margin-top: 2rem; display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; }
.gf-cart-total-row { display: flex; gap: 3rem; font-size: 0.9rem; color: var(--navy); }
.gf-cart-total-row strong { font-family: var(--ff-display); font-size: 1.15rem; }
.gf-cart-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 2rem; flex-wrap: wrap; gap: 1rem; }

/* ═══════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════ */
.gf-about-hero { padding: clamp(2.5rem, 5vw, 4rem) var(--gutter); max-width: var(--maxw); margin: 0 auto; }
.gf-about-lead { font-family: var(--ff-display); font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1.45; color: var(--navy); max-width: 52ch; }
.gf-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); padding: clamp(2rem, 4vw, 3.5rem) var(--gutter); max-width: var(--maxw); margin: 0 auto; }
.gf-about-text h2 { font-family: var(--ff-display); font-size: 1.5rem; color: var(--navy); margin-bottom: 1rem; }
.gf-about-text p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.8; margin-bottom: 1rem; }
.gf-about-img { border-radius: var(--rad-lg); overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--line); }
.gf-about-img img { width: 100%; height: 100%; object-fit: cover; }
.gf-about-values { background: var(--cream); border-top: 1px solid var(--line); padding: clamp(2.5rem, 5vw, 4rem) 0; }
.gf-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1.75rem; }
.gf-value-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--rad-md); padding: 1.5rem; }
.gf-value-num { font-family: var(--ff-display); font-size: 1.5rem; color: var(--gold); margin-bottom: 0.5rem; }
.gf-value-title { font-family: var(--ff-display); font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; }
.gf-value-body { font-size: 0.85rem; color: var(--ink-mute); line-height: 1.65; }
.gf-about-process { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.gf-process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 1.75rem; counter-reset: step; }
.gf-process-step { counter-increment: step; }
.gf-process-step::before { content: counter(step, decimal-leading-zero); font-family: var(--ff-display); font-size: 1.5rem; color: var(--gold); display: block; margin-bottom: 0.6rem; }
.gf-process-step h3 { font-family: var(--ff-display); font-size: 1.05rem; color: var(--navy); margin-bottom: 0.35rem; }
.gf-process-step p { font-size: 0.84rem; color: var(--ink-mute); line-height: 1.65; }
.gf-team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.gf-team-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--rad-md); padding: 1.5rem; }
.gf-team-role { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.4rem; }
.gf-team-name { font-family: var(--ff-display); font-size: 1.1rem; color: var(--navy); }
.gf-team-bio { font-size: 0.84rem; color: var(--ink-mute); margin-top: 0.4rem; line-height: 1.65; }

/* ═══════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════ */
.gf-contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); padding: clamp(2.5rem, 5vw, 4rem) var(--gutter); max-width: var(--maxw); margin: 0 auto; align-items: start; }
.gf-contact-title { font-family: var(--ff-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--navy); margin-bottom: 1rem; }
.gf-contact-intro { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.7; margin-bottom: 2rem; }
.gf-contact-meta h3 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 0.5rem; margin-top: 1.5rem; }
.gf-contact-meta p { font-size: 0.88rem; color: var(--navy); line-height: 1.8; }
.gf-contact-meta a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.gf-form { display: flex; flex-direction: column; gap: 1.1rem; }
.gf-form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.gf-form-label { font-size: 0.8rem; font-weight: 600; color: var(--navy); }
.gf-form-input, .gf-form-textarea, .gf-form-select { padding: 0.7rem 1rem; border: 1.5px solid var(--line); border-radius: var(--rad-md); background: var(--white); color: var(--navy); font-size: 0.9rem; transition: border-color var(--anim), box-shadow var(--anim); }
.gf-form-input:focus, .gf-form-textarea:focus, .gf-form-select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(47,110,59,0.1); }
.gf-form-textarea { min-height: 140px; resize: vertical; }
.gf-form-success { background: rgba(47,110,59,0.1); border: 1px solid var(--green); color: var(--navy); padding: 1rem 1.25rem; border-radius: var(--rad-md); font-size: 0.9rem; display: none; }
.gf-form-success.is-visible { display: block; }

/* ═══════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════ */
.gf-legal-wrap { max-width: 780px; margin: 0 auto; padding: clamp(2.5rem, 5vw, 4rem) var(--gutter); }
.gf-legal-meta { font-size: 0.7rem; color: var(--ink-mute); margin-bottom: 2.5rem; }
.gf-legal-section { margin-bottom: 2.5rem; }
.gf-legal-section h2 { font-family: var(--ff-display); font-size: 1.2rem; color: var(--navy); margin-bottom: 0.75rem; padding-bottom: 0.4rem; border-bottom: 1px solid var(--line); }
.gf-legal-section p, .gf-legal-section ul, .gf-legal-section ol { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.8; }
.gf-legal-section ul { list-style: disc; padding-left: 1.5rem; }
.gf-legal-section ol { list-style: decimal; padding-left: 1.5rem; }
.gf-legal-section li { margin-bottom: 0.3rem; }
.gf-legal-section p + p { margin-top: 0.75rem; }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 980px) {
  /* Rail collapses to a horizontal top bar */
  :root { --rail-w: 0px; }
  .gf-head {
    position: sticky; top: 0; left: auto; bottom: auto; width: auto; height: auto;
    border-right: none; border-bottom: 1px solid rgba(244,241,230,0.12);
  }
  .gf-head-inner {
    flex-direction: row; align-items: center; height: 60px;
    padding: 0 var(--gutter); gap: 1rem; max-width: var(--maxw); margin: 0 auto;
  }
  .gf-brand { order: 0; }
  .gf-rail-tag { display: none; }
  .gf-nav { display: none; }
  .gf-head-actions { order: 1; margin: 0 0 0 auto; }
  .gf-hamburger { display: flex; margin-left: 0; }
  .gf-strip, body > main, .gf-foot, .gf-pageframe { margin-left: 0; }

  .gf-cat-row { grid-template-columns: repeat(3, 1fr); }
  .gf-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gf-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .gf-trait-grid { grid-template-columns: repeat(2, 1fr); }
  .gf-feature { grid-template-columns: 1fr; }
  .gf-notes-grid { grid-template-columns: repeat(2, 1fr); }
  .gf-shop-grid { grid-template-columns: repeat(2, 1fr); }
  .gf-pdp { grid-template-columns: 1fr; }
  .gf-pdp-gallery { position: static; }
  .gf-related-grid { grid-template-columns: repeat(2, 1fr); }
  .gf-foot-grid { grid-template-columns: repeat(2, 1fr); }
  .gf-about-grid { grid-template-columns: 1fr; }
  .gf-contact-wrap { grid-template-columns: 1fr; }
  .gf-values-grid { grid-template-columns: 1fr; }
  .gf-process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .gf-hero { min-height: clamp(480px, 86vh, 620px); }
  .gf-hero-ctas { gap: 1rem; }
  .gf-hero-band-inner { gap: 0.9rem 1.4rem; }
  .gf-hero-cred-sep { display: none; }
  .gf-hero-cred { flex: 1 1 42%; }
  .gf-cat-row { grid-template-columns: repeat(2, 1fr); }
  .gf-grid-4, .gf-grid-3 { grid-template-columns: 1fr; }
  .gf-trait-grid { grid-template-columns: 1fr; }
  .gf-notes-grid { grid-template-columns: 1fr; }
  .gf-shop-grid { grid-template-columns: 1fr; }
  .gf-related-grid { grid-template-columns: 1fr; }
  .gf-foot-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .gf-process-steps { grid-template-columns: 1fr; }
  .gf-pdp-specs { grid-template-columns: 1fr; }
  .gf-cart-table th:nth-child(3), .gf-cart-table td:nth-child(3) { display: none; }
}

@media (max-width: 980px) {
  .gf-mobile-nav.is-open { display: flex; }
}
