/* ============================================================
   LAMONTE UK — Design System
   British Contemporary × Indonesian Craftsmanship
   Mobile-first · Custom vectors only · No emoji
   ============================================================ */

:root {
  --navy: #0C1B2A;
  --navy-2: #10243A;
  --navy-3: #173350;
  --ivory: #F5F1E8;
  --ivory-2: #EDE6D8;
  --ivory-3: #FBF8F1;
  --burgundy: #6E2233;
  --burgundy-2: #8A2E42;
  --forest: #23483E;
  --forest-2: #2E5B4E;
  --gold: #B89452;
  --gold-2: #D3B87E;
  --slate: #59636D;
  --ink: #1C2634;
  --line: rgba(12, 27, 42, .13);
  --line-light: rgba(245, 241, 232, .16);
  --shadow-sm: 0 1px 2px rgba(12, 27, 42, .06), 0 2px 8px rgba(12, 27, 42, .05);
  --shadow-md: 0 6px 24px rgba(12, 27, 42, .10), 0 2px 6px rgba(12, 27, 42, .06);
  --shadow-lg: 0 18px 50px rgba(12, 27, 42, .16);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
  --header-h: 72px;
  --ease: cubic-bezier(.22, .61, .21, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory-3);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.has-mobile-dock { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--gold); color: var(--navy); }

/* ---------- Accessibility ---------- */
.skip-link {
  position: fixed; top: .75rem; left: .75rem; z-index: 200;
  padding: .75rem 1rem; border-radius: var(--r-sm);
  background: var(--gold); color: var(--navy); font-weight: 650;
  box-shadow: var(--shadow-md); transform: translateY(-160%);
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }
:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--gold-2); outline-offset: 3px;
}

/* ---------- Typography ---------- */
h1, h2, h3, .serif { font-family: var(--serif); font-weight: 560; line-height: 1.14; letter-spacing: -.01em; color: var(--navy); }
h1 { font-size: clamp(2.1rem, 6.4vw, 3.9rem); font-variation-settings: "opsz" 100; }
h2 { font-size: clamp(1.7rem, 4.6vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 2.6vw, 1.45rem); }
h4 { font-family: var(--sans); font-size: 1rem; font-weight: 650; color: var(--navy); }
h1 em, h2 em, h3 em { font-style: italic; font-weight: 480; color: var(--burgundy); }
.dark h1, .dark h2, .dark h3, .dark h4 { color: var(--ivory); }
.dark h1 em, .dark h2 em, .dark h3 em { color: var(--gold-2); }
p { color: var(--slate); }
.dark p { color: rgba(245, 241, 232, .78); }
strong { color: var(--navy); font-weight: 620; }
.dark strong { color: var(--ivory); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .74rem; font-weight: 650; letter-spacing: .22em; text-transform: uppercase;
  color: var(--burgundy); margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--gold); }
.dark .eyebrow { color: var(--gold-2); }
.lead { font-size: clamp(1.02rem, 2vw, 1.2rem); line-height: 1.7; color: var(--slate); }
.dark .lead { color: rgba(245, 241, 232, .8); }

/* ---------- Layout ---------- */
.container { width: min(100% - 2.5rem, 1180px); margin-inline: auto; }
.container-wide { width: min(100% - 2.5rem, 1340px); margin-inline: auto; }
.section { padding-block: clamp(3.4rem, 8vw, 6.2rem); }
.section-sm { padding-block: clamp(2.4rem, 6vw, 4rem); }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head p { margin-top: .9rem; }
.split { display: grid; gap: 2.2rem; align-items: center; }
.bg-ivory { background: var(--ivory); }
.bg-white { background: #fff; }
.bg-navy { background: var(--navy); }
.bg-navy-grad { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 55%, #0E2036 100%); }
.bg-forest { background: var(--forest); }
.grid { display: grid; gap: 1.1rem; }
.g-2, .g-3, .g-4 { grid-template-columns: 1fr; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.7rem; border-radius: 999px;
  font-weight: 620; font-size: .95rem; letter-spacing: .01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  border: 1.5px solid transparent;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn-burgundy { background: var(--burgundy); color: #fff; box-shadow: 0 8px 20px rgba(110, 34, 51, .28); }
.btn-burgundy:hover { background: var(--burgundy-2); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(110, 34, 51, .34); }
.btn-navy { background: var(--navy); color: var(--ivory); }
.btn-navy:hover { background: var(--navy-3); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold); color: var(--navy); box-shadow: 0 8px 20px rgba(184, 148, 82, .3); }
.btn-gold:hover { background: var(--gold-2); transform: translateY(-2px); }
.btn-outline { border-color: rgba(12, 27, 42, .28); color: var(--navy); background: transparent; }
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: var(--ivory); transform: translateY(-2px); }
.btn-outline-light { border-color: rgba(245, 241, 232, .4); color: var(--ivory); background: transparent; }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-2px); }
.btn-ghost { color: var(--burgundy); padding-inline: .4rem; font-weight: 650; }
.btn-ghost:hover { color: var(--navy); }
.btn-ghost svg { transition: transform .25s var(--ease); }
.btn-ghost:hover svg { transform: translateX(4px); }
.btn-sm { padding: .65rem 1.25rem; font-size: .88rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.btn-block { width: 100%; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--navy); color: rgba(245, 241, 232, .86);
  font-size: .8rem; letter-spacing: .04em; text-align: center;
  padding: .55rem 1rem; position: relative; z-index: 60;
}
.announce strong { color: var(--gold-2); font-weight: 620; }
.announce a { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(211, 184, 126, .5); }
.announce a:hover { color: var(--gold-2); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 241, .92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: .7rem; flex: none; min-width: 0; }
.brand-logo { width: clamp(108px, 30vw, 132px); height: auto; display: block; flex: none; }
.brand-tag {
  font-size: .57rem; font-weight: 650; letter-spacing: .24em; text-transform: uppercase; color: var(--gold);
  border-left: 1px solid rgba(184, 148, 82, .45); padding-left: .7rem; line-height: 1.55; white-space: nowrap;
}
.site-footer .brand-tag, .drawer-head .brand-tag { border-left-color: rgba(211, 184, 126, .35); }
@media (max-width: 420px) {
  .brand-tag { display: none; }
  .site-footer .brand-tag { display: block; white-space: normal; }
}
.main-nav { display: none; }
.nav-list { display: flex; align-items: center; gap: 1.7rem; }
.nav-list > li > a, .nav-list > li > button {
  font-size: .92rem; font-weight: 560; color: var(--ink);
  padding: .4rem 0; position: relative; display: inline-flex; align-items: center; gap: .35rem;
  transition: color .2s;
}
.nav-list > li > a::after, .nav-list > li > button::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav-list > li > a:hover, .nav-list > li > button:hover { color: var(--burgundy); }
.nav-list > li > a:hover::after, .nav-list > li > button:hover::after { width: 100%; }
.nav-list a.active { color: var(--burgundy); font-weight: 650; }
.nav-list a.active::after { width: 100%; }
.nav-chev { width: 13px; height: 13px; transition: transform .25s; }
.has-drop { position: relative; }
.has-drop:hover .nav-chev, .has-drop:focus-within .nav-chev { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translate(-50%, 8px);
  min-width: 300px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); padding: .6rem; opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s, transform .25s, visibility .25s;
}
.has-drop:hover .dropdown, .has-drop:focus-within .dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.dropdown a {
  display: flex; align-items: center; gap: .8rem; padding: .68rem .85rem; border-radius: 10px;
  font-size: .9rem; font-weight: 540; color: var(--ink); transition: background .2s, color .2s;
}
.dropdown a svg { width: 18px; height: 18px; color: var(--gold); flex: none; }
.dropdown a:hover { background: var(--ivory); color: var(--burgundy); }
.header-cta { display: none; }
.burger { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); background: #fff; }
.burger svg { width: 22px; height: 22px; color: var(--navy); }

/* ---------- Mobile drawer ---------- */
.drawer {
  position: fixed; inset: 0; z-index: 100; visibility: hidden; pointer-events: none;
}
.drawer.open { visibility: visible; pointer-events: auto; }
.drawer-scrim { position: absolute; inset: 0; background: rgba(12, 27, 42, .55); opacity: 0; transition: opacity .35s; }
.drawer.open .drawer-scrim { opacity: 1; }
.drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(88vw, 380px);
  background: var(--navy); color: var(--ivory);
  transform: translateX(102%); transition: transform .45s var(--ease);
  display: flex; flex-direction: column; overflow-y: auto;
}
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 1.3rem; border-bottom: 1px solid var(--line-light); }
.drawer-close { width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line-light); display: grid; place-items: center; }
.drawer-close svg { width: 20px; height: 20px; }
.drawer-nav { padding: 1rem 1.3rem; flex: 1; }
.drawer-nav a, .drawer-group-btn {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: .95rem .2rem; font-size: 1.05rem; font-weight: 540; color: var(--ivory);
  border-bottom: 1px solid var(--line-light);
}
.drawer-nav a svg { width: 17px; height: 17px; color: var(--gold); }
.drawer-group-btn svg { width: 16px; height: 16px; color: var(--gold); transition: transform .3s; }
.drawer-group.open .drawer-group-btn svg { transform: rotate(180deg); }
.drawer-sub { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.drawer-group.open .drawer-sub { max-height: 420px; }
.drawer-sub a { padding: .75rem .2rem .75rem 1.1rem; font-size: .95rem; color: rgba(245, 241, 232, .75); border-bottom: 1px solid rgba(245, 241, 232, .08); }
.drawer-foot { padding: 1.3rem; border-top: 1px solid var(--line-light); display: grid; gap: .7rem; }
.drawer-contact { display: flex; align-items: center; gap: .7rem; font-size: .92rem; color: rgba(245, 241, 232, .8); }
.drawer-contact svg { width: 17px; height: 17px; color: var(--gold); flex: none; }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative; color: var(--ivory); isolation: isolate;
  background: var(--navy);
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12, 27, 42, .88) 0%, rgba(12, 27, 42, .72) 45%, rgba(12, 27, 42, .9) 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(circle at 82% 18%, rgba(211, 184, 126, .14), transparent 32%),
    linear-gradient(90deg, rgba(12, 27, 42, .18), transparent 70%);
}
.hero-inner { padding-block: clamp(4.2rem, 11vw, 8rem) clamp(3rem, 8vw, 5.5rem); max-width: 800px; }
.hero h1 { color: var(--ivory); margin-bottom: 1.2rem; }
.hero h1 em { color: var(--gold-2); }
.hero .lead { max-width: 640px; margin-bottom: 1.9rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2.2rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: .6rem 1.6rem;
  padding-top: 1.5rem; border-top: 1px solid rgba(245, 241, 232, .18);
}
.hero-trust span { display: inline-flex; align-items: center; gap: .55rem; font-size: .85rem; color: rgba(245, 241, 232, .82); }
.hero-trust svg { width: 15px; height: 15px; color: var(--gold); flex: none; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; background: var(--navy); color: var(--ivory); isolation: isolate; overflow: hidden; }
.page-hero-inner { display: grid; gap: 2rem; padding-block: clamp(3rem, 8vw, 5rem); align-items: center; }
.page-hero h1 { color: var(--ivory); margin-bottom: 1rem; }
.page-hero .lead { max-width: 620px; margin-bottom: 1.7rem; }
.page-hero-media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.page-hero-media::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(245, 241, 232, .14); border-radius: inherit; }
.crumbs { display: flex; align-items: center; gap: .55rem; font-size: .8rem; letter-spacing: .04em; color: rgba(245, 241, 232, .6); margin-bottom: 1.2rem; }
.crumbs a:hover { color: var(--gold-2); }
.crumbs svg { width: 12px; height: 12px; opacity: .7; }

/* ---------- Trust bar ---------- */
.trust-strip { border-block: 1px solid var(--line); background: #fff; }
.trust-strip-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem 2.4rem; padding-block: 1.1rem; }
.trust-strip span { display: inline-flex; align-items: center; gap: .6rem; font-size: .86rem; font-weight: 580; color: var(--navy); letter-spacing: .02em; }
.trust-strip svg { width: 17px; height: 17px; color: var(--gold); flex: none; }

/* ---------- Buyer routes ---------- */
.buyer-routes { padding-block: 1.35rem; background: var(--ivory); border-bottom: 1px solid var(--line); }
.buyer-routes-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: .85rem; }
.buyer-routes-head h2 { font-family: var(--sans); font-size: .82rem; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; }
.buyer-routes-head span { color: var(--slate); font-size: .78rem; }
.buyer-route-list { display: grid; grid-template-columns: 1fr; gap: .65rem; }
.buyer-route {
  display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: .8rem;
  min-height: 68px; padding: .75rem .85rem; border-radius: 12px;
  background: rgba(255,255,255,.7); border: 1px solid var(--line);
  transition: transform .25s var(--ease), border-color .25s, background .25s;
}
.buyer-route:hover { transform: translateY(-2px); border-color: rgba(184, 148, 82, .55); background: #fff; }
.buyer-route-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: var(--navy); color: var(--gold-2); }
.buyer-route-icon svg, .buyer-route-arrow { width: 18px; height: 18px; }
.buyer-route strong { display: block; font-size: .88rem; line-height: 1.3; }
.buyer-route small { display: block; margin-top: .1rem; color: var(--slate); font-size: .74rem; line-height: 1.35; }
.buyer-route-arrow { color: var(--burgundy); transition: transform .25s var(--ease); }
.buyer-route:hover .buyer-route-arrow { transform: translateX(3px); }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.6rem 1.5rem; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  height: 100%;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(184, 148, 82, .5); }
.card-icon {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--ivory); border: 1px solid var(--line); margin-bottom: 1.1rem;
}
.card-icon svg { width: 22px; height: 22px; color: var(--burgundy); }
.card h3 { font-size: 1.18rem; margin-bottom: .55rem; }
.card p { font-size: .93rem; }
.card-link { display: inline-flex; align-items: center; gap: .45rem; margin-top: 1rem; font-size: .88rem; font-weight: 650; color: var(--burgundy); }
.card-link svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.card:hover .card-link svg { transform: translateX(4px); }

/* Image card (capabilities / segments) */
.img-card {
  position: relative; display: block; border-radius: var(--r-md); overflow: hidden;
  background: var(--navy); box-shadow: var(--shadow-sm); isolation: isolate;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.img-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.img-card img { width: 100%; aspect-ratio: 3/2.1; object-fit: cover; transition: transform .7s var(--ease); }
.img-card:hover img { transform: scale(1.05); }
.img-card-body {
  position: absolute; inset: auto 0 0 0; padding: 2.6rem 1.4rem 1.25rem;
  background: linear-gradient(180deg, transparent, rgba(12, 27, 42, .92) 55%);
  color: var(--ivory);
}
.img-card-body h3 { color: var(--ivory); font-size: 1.25rem; }
.img-card-body p { color: rgba(245, 241, 232, .78); font-size: .88rem; margin-top: .3rem; }
.img-card-tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: rgba(12, 27, 42, .72); backdrop-filter: blur(6px);
  color: var(--gold-2); font-size: .7rem; font-weight: 650; letter-spacing: .14em; text-transform: uppercase;
  padding: .4rem .8rem; border-radius: 999px; border: 1px solid rgba(211, 184, 126, .35);
}
.img-card-arrow {
  position: absolute; top: 1rem; right: 1rem; z-index: 2; width: 38px; height: 38px;
  border-radius: 50%; display: grid; place-items: center;
  background: rgba(245, 241, 232, .12); border: 1px solid rgba(245, 241, 232, .25);
  backdrop-filter: blur(6px); transition: background .3s, transform .3s var(--ease);
}
.img-card-arrow svg { width: 16px; height: 16px; color: var(--ivory); }
.img-card:hover .img-card-arrow { background: var(--gold); transform: rotate(-45deg); }
.img-card:hover .img-card-arrow svg { color: var(--navy); }

/* ---------- Problem cards ---------- */
.problem-card { display: flex; gap: 1rem; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.25rem 1.3rem; box-shadow: var(--shadow-sm); }
.problem-card svg { width: 20px; height: 20px; color: var(--burgundy); flex: none; margin-top: .2rem; }
.problem-card h4 { font-size: .98rem; margin-bottom: .2rem; }
.problem-card p { font-size: .87rem; }
.solution-strip {
  margin-top: 2rem; background: var(--forest); color: var(--ivory); border-radius: var(--r-md);
  padding: 1.8rem 1.6rem; display: grid; gap: 1.2rem; align-items: center;
}
.solution-strip h3 { color: var(--ivory); font-size: 1.3rem; }
.solution-strip p { color: rgba(245, 241, 232, .82); font-size: .95rem; }

/* ---------- Checklist ---------- */
.check-list { display: grid; gap: .85rem; }
.check-list li { display: flex; gap: .8rem; align-items: flex-start; font-size: .97rem; color: var(--ink); }
.check-list svg { width: 19px; height: 19px; color: var(--forest); flex: none; margin-top: .15rem; }
.dark .check-list li { color: rgba(245, 241, 232, .85); }
.dark .check-list svg { color: var(--gold); }

/* ---------- Steps (process) ---------- */
.steps { display: grid; gap: 0; counter-reset: step; position: relative; }
.step { display: grid; grid-template-columns: 52px 1fr; gap: 1.1rem; padding-block: 1.4rem; border-bottom: 1px solid var(--line); counter-increment: step; }
.step:last-child { border-bottom: 0; }
.step-num {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: var(--burgundy);
  background: #fff; border: 1.5px solid rgba(110, 34, 51, .35); position: relative; z-index: 1;
}
.step h3 { font-size: 1.12rem; margin-bottom: .35rem; }
.step p { font-size: .92rem; }
.dark .step { border-color: var(--line-light); }
.dark .step-num { background: rgba(245, 241, 232, .06); border-color: rgba(211, 184, 126, .45); color: var(--gold-2); }

/* ---------- Chips / doc list ---------- */
.chip-grid { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: .55rem 1.05rem; font-size: .87rem; font-weight: 540; color: var(--ink);
  transition: border-color .25s, background .25s, transform .25s;
}
.chip svg { width: 15px; height: 15px; color: var(--gold); flex: none; }
.chip:hover { border-color: var(--gold); background: var(--ivory); transform: translateY(-2px); }
.dark .chip { background: rgba(245, 241, 232, .05); border-color: var(--line-light); color: rgba(245, 241, 232, .88); }
.dark .chip:hover { border-color: var(--gold); background: rgba(245, 241, 232, .1); }

/* ---------- Media feature block ---------- */
.feature { display: grid; gap: 2.2rem; align-items: center; }
.feature-media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.feature-media img { width: 100%; aspect-ratio: 4/3.1; object-fit: cover; }
.feature-media::after { content: ""; position: absolute; inset: 0; border: 1px solid var(--line); border-radius: inherit; pointer-events: none; }
.feature-badge {
  position: absolute; bottom: 1.1rem; left: 1.1rem; z-index: 2;
  background: rgba(251, 248, 241, .94); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: var(--r-sm); padding: .8rem 1.1rem;
  display: flex; align-items: center; gap: .8rem; box-shadow: var(--shadow-sm);
}
.feature-badge svg { width: 22px; height: 22px; color: var(--burgundy); flex: none; }
.feature-badge strong { display: block; font-size: .88rem; }
.feature-badge span { font-size: .76rem; color: var(--slate); }

/* ---------- Case cards ---------- */
.case-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.7rem 1.6rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 1rem; }
.case-card-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.case-tag { font-size: .7rem; font-weight: 650; letter-spacing: .16em; text-transform: uppercase; color: var(--forest); background: rgba(35, 72, 62, .08); border: 1px solid rgba(35, 72, 62, .2); padding: .35rem .75rem; border-radius: 999px; }
.case-card h3 { font-size: 1.22rem; }
.case-rows { display: grid; gap: .55rem; font-size: .88rem; }
.case-rows div { display: grid; grid-template-columns: 132px 1fr; gap: .8rem; padding-bottom: .55rem; border-bottom: 1px dashed var(--line); }
.case-rows div:last-child { border-bottom: 0; padding-bottom: 0; }
.case-rows dt { color: var(--slate); font-weight: 560; }
.case-rows dd { color: var(--ink); font-weight: 540; }
.case-note { font-size: .8rem; color: var(--slate); font-style: italic; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: var(--navy); color: var(--ivory); overflow: hidden; isolation: isolate; }
.cta-band-bg { position: absolute; inset: 0; z-index: -1; opacity: .14; }
.cta-band-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band-inner { text-align: center; max-width: 760px; margin-inline: auto; }
.cta-band h2 { color: var(--ivory); margin-bottom: 1rem; }
.cta-band p { color: rgba(245, 241, 232, .8); margin-bottom: 1.9rem; }
.cta-band .btn-row { justify-content: center; }
.cta-contact { margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid rgba(245, 241, 232, .15); display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem 2.2rem; }
.cta-contact a { display: inline-flex; align-items: center; gap: .6rem; font-size: .92rem; color: rgba(245, 241, 232, .85); transition: color .2s; }
.cta-contact a:hover { color: var(--gold-2); }
.cta-contact svg { width: 16px; height: 16px; color: var(--gold); }

/* ---------- Fact sheet ---------- */
.fact-sheet { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.fact-row { display: grid; grid-template-columns: 1fr; gap: .15rem; padding: .95rem 1.3rem; border-bottom: 1px solid var(--line); }
.fact-row:last-child { border-bottom: 0; }
.fact-row dt { font-size: .78rem; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; color: var(--slate); }
.fact-row dd { font-size: .95rem; color: var(--navy); font-weight: 560; }
.fact-row dd.placeholder { color: var(--burgundy); font-weight: 500; font-style: italic; }

/* ---------- FAQ accordion ---------- */
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); margin-bottom: .7rem; overflow: hidden; transition: border-color .25s, box-shadow .25s; }
.faq-item.open { border-color: rgba(184, 148, 82, .55); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.3rem; text-align: left; font-weight: 600; font-size: .97rem; color: var(--navy);
}
.faq-q svg { width: 17px; height: 17px; color: var(--burgundy); flex: none; transition: transform .3s var(--ease); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 1.3rem 1.2rem; font-size: .92rem; color: var(--slate); }

/* ---------- Resource cards ---------- */
.res-card { display: flex; gap: 1.1rem; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.4rem 1.5rem; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.res-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(184, 148, 82, .5); }
.res-card svg.res-icon { width: 24px; height: 24px; color: var(--burgundy); flex: none; margin-top: .15rem; }
.res-card h3 { font-size: 1.05rem; margin-bottom: .35rem; font-family: var(--sans); font-weight: 640; }
.res-card p { font-size: .87rem; }
.res-tag { display: inline-block; margin-top: .7rem; font-size: .72rem; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; color: var(--forest); }

/* ---------- Forms ---------- */
.form-shell { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.form-progress { display: flex; border-bottom: 1px solid var(--line); overflow-x: auto; }
.fp-step { flex: 1 0 auto; display: flex; align-items: center; justify-content: center; gap: .5rem; padding: 1rem .9rem; font-size: .8rem; font-weight: 600; color: var(--slate); border-bottom: 3px solid transparent; white-space: nowrap; }
.fp-step .fp-num { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; font-size: .72rem; background: var(--ivory-2); color: var(--slate); flex: none; }
.fp-step.active { color: var(--burgundy); border-bottom-color: var(--burgundy); }
.fp-step.active .fp-num { background: var(--burgundy); color: #fff; }
.fp-step.done { color: var(--forest); }
.fp-step.done .fp-num { background: var(--forest); color: #fff; }
.form-body { padding: clamp(1.4rem, 4vw, 2.4rem); }
.form-step { display: none; }
.form-step.active { display: block; animation: fadeUp .45s var(--ease); }
.form-step-title { font-size: 1.3rem; margin-bottom: .4rem; }
.form-step-sub { font-size: .9rem; margin-bottom: 1.6rem; }
.f-grid { display: grid; gap: 1.05rem; }
.f-field { display: grid; gap: .4rem; }
.f-field label { font-size: .84rem; font-weight: 620; color: var(--navy); }
.f-field label small { font-weight: 500; color: var(--slate); }
.f-field input, .f-field select, .f-field textarea {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: 10px;
  background: var(--ivory-3); transition: border-color .25s, box-shadow .25s, background .25s;
}
.f-field textarea { min-height: 110px; resize: vertical; }
.f-field input:focus, .f-field select:focus, .f-field textarea:focus {
  outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px rgba(184, 148, 82, .16);
}
.f-field input.invalid, .f-field select.invalid, .f-field textarea.invalid { border-color: var(--burgundy); box-shadow: 0 0 0 4px rgba(110, 34, 51, .12); }
.f-error { font-size: .78rem; color: var(--burgundy); display: none; }
.f-error.show { display: block; }
.f-check { display: flex; gap: .7rem; align-items: flex-start; font-size: .87rem; color: var(--slate); }
.f-check input { width: 18px; height: 18px; margin-top: .15rem; accent-color: var(--burgundy); flex: none; }
.f-upload {
  border: 2px dashed rgba(12, 27, 42, .22); border-radius: var(--r-md); padding: 1.8rem 1.4rem;
  text-align: center; background: var(--ivory-3); transition: border-color .3s, background .3s; cursor: pointer;
}
.f-upload:hover, .f-upload.drag { border-color: var(--gold); background: #fff; }
.f-upload svg { width: 34px; height: 34px; color: var(--gold); margin-inline: auto; margin-bottom: .7rem; }
.f-upload p { font-size: .9rem; }
.f-upload small { font-size: .78rem; color: var(--slate); }
.f-files { display: grid; gap: .5rem; margin-top: .9rem; }
.f-file { display: flex; align-items: center; gap: .7rem; background: var(--ivory); border: 1px solid var(--line); border-radius: 10px; padding: .6rem .9rem; font-size: .85rem; }
.f-file svg { width: 16px; height: 16px; color: var(--forest); flex: none; }
.f-file button { margin-left: auto; color: var(--burgundy); font-size: .78rem; font-weight: 650; }
.pill-group { display: flex; flex-wrap: wrap; gap: .55rem; }
.pill-radio input { position: absolute; opacity: 0; pointer-events: none; }
.pill-radio span {
  display: inline-flex; align-items: center; gap: .45rem; padding: .6rem 1.1rem; border-radius: 999px;
  border: 1.5px solid var(--line); background: var(--ivory-3); font-size: .87rem; font-weight: 560; cursor: pointer;
  transition: all .25s;
}
.pill-radio input:checked + span { background: var(--navy); color: var(--ivory); border-color: var(--navy); }
.pill-radio span:hover { border-color: var(--gold); }
.form-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.review-block { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.3rem 1.4rem; margin-bottom: 1rem; }
.review-block h4 { margin-bottom: .6rem; font-size: .9rem; letter-spacing: .06em; text-transform: uppercase; color: var(--burgundy); }
.review-block dl { display: grid; gap: .35rem; font-size: .89rem; }
.review-block div { display: grid; grid-template-columns: 150px 1fr; gap: .8rem; }
.review-block dt { color: var(--slate); }
.review-block dd { color: var(--navy); font-weight: 540; overflow-wrap: anywhere; }
.priority-banner { border-radius: var(--r-md); padding: 1.3rem 1.4rem; margin-bottom: 1.2rem; border: 1px solid; display: flex; gap: 1rem; align-items: flex-start; }
.priority-banner svg { width: 24px; height: 24px; flex: none; margin-top: .1rem; }
.priority-a { background: rgba(35, 72, 62, .07); border-color: rgba(35, 72, 62, .3); color: var(--forest); }
.priority-b { background: rgba(184, 148, 82, .1); border-color: rgba(184, 148, 82, .45); color: #7a5c22; }
.priority-c { background: rgba(89, 99, 109, .07); border-color: rgba(89, 99, 109, .3); color: var(--slate); }
.priority-banner h4 { color: inherit; margin-bottom: .25rem; }
.priority-banner p { color: inherit; font-size: .88rem; opacity: .9; }
.form-success { text-align: center; padding: clamp(1.5rem, 5vw, 3rem) 1rem; }
.form-success-icon { width: 76px; height: 76px; border-radius: 50%; background: rgba(35, 72, 62, .1); border: 1.5px solid rgba(35, 72, 62, .35); display: grid; place-items: center; margin: 0 auto 1.4rem; }
.form-success-icon svg { width: 34px; height: 34px; color: var(--forest); }
.microcopy { font-size: .82rem; color: var(--slate); margin-top: 1.1rem; }

/* ---------- Simple RFQ ---------- */
.simple-form-head { max-width: 620px; margin-bottom: 1.8rem; }
.simple-form-kicker {
  display: inline-block; margin-bottom: .55rem; color: var(--burgundy);
  font-size: .72rem; font-weight: 650; letter-spacing: .14em; text-transform: uppercase;
}
.simple-form-head h2 { margin-bottom: .45rem; }
.simple-form-head p { font-size: .94rem; }
.f-grid-2 { grid-template-columns: 1fr; }
.simple-rfq .f-field textarea { min-height: 145px; }
.simple-upload { padding: 1.25rem; text-align: left; }
.simple-upload svg { margin: 0 0 .55rem; }
.simple-file-details { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.simple-file-details summary {
  padding: .9rem .1rem; cursor: pointer; color: var(--navy);
  font-size: .86rem; font-weight: 620;
}
.simple-file-details summary small { color: var(--slate); font-weight: 500; }
.simple-file-details[open] { padding-bottom: .9rem; }
.simple-file-details[open] summary { margin-bottom: .25rem; }
.simple-consent-field { padding-top: .35rem; }
.simple-submit {
  display: flex; flex-direction: column; align-items: stretch; gap: 1rem;
  margin-top: 1.7rem; padding-top: 1.4rem; border-top: 1px solid var(--line);
}
.simple-submit strong { display: block; font-size: .86rem; }
.simple-submit p { font-size: .78rem; }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 1.2rem; visibility: hidden; pointer-events: none; }
.modal.open { visibility: visible; pointer-events: auto; }
.modal-scrim { position: absolute; inset: 0; background: rgba(12, 27, 42, .6); opacity: 0; transition: opacity .3s; backdrop-filter: blur(4px); }
.modal.open .modal-scrim { opacity: 1; }
.modal-card {
  position: relative; background: #fff; border-radius: var(--r-lg); max-width: 520px; width: 100%;
  padding: 2rem 1.8rem; box-shadow: var(--shadow-lg);
  transform: translateY(18px) scale(.98); opacity: 0; transition: transform .35s var(--ease), opacity .35s;
  max-height: 86vh; overflow-y: auto;
}
.modal.open .modal-card { transform: none; opacity: 1; }
.modal-close { position: absolute; top: .9rem; right: .9rem; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--ivory); }
.modal-close svg { width: 17px; height: 17px; }
.modal-icon { width: 54px; height: 54px; border-radius: 14px; background: var(--ivory); border: 1px solid var(--line); display: grid; place-items: center; margin-bottom: 1.1rem; }
.modal-icon svg { width: 25px; height: 25px; color: var(--burgundy); }
.modal-card h3 { font-size: 1.4rem; margin-bottom: .6rem; }
.modal-card p { font-size: .93rem; margin-bottom: 1.3rem; }

/* ---------- Mobile conversion dock ---------- */
.mobile-dock {
  position: fixed; left: .7rem; right: .7rem; bottom: calc(.7rem + env(safe-area-inset-bottom)); z-index: 80;
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: .55rem;
  padding: .5rem; border: 1px solid rgba(245, 241, 232, .18); border-radius: 18px;
  background: rgba(12, 27, 42, .94); box-shadow: 0 14px 38px rgba(12, 27, 42, .3);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transform: translateY(calc(100% + 2rem)); opacity: 0;
  transition: transform .35s var(--ease), opacity .25s;
}
.mobile-dock.visible { transform: translateY(0); opacity: 1; }
.mobile-dock-primary, .mobile-dock-whatsapp {
  min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  border-radius: 12px; font-size: .88rem; font-weight: 650;
}
.mobile-dock-primary { padding-inline: 1rem; background: var(--gold); color: var(--navy); }
.mobile-dock-whatsapp { width: 48px; color: var(--ivory); border: 1px solid var(--line-light); }
.mobile-dock svg { width: 18px; height: 18px; flex: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(245, 241, 232, .75); }
.footer-grid { display: grid; gap: 2.4rem; padding-block: clamp(3rem, 7vw, 4.5rem) 2.4rem; }
.footer-brand p { font-size: .92rem; color: rgba(245, 241, 232, .68); margin: 1.1rem 0 1.4rem; max-width: 320px; }
.socials { display: flex; gap: .6rem; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-light); display: grid; place-items: center; transition: background .25s, border-color .25s, transform .25s; }
.socials a:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.socials svg { width: 17px; height: 17px; color: var(--ivory); }
.footer-col h4 { color: var(--ivory); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: .6rem; }
.footer-col a { font-size: .92rem; color: rgba(245, 241, 232, .68); transition: color .2s, padding-left .25s; }
.footer-col a:hover { color: var(--gold-2); padding-left: 4px; }
.footer-contact li { display: flex; gap: .75rem; align-items: flex-start; font-size: .92rem; color: rgba(245, 241, 232, .72); margin-bottom: .8rem; }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold); flex: none; margin-top: .2rem; }
.footer-contact a { color: inherit; }
.footer-contact a:hover { color: var(--gold-2); }
.footer-bottom { border-top: 1px solid var(--line-light); padding-block: 1.4rem; display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; align-items: center; justify-content: space-between; font-size: .8rem; color: rgba(245, 241, 232, .5); }
.footer-bottom-links { display: flex; gap: 1.4rem; }
.footer-bottom a:hover { color: var(--gold-2); }
.footer-disclaimer { font-size: .76rem; line-height: 1.6; color: rgba(245, 241, 232, .45); border-top: 1px solid var(--line-light); padding-block: 1.3rem 0; margin-top: .5rem; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; } .reveal-d2 { transition-delay: .16s; } .reveal-d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---------- Misc ---------- */
.divider-gold { width: 64px; height: 3px; background: var(--gold); border-radius: 2px; margin-block: 1.2rem; }
.note-box { background: var(--ivory); border-left: 3px solid var(--gold); border-radius: 0 var(--r-sm) var(--r-sm) 0; padding: 1.1rem 1.3rem; font-size: .88rem; color: var(--slate); }
.note-box strong { color: var(--navy); }
.disclaimer-box { background: rgba(12, 27, 42, .03); border: 1px dashed rgba(12, 27, 42, .25); border-radius: var(--r-sm); padding: 1.1rem 1.3rem; font-size: .82rem; color: var(--slate); font-style: italic; }
.tag-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.mini-tag { font-size: .72rem; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; color: var(--burgundy); background: rgba(110, 34, 51, .07); border: 1px solid rgba(110, 34, 51, .18); padding: .35rem .75rem; border-radius: 999px; }

/* ---------- Breakpoints ---------- */
@media (max-width: 639px) {
  :root { --header-h: 64px; }
  .container, .container-wide { width: min(100% - 2rem, 1180px); }
  .header-inner .brand-tag { display: none; }
  .announce { padding-block: .45rem; font-size: .72rem; line-height: 1.4; }
  .hero-inner { padding-block: 3rem 2.6rem; }
  .hero h1 { font-size: clamp(2.25rem, 11vw, 3rem); line-height: 1.04; letter-spacing: -.025em; text-wrap: balance; }
  .hero .lead { font-size: .98rem; line-height: 1.6; margin-bottom: 1.5rem; }
  .hero-cta { display: grid; gap: .65rem; margin-bottom: 1.7rem; }
  .hero-cta .btn { width: 100%; min-height: 50px; padding-inline: 1rem; }
  .hero-trust { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem .85rem; padding-top: 1.15rem; }
  .hero-trust span { align-items: flex-start; font-size: .74rem; line-height: 1.35; }
  .hero-trust svg { margin-top: .05rem; }
  .page-hero-inner { padding-block: 2.5rem 2.8rem; }
  .page-hero h1 { font-size: clamp(2.1rem, 10vw, 2.8rem); line-height: 1.06; text-wrap: balance; }
  .page-hero .btn-row { display: grid; }
  .page-hero .btn { width: 100%; }
  .page-hero-media { border-radius: var(--r-md); }
  .page-hero-media img { aspect-ratio: 16/10; }
  .trust-strip-inner {
    width: 100%; overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; gap: .6rem;
    padding: .85rem 1rem; scroll-snap-type: x proximity; scrollbar-width: none;
  }
  .trust-strip-inner::-webkit-scrollbar { display: none; }
  .trust-strip span { flex: 0 0 auto; scroll-snap-align: start; padding: .65rem .8rem; border: 1px solid var(--line); border-radius: 10px; font-size: .76rem; background: var(--ivory-3); }
  .buyer-routes-head span { display: none; }
  .case-rows div, .review-block div { grid-template-columns: 1fr; gap: .1rem; }
  .fp-step { flex: 1 1 20%; gap: .25rem; padding: .8rem .25rem; font-size: .66rem; }
  .fp-step .fp-num { width: 22px; height: 22px; font-size: .66rem; }
  .form-nav { flex-direction: column-reverse; }
  .form-nav .btn { width: 100%; }
  .footer-grid { gap: 2rem; }
  .footer-bottom, .footer-bottom-links { align-items: flex-start; flex-direction: column; }
}

@media (min-width: 640px) {
  .g-2 { grid-template-columns: repeat(2, 1fr); }
  .fact-row { grid-template-columns: 220px 1fr; gap: 1rem; align-items: baseline; }
  .solution-strip { grid-template-columns: 1fr auto; }
  .buyer-route-list { grid-template-columns: repeat(3, 1fr); }
  .f-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .f-span-2 { grid-column: 1 / -1; }
  .simple-submit { flex-direction: row; align-items: center; justify-content: space-between; }
}
@media (min-width: 900px) {
  body.has-mobile-dock { padding-bottom: 0; }
  .mobile-dock { display: none; }
  .g-3 { grid-template-columns: repeat(3, 1fr); }
  .g-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .feature { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .feature.rev .feature-media { order: 2; }
  .page-hero-inner { grid-template-columns: 1.05fr .95fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
  .steps { grid-template-columns: 1fr 1fr; column-gap: 3rem; }
  .steps-1col { grid-template-columns: 1fr; }
}
@media (min-width: 1024px) {
  .main-nav { display: block; }
  .header-cta { display: inline-flex; }
  .burger { display: none; }
  .g-4 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1200px) {
  .g-3-wide { grid-template-columns: repeat(3, 1fr); }
}
