/* Family Of Wealth Logistics Inc — design system
   Ported from the claude.ai/design project "Family of Wealth website redesign". */

:root {
  --ink: #17140f;
  --ink-deep: #0c0a07;
  --ivory: #faf7f1;
  --paper: #ffffff;
  --sand: #f1eadc;
  --gold: #c6a14b;
  --gold-light: #d9be72;
  --gold-bright: #e3c979;
  --gold-deep: #9a7b2e;
  --cream: #f5efe2;
  --cream-soft: #cfc6b4;
  --muted: #4a4436;
  --muted-dark: #9c937f;
  --line: #e7dfd0;
  --line-gold: rgba(198, 161, 75, .4);
  --max: 1220px;
  --serif: "Cinzel", Georgia, serif;
  --sans: "Jost", Arial, sans-serif;
}

* { box-sizing: border-box; }
/* Class-based display rules (.btn, .cart-form) outrank the UA's [hidden] rule,
   so the attribute silently stops working. Restore it. */
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: var(--gold-deep); text-decoration: none; }
a:hover { color: var(--gold); }
p { margin: 0; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

h1, h2, h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.2;
}
h1 { font-size: clamp(2.1rem, 4.4vw, 3.25rem); line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 2.9vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 1.5vw, 1.31rem); }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--ink);
  padding: 10px 16px;
}
.skip-link:focus { transform: translateY(0); }

/* ---------- Layout helpers ---------- */
.wrap { width: min(var(--max), 100%); margin: 0 auto; }
.wrap-1100 { width: min(1100px, 100%); margin: 0 auto; }
.wrap-1000 { width: min(1000px, 100%); margin: 0 auto; }
.wrap-980 { width: min(980px, 100%); margin: 0 auto; }
.wrap-920 { width: min(920px, 100%); margin: 0 auto; }
.wrap-880 { width: min(880px, 100%); margin: 0 auto; }

.sec { padding: 88px 24px; }
.sec-80 { padding: 80px 24px; }
.sec-72 { padding: 72px 24px; }
.sec-tight { padding: 0 24px 88px; }
.band-dark {
  background: var(--ink-deep);
  color: var(--cream);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}
.band-sand { background: var(--sand); border-top: 1px solid var(--line); }
.band-sand + .band-sand, .band-sand.bordered { border-bottom: 1px solid var(--line); }
.band-gradient {
  background: linear-gradient(180deg, var(--ink-deep) 0%, #171307 100%);
  color: var(--cream);
}

.stack { display: flex; flex-direction: column; gap: 44px; }
.stack-sm { display: flex; flex-direction: column; gap: 28px; }
.center-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
/* Four pricing tiers across one row: tighter than grid-3 so the lists still breathe. */
.grid-tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.grid-tiers .card-dark { gap: 16px; padding: 34px 24px; }
.grid-tiers .price { font-size: 40px; }
.grid-tiers h3 { font-size: 18px; }
.grid-tiers .kicker { font-size: 11px; }
.grid-tiers .check-dark { font-size: 13px; gap: 9px; }

/* ---------- Type accents ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-deep);
  font-size: 13px;
  letter-spacing: .3em;
  text-transform: uppercase;
}
.eyebrow.flanked::before,
.eyebrow.flanked::after { content: ""; width: 48px; height: 1px; background: currentColor; }
.on-dark .eyebrow, .eyebrow.light { color: var(--gold); }
.rule { display: block; width: 72px; height: 2px; background: var(--gold); }
.rule-sm { width: 56px; }
.rule-hair { width: 48px; height: 1px; background: var(--gold); }
.gold { color: var(--gold-light); }
.lede { color: var(--muted); text-wrap: pretty; }
.lede-lg { font-size: 19px; font-weight: 300; }
.on-dark .lede, .lede-dark { color: var(--cream-soft); font-weight: 300; }
.note { text-align: center; font-size: 15px; color: var(--muted); }
.note-gold { text-align: center; font-size: 15px; color: var(--gold-deep); }

/* ---------- Header ---------- */
.announcement {
  background: var(--ink-deep);
  color: var(--gold-light);
  padding: 9px 16px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--gold);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 8px 30px rgba(21, 19, 15, .08); }
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 54px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .1em;
  white-space: nowrap;
  color: var(--ink);
}
.brand-sub {
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.site-nav a { color: var(--ink); padding-bottom: 2px; border-bottom: 2px solid transparent; white-space: nowrap; }
.site-nav a:hover { color: var(--gold-deep); border-bottom-color: var(--gold); }
.site-nav a[aria-current="page"] { color: var(--gold-deep); border-bottom-color: var(--gold); }
/* The cart button takes the header's action slot; the nav still carries Contact.
   Keeping both plus the nav overflows the design's 1220px header width.
   Scoped to .site-header so it outranks the later .btn display rule. */
.site-header .header-cta { display: none; }
.brand { flex-shrink: 0; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-toggle svg { width: 22px; height: 22px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  border: 1px solid var(--gold);
  background: var(--ink-deep);
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { background: var(--gold); border-color: var(--gold); color: var(--ink-deep); }
.btn-gold { background: var(--gold); border-color: var(--gold); color: var(--ink-deep); font-weight: 600; }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--ink-deep); }
.btn-outline { background: transparent; border-color: var(--gold); color: var(--gold-light); }
.btn-outline:hover { background: var(--gold); color: var(--ink-deep); }
.btn-sm { padding: 12px 20px; font-size: 12px; }
.btn-block { width: 100%; margin-top: auto; padding: 13px 10px; font-size: 12px; }
.text-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

/* ---------- Cards ---------- */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card p { color: var(--muted); font-size: 16px; text-wrap: pretty; }
.card-plain { border-top: 1px solid var(--line); }
.card-dark {
  position: relative;
  background: var(--ink-deep);
  color: var(--cream);
  border: 1px solid var(--gold);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card-dark.featured {
  border: 2px solid var(--gold-light);
  box-shadow: 0 16px 40px rgba(198, 161, 75, .25);
}
.card-dark h3 { color: var(--gold-light); }
.card-dark p { color: var(--cream-soft); font-weight: 300; text-wrap: pretty; }
.card-outline {
  border: 1px solid rgba(198, 161, 75, .45);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.centered { text-align: center; align-items: center; }
.card-num { font-family: var(--serif); font-size: 14px; letter-spacing: .2em; color: var(--gold-deep); }
.kicker { color: var(--muted-dark); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.price { font-family: var(--serif); font-size: 44px; font-weight: 600; color: var(--cream); line-height: 1.1; }
.price-per { font-family: var(--sans); font-size: 16px; font-weight: 400; color: var(--muted-dark); }
.price-note { color: var(--muted-dark); font-size: 13px; }
.flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 16px;
  background: var(--gold);
  color: var(--ink-deep);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hairline { display: block; height: 1px; background: rgba(198, 161, 75, .35); }

/* ---------- Check lists ---------- */
.check {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
  color: var(--muted);
}
.check li { display: flex; gap: 10px; }
.check li::before { content: "✓"; color: var(--gold); flex-shrink: 0; }
.check-dark { color: var(--cream-soft); font-size: 14px; }
.check-dark strong { color: var(--cream); font-weight: 500; }

.includes-bar {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 26px 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 40px;
  font-size: 14px;
  color: var(--muted);
}
.includes-bar strong {
  align-self: center;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  font-size: 13px;
  color: var(--muted-dark);
}

/* ---------- Hero (home) ---------- */
.hero { padding: 96px 24px 88px; }
.hero-inner { display: flex; flex-direction: column; align-items: center; gap: 26px; text-align: center; }
.hero-mark { height: 285px; width: auto; filter: drop-shadow(0 8px 30px rgba(198, 161, 75, .35)); }
.hero h1 { font-size: clamp(2.5rem, 5.4vw, 3.875rem); line-height: 1.12; }
.hero .lede { max-width: 640px; color: var(--cream-soft); font-size: 19px; font-weight: 300; }
.actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 8px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 80px 24px; border-bottom: 2px solid var(--gold); }
.page-hero .center-stack { gap: 18px; }
.page-hero .lede { max-width: 680px; color: var(--cream-soft); font-size: 18px; font-weight: 300; }

/* ---------- Home: trucking band ---------- */
.split-band { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.split-band .col { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.tile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tile { border: 1px solid var(--line-gold); padding: 22px 20px; }
.tile strong { display: block; font-family: var(--serif); font-size: 16px; font-weight: 600; color: var(--gold-light); }
.tile span { display: block; margin-top: 6px; font-size: 14px; color: var(--muted-dark); }

/* ---------- Services: LLC band ---------- */
.llc-band { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.llc-band .col { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.price-row { display: flex; align-items: baseline; flex-wrap: wrap; gap: 14px; }
.price-row .price { font-size: 48px; color: var(--gold-light); }
.price-row span { color: var(--muted-dark); font-size: 14px; letter-spacing: .12em; text-transform: uppercase; }
.included-box {
  border: 1px solid rgba(198, 161, 75, .45);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.included-box h3 { color: var(--gold-light); font-size: 18px; letter-spacing: .08em; }
.included-box .check { font-size: 15px; gap: 14px; }
.box-foot {
  border-top: 1px solid rgba(198, 161, 75, .35);
  padding-top: 14px;
  font-size: 13px;
  color: var(--muted-dark);
}

/* ---------- Services: Platinum flagship ---------- */
.platinum { padding: 48px 44px; gap: 0; }
.platinum-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.platinum-grid .col { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.platinum-title { font-size: clamp(1.6rem, 2.8vw, 2.1rem); line-height: 1.2; }
.platinum-entities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  width: 100%;
  font-size: 15px;
}
.platinum-entities strong { color: var(--cream); font-weight: 500; }
.platinum .price-row .price { font-size: 52px; }

/* ---------- Services: single services ---------- */
.single { background: var(--paper); border: 1px solid var(--line); padding: 20px 18px; }
.single-name { font-size: 15px; font-weight: 500; color: var(--ink); min-height: 44px; }
.single-price { margin-top: 8px; font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--gold-deep); }

/* Spotlight tile: dark against the white grid so the eye lands on it first. */
.single.spotlight {
  background: var(--ink-deep);
  border: 2px solid var(--gold-light);
  box-shadow: 0 16px 40px rgba(198, 161, 75, .28);
}
.single.spotlight .single-name { color: var(--cream); font-size: 16px; min-height: 0; margin-top: 10px; }
.single-sub { margin-top: 4px; color: var(--muted-dark); font-size: 13px; line-height: 1.4; text-wrap: pretty; }
.single.spotlight .single-price { color: var(--gold-light); font-size: 26px; }
.single.spotlight .add-btn { color: var(--ink-deep); background: var(--gold); border-color: var(--gold); }
.single.spotlight .add-btn:hover { background: var(--gold-light); border-color: var(--gold-light); }
/* Standalone spotlight card: centred on its own line above the grid. */
.single.solo {
  width: min(420px, 100%);
  margin: 0 auto 8px;
  padding: 26px 24px;
  text-align: center;
}
.single.solo .single-tag { align-self: center; }
.single.solo .single-price { font-size: 30px; }
.single-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold);
  color: var(--ink-deep);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* ---------- About: team ---------- */
.mono {
  width: 56px;
  height: 56px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--gold-light);
}
.person-name { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--cream); }
.role { color: var(--gold); font-size: 12px; letter-spacing: .24em; text-transform: uppercase; }
.quote { color: var(--cream-soft); font-size: 15px; font-weight: 300; font-style: italic; text-wrap: pretty; }
.policy { background: var(--paper); border: 1px solid var(--line); padding: 40px; display: flex; flex-direction: column; gap: 18px; font-size: 16px; color: var(--muted); }
.policy p { text-wrap: pretty; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact-panel {
  background: var(--ink-deep);
  border: 1px solid var(--gold);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--cream-soft);
}
.contact-panel h2 { font-size: 20px; color: var(--gold-light); }
.contact-item { display: flex; flex-direction: column; gap: 4px; }
.contact-item dt { color: var(--gold); font-size: 11px; letter-spacing: .24em; text-transform: uppercase; }
.contact-item dd { margin: 0; font-size: 15px; }
.contact-item a { color: var(--cream-soft); }
.contact-item a:hover { color: var(--gold-light); }
.contact-form { background: var(--paper); border: 1px solid var(--line); padding: 40px; display: flex; flex-direction: column; gap: 18px; }
.contact-form h2 { font-size: 22px; }
.field { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); }
.field input, .field textarea {
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--ivory);
  color: var(--ink);
  padding: 13px 14px;
  font-size: 16px;
  font-family: var(--sans);
  letter-spacing: normal;
  text-transform: none;
  outline: none;
}
.field input:focus, .field textarea:focus { border-color: var(--gold); }
.field textarea { min-height: 150px; resize: vertical; }
.form-note { text-align: center; font-size: 13px; color: var(--muted-dark); }

/* Honeypot: off-screen for bots, invisible and unfocusable for people. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status { font-size: 14px; line-height: 1.5; text-wrap: pretty; }
.form-status:empty { display: none; }
.form-status.is-ok { color: var(--gold-deep); font-weight: 500; }
.form-status.is-error { color: #a4442e; }
.cart-form { display: flex; flex-direction: column; gap: 12px; }
.cart-form .field { color: var(--gold-light); }
.cart-form .field input, .cart-form .field textarea {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(198, 161, 75, .45);
  color: var(--cream);
  font-size: 15px;
  padding: 10px 12px;
}
.cart-form .field input::placeholder, .cart-form .field textarea::placeholder { color: var(--muted-dark); }
.cart-form .form-status.is-ok { color: var(--gold-light); }
.cart-form .form-status.is-error { color: #f0a08c; }

/* ---------- Terms ---------- */
.terms-card { background: var(--paper); border: 1px solid var(--line); border-top: 3px solid var(--gold); padding: 36px 40px; display: flex; flex-direction: column; gap: 14px; }
.terms-card h2 { font-size: 22px; }
.terms-card p { color: var(--muted); text-wrap: pretty; }

/* ---------- Footers ---------- */
.site-footer { background: var(--ink-deep); color: var(--muted-dark); border-top: 2px solid var(--gold); padding: 64px 24px 32px; }
.footer-main { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
.footer-lockup { display: flex; align-items: center; gap: 12px; }
.footer-lockup img { height: 56px; width: auto; }
.footer-lockup .brand-name { color: var(--cream); }
.footer-tagline { margin-top: 16px; max-width: 380px; font-size: 15px; text-wrap: pretty; }
.footer-col { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-title { margin-bottom: 6px; color: var(--gold-light); font-size: 12px; letter-spacing: .24em; text-transform: uppercase; }
.footer-col a, .site-footer a { color: var(--muted-dark); }
.footer-col a:hover, .site-footer a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: var(--max);
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(198, 161, 75, .3);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}
.footer-motto { color: var(--gold); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }

.footer-compact { background: var(--ink-deep); color: var(--muted-dark); border-top: 2px solid var(--gold); padding: 48px 24px 32px; }
.footer-compact-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-compact nav { display: flex; flex-wrap: wrap; gap: 24px; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.footer-compact .brand img { height: 48px; }
.footer-compact .brand-name { color: var(--cream); font-size: 16px; }
.footer-copy { font-size: 13px; }

/* ---------- Reviews marquee ---------- */
.reviews { overflow: hidden; }
.reviews-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 4px 0;
  animation: review-scroll 60s linear infinite;
}
.reviews:hover .reviews-track,
.reviews:focus-within .reviews-track { animation-play-state: paused; }
@keyframes review-scroll {
  from { transform: translateX(0); }
  /* The track holds two identical halves, so -50% loops seamlessly. */
  to { transform: translateX(-50%); }
}
.review {
  width: 380px;
  flex-shrink: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review p { color: var(--muted); font-size: 15px; line-height: 1.65; text-wrap: pretty; }
.review footer { margin-top: auto; }
.review-name { font-family: var(--serif); font-size: 16px; font-weight: 600; color: var(--ink); }
.review-meta { font-size: 13px; color: var(--gold-deep); letter-spacing: .06em; }

/* Featured review: one card is lifted out of the pack onto the dark ink ground
   with gold trim and a badge, so it reads as a spotlight while still riding the
   marquee with the others. Add .review--featured to the <article> on BOTH
   halves of the track. */
.review--featured {
  width: 600px;
  position: relative;
  gap: 16px;
  background:
    radial-gradient(130% 110% at 0% 0%, rgba(198, 161, 75, .20), transparent 62%),
    var(--ink-deep);
  border: 1px solid var(--line-gold);
  border-top: 3px solid var(--gold-bright);
  box-shadow: 0 20px 46px -24px rgba(12, 10, 7, .6);
}
/* Oversized closing quote, purely decorative, sits behind the copy. */
.review--featured::before {
  content: "\201D";
  position: absolute;
  top: 4px;
  right: 24px;
  font-family: var(--serif);
  font-size: 96px;
  line-height: 1;
  color: rgba(227, 201, 121, .15);
  pointer-events: none;
}
.review--featured > * { position: relative; }
.review--featured p { color: var(--cream); font-size: 15.5px; line-height: 1.72; }
.review--featured .review-name { color: var(--gold-bright); font-size: 17px; }
.review--featured .review-meta { color: var(--cream-soft); }
.review-badge {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-deep);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  padding: 5px 13px;
  border-radius: 999px;
}
/* The marquee is decorative motion, so stop it outright when motion is reduced. */
@media (prefers-reduced-motion: reduce) {
  .reviews { overflow-x: auto; }
  .reviews-track { animation: none; }
}

/* ---------- Cart ---------- */
.cart-btn {
  position: relative;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.cart-btn:hover { background: var(--gold); color: var(--ink-deep); }
.cart-btn svg { width: 21px; height: 21px; }
.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 10px;
  background: var(--ink-deep);
  color: var(--gold-bright);
  border: 1px solid var(--gold);
  font-size: 11px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
}
.cart-count:not(.has-items) { display: none; }

.add-btn {
  margin-top: 12px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.add-btn:hover { background: var(--gold); color: var(--ink-deep); }
a.add-btn { display: block; text-align: center; text-decoration: none; }
.card-dark .add-btn { margin-top: 0; color: var(--gold-light); }

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(12, 10, 7, .55);
  opacity: 0;
  transition: opacity .25s ease;
}
.cart-backdrop.open { opacity: 1; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 201;
  width: min(430px, 100%);
  height: 100%;
  background: var(--ink-deep);
  color: var(--cream);
  border-left: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .25s ease;
}
.cart-drawer.open { transform: none; }
.cart-head {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(198, 161, 75, .35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cart-head h2 { font-size: 20px; color: var(--gold-light); }
.cart-close {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(198, 161, 75, .5);
  background: transparent;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.cart-close:hover { background: var(--gold); color: var(--ink-deep); }
.cart-close svg { width: 18px; height: 18px; }
.cart-body { flex: 1; overflow-y: auto; padding: 8px 24px; }
.cart-empty { padding: 32px 0; color: var(--muted-dark); font-size: 15px; text-wrap: pretty; }
.cart-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 14px;
  align-items: center;
}
.cart-item-main { grid-column: 1 / -1; }
.cart-item-name { font-size: 15px; color: var(--cream); }
.cart-item-price { margin-top: 3px; font-size: 13px; color: var(--muted-dark); }
.cart-qty { display: flex; align-items: center; gap: 4px; }
.cart-qty button {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(198, 161, 75, .5);
  background: transparent;
  color: var(--gold-light);
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
}
.cart-qty button:hover { background: var(--gold); color: var(--ink-deep); }
.cart-qty span { min-width: 30px; text-align: center; font-size: 15px; }
.cart-line { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--gold-light); text-align: right; }
.cart-remove {
  grid-column: 1 / -1;
  justify-self: start;
  padding: 0;
  border: 0;
  background: none;
  color: var(--muted-dark);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
}
.cart-remove:hover { color: var(--gold-light); }
.cart-foot {
  padding: 20px 24px 24px;
  border-top: 1px solid rgba(198, 161, 75, .35);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; font-size: 14px; color: var(--muted-dark); }
.cart-row strong { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--cream); }
.cart-action { width: 100%; }
.cart-clear {
  padding: 6px;
  border: 0;
  background: none;
  color: var(--muted-dark);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
}
.cart-clear:hover { color: var(--gold-light); }
.cart-note { font-size: 12px; color: var(--muted-dark); text-wrap: pretty; }

/* ---------- Motion ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { 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; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .site-nav { gap: 18px; font-size: 12px; letter-spacing: .08em; }
  .brand-text { display: none; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-3 > :last-child:nth-child(odd) { grid-column: 1 / -1; }
  .grid-4, .grid-tiers { grid-template-columns: repeat(2, 1fr); }
  .split-band, .llc-band, .platinum-grid { grid-template-columns: 1fr; gap: 44px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 820px) {
  .header-inner { padding: 12px 16px; gap: 12px; }
  .brand img { height: 46px; }
  .brand-text { display: flex; }
  .brand-name { font-size: 15px; }
  .brand-sub { font-size: 10px; letter-spacing: .2em; }
  .menu-toggle { display: flex; }
  .cart-btn { margin-left: auto; width: 42px; height: 42px; }
  .site-nav {
    position: fixed;
    inset: 109px 0 auto;
    min-height: calc(100vh - 109px);
    margin: 0;
    padding: 44px 24px;
    background: var(--ivory);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 22px;
    font-family: var(--serif);
    font-size: 22px;
    letter-spacing: .02em;
    clip-path: inset(0 0 0 100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: clip-path .25s ease, opacity .2s ease, visibility .25s;
  }
  .site-nav.open { clip-path: inset(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .sec, .sec-80 { padding: 64px 20px; }
  .sec-72 { padding: 56px 20px; }
  .sec-tight { padding: 0 20px 64px; }
  .page-hero { padding: 60px 20px; }
  .hero { padding: 56px 20px 64px; }
  .hero-mark { height: 200px; }
  .grid-2, .grid-3, .grid-4, .grid-tiers, .tile-grid { grid-template-columns: 1fr; }
  .grid-3 > :last-child:nth-child(odd) { grid-column: auto; }
  .stack { gap: 32px; }
  .policy, .contact-form, .terms-card { padding: 28px 24px; }
  .platinum { padding: 34px 24px; }
  .platinum-entities { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-main > :first-child { grid-column: 1 / -1; }
  .footer-compact-inner { justify-content: center; text-align: center; }
}

@media (max-width: 560px) {
  .announcement { font-size: 10px; letter-spacing: .12em; }
  .site-nav { inset: 104px 0 auto; min-height: calc(100vh - 104px); }
  .eyebrow { font-size: 11px; letter-spacing: .2em; }
  .eyebrow.flanked::before, .eyebrow.flanked::after { width: 22px; }
  .hero-mark { height: 155px; }
  .hero .lede, .lede-lg { font-size: 17px; }
  .actions .btn, .btn { width: 100%; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .includes-bar { padding: 22px 18px; gap: 10px 20px; }
  /* Leave a sliver of the next card visible so the row reads as scrollable. */
  .review { width: min(300px, 78vw); padding: 24px 22px; }
  .review--featured { width: min(340px, 86vw); }
  .review--featured p { font-size: 14.5px; }
  .review--featured::before { font-size: 70px; right: 16px; }
  .reviews-track { gap: 16px; }
  .card, .card-dark, .card-outline { padding: 28px 22px; }
}

/* ---------- Price manager (/admin-fowlog) ---------- */
.admin-panel {
  max-width: 460px;
  margin: 40px auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  padding: 36px 34px;
}
.admin-group {
  margin: 34px 0 12px;
  font-size: 13px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-family: var(--sans);
  font-weight: 600;
}
.admin-row {
  display: grid;
  grid-template-columns: 1fr 150px 130px;
  gap: 16px;
  align-items: center;
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid transparent;
  margin-bottom: 8px;
}
.admin-row.is-changed { border-left-color: var(--gold); background: #fffdf7; }
.admin-row.is-bad { border-left-color: #a4442e; }
.admin-name { font-size: 15px; color: var(--ink); }
.admin-input { display: flex; align-items: center; gap: 6px; }
.admin-input span { color: var(--gold-deep); font-family: var(--serif); font-size: 17px; }
.admin-input input {
  width: 100%;
  padding: 9px 11px;
  border: 1px solid var(--line);
  background: var(--ivory);
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  outline: none;
}
.admin-input input:focus { border-color: var(--gold); }
.admin-was { font-size: 13px; color: var(--gold-deep); text-align: right; }
.admin-bar {
  position: sticky;
  bottom: 0;
  margin-top: 26px;
  padding: 18px 20px;
  background: var(--ink-deep);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.admin-pending { color: var(--cream); font-size: 15px; }
@media (max-width: 700px) {
  .admin-row { grid-template-columns: 1fr; gap: 8px; }
  .admin-was { text-align: left; }
  .admin-panel { padding: 28px 22px; }
}

.admin-send {
  margin: 8px 0 30px;
  padding: 20px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
}
.admin-send summary {
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.admin-send select {
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: var(--ivory);
  color: var(--ink);
  font-size: 15px;
}
@media (max-width: 700px) { #send-form { grid-template-columns: 1fr !important; } }
.cart-or {
  text-align: center;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

/* ---------- Featured pair + booking modal ---------- */
.spotlight-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 24px;
  width: 100%;
  margin: 0 auto 8px;
}
/* Second-row card centred under the middle featured tile. */
.spotlight-row .single.mid-col { grid-column: 2; }
.spotlight-row .single.spotlight {
  padding: 26px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.spotlight-row .single-tag { align-self: center; }
.spotlight-row .single-price { font-size: 30px; }
.spotlight-row .add-btn { margin-top: auto; }
@media (max-width: 1080px) { .spotlight-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) { .spotlight-row { grid-template-columns: 1fr; } .spotlight-row .single.mid-col { grid-column: auto; } }

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(12, 10, 7, .6);
  opacity: 0;
  transition: opacity .2s ease;
}
.modal-backdrop.open { opacity: 1; }
.modal {
  position: fixed;
  z-index: 301;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .2s ease;
  overflow-y: auto;
}
.modal.open { opacity: 1; }
.modal-card {
  width: min(520px, 100%);
  background: var(--paper);
  border: 1px solid var(--gold);
  border-top: 3px solid var(--gold);
  padding: 32px 30px;
  max-height: 92vh;
  overflow-y: auto;
}
.modal-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.modal-head h2 { font-size: 22px; }
.modal-price { margin-top: 4px; font-family: var(--serif); font-size: 26px; color: var(--gold-deep); }
.modal-close {
  width: 34px; height: 34px; flex-shrink: 0;
  border: 1px solid var(--line); background: transparent; color: var(--ink);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: var(--gold); color: var(--ink-deep); border-color: var(--gold); }
.modal form { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }
.modal .field input, .modal .field textarea { font-size: 16px; }
.modal .field textarea { min-height: 92px; resize: vertical; }
.modal-note { font-size: 13px; color: var(--muted-dark); text-wrap: pretty; }
