/* =========================================================
   LimitOutfitter — Root domain landing
   Palette: dark forest, charcoal, parchment, brass/copper, maroon-brown
   ========================================================= */

:root {
  /* Surfaces */
  --ink-900: #06090a;        /* deepest */
  --ink-800: #0b110d;
  --ink-700: #0f1612;        /* base bg */
  --ink-600: #15201a;        /* forest */
  --ink-500: #1c2922;        /* lifted */
  --ink-400: #2a3a2f;        /* border */
  --ink-300: #3a4d40;
  --ink-200: #5a6b5f;

  /* Parchment (warm cream) */
  --parchment-50:  #f6efde;
  --parchment-100: #ece2c8;
  --parchment-200: #d8c79f;
  --parchment-300: #b9a87f;

  /* Brass / copper */
  --brass-700: #6b4a1c;
  --brass-600: #8a6126;
  --brass-500: #b07a2c;
  --brass-400: #c98a3b;       /* primary copper accent */
  --brass-300: #dba85a;

  /* Brand maroon (from logo) */
  --maroon-700: #3d1714;
  --maroon-600: #5a2622;
  --maroon-500: #7a3530;

  /* Semantic */
  --bg:           var(--ink-700);
  --bg-elev:      var(--ink-600);
  --bg-elev-2:    var(--ink-500);
  --border:       rgba(217, 199, 159, 0.12);
  --border-strong:rgba(217, 199, 159, 0.22);
  --text:         var(--parchment-50);
  --text-muted:   #b9b0a0;
  --text-dim:     #8a8475;
  --accent:       var(--brass-400);
  --accent-hover: var(--brass-300);

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Sizes */
  --container: 1240px;
  --radius:    14px;
  --radius-sm: 8px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a {
  color: var(--text);
  text-decoration: none;
  transition: color 180ms var(--ease);
}
a:hover { color: var(--accent); }

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

.skip-link {
  position: absolute;
  top: -40px; left: 12px;
  background: var(--accent);
  color: var(--ink-900);
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
  z-index: 100;
}
.skip-link:focus { top: 12px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   Atmospheric background (CSS + SVG, no images)
   ========================================================= */
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.atmosphere__sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 70% 12%, rgba(201, 138, 59, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 40% at 30% 25%, rgba(122, 53, 48, 0.10), transparent 70%),
    linear-gradient(180deg, #0a0d0c 0%, #0f1612 38%, #0b110d 70%, #06090a 100%);
}
.atmosphere__fog {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 30% at 50% 70%, rgba(217, 199, 159, 0.04), transparent 70%),
    radial-gradient(ellipse 60% 25% at 20% 85%, rgba(58, 77, 64, 0.20), transparent 70%);
}
.atmosphere__grain {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.93  0 0 0 0 0.87  0 0 0 0 0.74  0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}
.atmosphere__ridges {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  width: 100%;
  height: clamp(220px, 38vh, 380px);
  opacity: 0.85;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 180ms var(--ease), background 180ms var(--ease),
              border-color 180ms var(--ease), color 180ms var(--ease), box-shadow 180ms var(--ease);
}
.btn--lg { padding: 14px 24px; font-size: 15px; }

.btn--primary {
  background: linear-gradient(180deg, var(--brass-400), var(--brass-500));
  color: #1a0e02;
  box-shadow: 0 1px 0 rgba(255, 220, 160, 0.4) inset, 0 8px 24px -12px rgba(201, 138, 59, 0.6);
}
.btn--primary:hover {
  background: linear-gradient(180deg, var(--brass-300), var(--brass-400));
  color: #1a0e02;
  transform: translateY(-1px);
}

.btn--copper {
  background: linear-gradient(180deg, #c98a3b, #8a6126);
  color: #1a0e02;
  box-shadow: 0 1px 0 rgba(255, 220, 160, 0.35) inset, 0 8px 24px -14px rgba(138, 97, 38, 0.6);
}
.btn--copper:hover { color: #1a0e02; transform: translateY(-1px); }

.btn--secondary {
  background: rgba(246, 239, 222, 0.04);
  color: var(--text);
  border-color: var(--border-strong);
  backdrop-filter: blur(6px);
}
.btn--secondary:hover {
  background: rgba(246, 239, 222, 0.08);
  color: var(--text);
  border-color: rgba(217, 199, 159, 0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--ghost:hover {
  background: rgba(246, 239, 222, 0.05);
  color: var(--accent);
  border-color: var(--border-strong);
}

/* =========================================================
   Nav
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(6,9,10,0.85), rgba(6,9,10,0.55));
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav__logo {
  width: 38px; height: 44px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.45));
}
.nav__wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--parchment-50);
}
.nav__word-limit { color: var(--parchment-50); }
.nav__word-dash  { color: var(--brass-400); margin: 0 2px; }
.nav__word-out   { color: var(--parchment-50); }
.nav__word-fitter{
  color: var(--maroon-500);
  font-style: italic;
  font-weight: 500;
}
.nav__links {
  display: flex;
  gap: 28px;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}
.nav__links a { color: var(--text-muted); }
.nav__links a:hover { color: var(--text); }
.nav__cta {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.nav__menu {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 40px; height: 40px;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}
.nav__menu span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--parchment-100);
  transition: transform 200ms var(--ease), opacity 200ms var(--ease);
}
.nav__menu[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav__menu[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__menu[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 24px 22px;
  background: rgba(6,9,10,0.96);
  border-bottom: 1px solid var(--border);
}
.nav__mobile a {
  padding: 12px 4px;
  font-size: 16px;
  border-bottom: 1px solid var(--border);
}
.nav__mobile-cta {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

@media (max-width: 880px) {
  .nav__links, .nav__cta { display: none; }
  .nav__menu { display: inline-flex; }
  .nav__mobile[data-open="true"] { display: flex; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(60px, 9vw, 120px) 0 clamp(40px, 6vw, 80px);
  overflow: hidden;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(15, 22, 18, 0.6);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--parchment-200);
  width: fit-content;
}
.hero__eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brass-400);
  box-shadow: 0 0 0 3px rgba(201,138,59,0.18);
}
.hero__eyebrow-sub {
  color: var(--text-dim);
  border-left: 1px solid var(--border-strong);
  padding-left: 10px;
  margin-left: 4px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(44px, 7.2vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 22px 0 22px;
  color: var(--parchment-50);
  text-wrap: balance;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--brass-300);
  font-variation-settings: "opsz" 144;
}
.hero__lede {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-muted);
  max-width: 56ch;
  margin: 0 0 32px;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  max-width: 560px;
}
.hero__stats li { display: flex; flex-direction: column; gap: 4px; }
.stat__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2vw, 28px);
  color: var(--brass-300);
  letter-spacing: -0.02em;
}
.stat__label {
  font-size: 12.5px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

/* Hero plate (decorative right column) */
.hero__plate {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}
.plate {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(201,138,59,0.22), transparent 50%),
    linear-gradient(180deg, #15201a, #0a0f0c);
  border: 1px solid var(--border-strong);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  box-shadow:
    0 1px 0 rgba(217,199,159,0.08) inset,
    0 30px 80px -30px rgba(0,0,0,0.7),
    0 0 0 1px rgba(0,0,0,0.4);
  overflow: hidden;
}
.plate::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(217,199,159,0.18);
  border-radius: 12px;
  pointer-events: none;
}
.plate::after {
  content: "EST · LIMIT-OUTFITTER · FIELD CO · FLORIDA";
  position: absolute;
  bottom: 22px;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.32em;
  color: var(--parchment-300);
  opacity: 0.7;
}
.plate__badge {
  width: 66%;
  max-width: 220px;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.55));
  animation: floaty 7s ease-in-out infinite;
}
.plate__rule {
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217,199,159,0.45), transparent);
}
.plate__meta {
  display: flex;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--parchment-200);
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__plate { min-height: 380px; }
  .hero__stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (max-width: 560px) {
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .hero__stats li:last-child { grid-column: 1 / -1; }
}

/* =========================================================
   Ticker
   ========================================================= */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(6,9,10,0.6);
  overflow: hidden;
  padding: 16px 0;
}
.ticker__track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--parchment-300);
  animation: ticker 50s linear infinite;
  width: max-content;
}
.ticker__track span:not(:nth-child(2n)) { color: var(--brass-400); }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* =========================================================
   Sections — shared
   ========================================================= */
section { position: relative; }

.section__head {
  max-width: 760px;
  margin-bottom: 56px;
}
.section__head--center {
  margin-left: auto; margin-right: auto;
  text-align: center;
}
.section__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-400);
  display: inline-block;
  margin-bottom: 14px;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--parchment-50);
  text-wrap: balance;
}
.section__lede {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--text-muted);
  margin: 0;
  max-width: 60ch;
}
.section__head--center .section__lede {
  margin-left: auto; margin-right: auto;
}

/* =========================================================
   Products
   ========================================================= */
.products {
  padding: clamp(80px, 10vw, 140px) 0;
}

.product {
  position: relative;
  border-top: 1px solid var(--border);
  padding: clamp(40px, 6vw, 72px) 0;
}
.product:last-child { border-bottom: 1px solid var(--border); }

.product__meta {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 30px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.product__index {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--brass-400);
}
.product__tag {
  color: var(--text-dim);
  border-left: 1px solid var(--border-strong);
  padding-left: 20px;
}

.product__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.product__body--reverse .product__copy { order: 2; }

.product__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--parchment-50);
}
.product__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(17px, 1.6vw, 22px);
  color: var(--brass-300);
  margin: 0 0 18px;
}
.product__desc {
  color: var(--text-muted);
  margin: 0 0 28px;
  max-width: 56ch;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 14px;
}
.feature-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
}
.feature-list svg {
  width: 18px; height: 18px;
  color: var(--brass-400);
  margin-top: 4px;
  background: rgba(201,138,59,0.10);
  border: 1px solid rgba(201,138,59,0.25);
  border-radius: 50%;
  padding: 2px;
}
.feature-list strong {
  display: block;
  color: var(--parchment-50);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 2px;
}
.feature-list span {
  color: var(--text-dim);
  font-size: 14.5px;
}

.product__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 880px) {
  .product__body,
  .product__body--reverse {
    grid-template-columns: 1fr;
  }
  .product__body--reverse .product__copy { order: 0; }
}

/* Product visuals */
.product__visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3.2;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(201,138,59,0.10), transparent 60%),
    linear-gradient(180deg, #15201a, #0a0f0c);
  border: 1px solid var(--border-strong);
  box-shadow:
    0 1px 0 rgba(217,199,159,0.06) inset,
    0 30px 60px -30px rgba(0,0,0,0.7);
  padding: 22px;
}

/* HuntForge dashboard mock */
.mock {
  width: 100%;
  height: 100%;
  background: #0c1310;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.mock__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: #0a100d;
}
.mock__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ink-300);
}
.mock__dot:first-child { background: var(--maroon-500); }
.mock__dot:nth-child(2) { background: var(--brass-500); }
.mock__url {
  margin-left: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
}
.mock__body {
  flex: 1;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mock__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--parchment-300);
}
.pill {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 9px;
  letter-spacing: 0.18em;
}
.pill--live {
  background: rgba(201,138,59,0.15);
  color: var(--brass-300);
  border: 1px solid rgba(201,138,59,0.35);
  position: relative;
  padding-left: 14px;
}
.pill--live::before {
  content: "";
  position: absolute;
  left: 5px; top: 50%; transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brass-400);
  box-shadow: 0 0 0 2px rgba(201,138,59,0.25);
  animation: livePulse 1.6s ease-in-out infinite;
}
@keyframes livePulse {
  50% { box-shadow: 0 0 0 5px rgba(201,138,59,0); }
}
.mock__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  flex: 1;
}
.mock__card {
  background: #0f1a14;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.mock__card--ok { border-color: rgba(201,138,59,0.35); }
.mock__k {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--parchment-50);
}
.mock__v {
  font-size: 11px;
  color: var(--text-dim);
}
.mock__sub {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.10em;
  color: var(--text-dim);
  margin-top: auto;
}
.mock__bar-fill {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brass-500), var(--brass-300));
  width: var(--w);
  margin: 6px 0 4px;
}

/* Store shelf */
.shelf {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.shelf__row {
  display: grid;
  gap: 10px;
  flex: 1;
}
.shelf__row:nth-child(1) { grid-template-columns: 1.2fr 1fr; }
.shelf__row:nth-child(2) { grid-template-columns: 1fr 1fr 1fr; }

.tile {
  position: relative;
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  border: 1px solid var(--border);
  overflow: hidden;
  font-family: var(--font-display);
}
.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.55;
}
.tile > * { position: relative; z-index: 1; }

.tile--a { background: linear-gradient(160deg, #1a2f24, #0a1410); }
.tile--a::before { background: radial-gradient(80% 60% at 70% 30%, rgba(201,138,59,0.35), transparent 60%); }
.tile--b { background: linear-gradient(160deg, #142f38, #0a141a); }
.tile--b::before { background: radial-gradient(80% 60% at 30% 30%, rgba(122,169,184,0.25), transparent 60%); }
.tile--c { background: linear-gradient(160deg, #2c1f15, #100a06); }
.tile--c::before { background: radial-gradient(80% 60% at 50% 30%, rgba(201,138,59,0.25), transparent 60%); }
.tile--d { background: linear-gradient(160deg, #2a1714, #0d0605); }
.tile--d::before { background: radial-gradient(80% 60% at 60% 30%, rgba(201,138,59,0.30), transparent 60%); }
.tile--e { background: linear-gradient(160deg, #15211c, #0a0f0c); }
.tile--e::before { background: radial-gradient(80% 60% at 50% 30%, rgba(217,199,159,0.18), transparent 60%); }

.tile__cat {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-400);
}
.tile__name {
  font-weight: 600;
  font-size: 16px;
  color: var(--parchment-50);
}
.tile__price {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--parchment-200);
}

/* =========================================================
   Lifestyle
   ========================================================= */
.lifestyle {
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(201,138,59,0.06), transparent 60%);
}
.life-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}
.life-card {
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, #15201a, #0a0f0c);
  overflow: hidden;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease);
}
.life-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201,138,59,0.35);
}
.life-card__art {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.life-card__art svg { width: 100%; height: 100%; display: block; }
.life-card__body { padding: 20px 22px 24px; }
.life-card__body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
  color: var(--parchment-50);
}
.life-card__body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14.5px;
}

@media (max-width: 880px) {
  .life-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   CTA strip
   ========================================================= */
.cta-strip {
  padding: clamp(60px, 8vw, 100px) 0;
  border-top: 1px solid var(--border);
  background:
    linear-gradient(180deg, #0b110d 0%, #15201a 100%);
}
.cta-strip__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 30px;
  align-items: center;
}
.cta-strip__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--parchment-50);
}
.cta-strip__lede {
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(15px, 1.2vw, 17px);
}
.cta-strip__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 700px) {
  .cta-strip__inner { grid-template-columns: 1fr; }
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  padding: 60px 0 48px;
  border-top: 1px solid var(--border);
  background: #06090a;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}
.footer__brand img {
  width: 48px;
  height: auto;
  margin-bottom: 14px;
}
.footer__tag {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  margin: 0 0 10px;
  color: var(--parchment-50);
  letter-spacing: -0.01em;
}
.footer__legal {
  margin: 0;
  font-size: 12.5px;
  color: var(--text-dim);
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col h4 {
  margin: 0 0 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-400);
  font-weight: 500;
}
.footer__col a {
  font-size: 14.5px;
  color: var(--text-muted);
}
.footer__col a:hover { color: var(--accent); }

@media (max-width: 720px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
