/* =========================================================
   BRIGHT GLORY GENERAL — v4 (Dark luxury · Yellow accent)
   Fonts: Syne (display) + Manrope (body)
   ========================================================= */

:root {
  /* LIGHT PALETTE */
  --bg: #F7F5ED;          /* warm cream */
  --surface: #FFFFFF;     /* card surfaces */
  --surface-2: #EFE9D7;   /* light sand */
  --surface-3: #E3DDC8;   /* sand */
  --line: #DDD7C4;        /* tan border */
  --line-soft: #EAE5D4;
  --text: #1C1A17;        /* near black */
  --muted: #6B6858;       /* warm gray */
  --muted-2: #9A9685;     /* lighter warm gray */

  --accent: #E85D04;       /* rust orange */
  --accent-deep: #B84704;
  --accent-soft: rgba(232, 93, 4, 0.1);
  --accent-warm: #0F3D2E;  /* deep forest, secondary */

  --f-display: "Syne", "Helvetica Neue", sans-serif;
  --f-body: "Manrope", system-ui, sans-serif;

  --max: 1280px;
  --gut: clamp(20px, 4vw, 48px);
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 10px 40px rgba(28, 26, 23, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

/* Ambient gradient mesh — fixed background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(50% 40% at 90% 10%, rgba(232, 93, 4, 0.08), transparent 60%),
    radial-gradient(45% 50% at 10% 90%, rgba(15, 61, 46, 0.06), transparent 60%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
main, header, section, footer { position: relative; z-index: 1; }

img { display: block; max-width: 100%; }
.img-cover { width: 100%; height: 100%; object-fit: cover; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--accent); color: var(--bg); }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gut);
}

/* =========================================================
   REVEAL
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.18s; }
.reveal[data-d="3"] { transition-delay: 0.28s; }
.reveal[data-d="4"] { transition-delay: 0.38s; }
.reveal[data-d="5"] { transition-delay: 0.48s; }

@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,93,4,0.5); }
  50%      { box-shadow: 0 0 0 10px rgba(232,93,4,0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* =========================================================
   TYPE
   ========================================================= */

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.02;
}
h1 { font-size: clamp(52px, 8vw, 112px); font-weight: 700; }
h2 { font-size: clamp(36px, 5.2vw, 64px); font-weight: 600; }
h3 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 600; }
h4 { font-size: 17px; font-weight: 600; }

.display-outline {
  -webkit-text-stroke: 1.5px var(--text);
  color: transparent;
}
.accent-word { color: var(--accent); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
  text-transform: uppercase;
}
.eyebrow .live-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-out infinite;
}
.lede {
  font-size: clamp(17px, 1.35vw, 19.5px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 54ch;
}

/* =========================================================
   NAV
   ========================================================= */

.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247, 245, 237, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gut);
  max-width: var(--max);
  margin: 0 auto;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.015em;
}
.nav__brand .bg-tag {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.02em;
}
.nav__menu {
  display: flex;
  list-style: none;
  gap: 34px;
}
.nav__menu a {
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
  padding: 6px 0;
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(.7,0,.2,1);
}
.nav__menu a.is-active,
.nav__menu a:hover { color: var(--text); }
.nav__menu a.is-active::after,
.nav__menu a:hover::after { transform: scaleX(1); }

/* Hamburger button */
.nav__burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  position: relative;
  transition: background 0.25s ease;
}
.nav__burger span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.35s cubic-bezier(.7,0,.2,1), opacity 0.25s ease, top 0.35s cubic-bezier(.7,0,.2,1);
}
.nav__burger span:nth-child(1) { top: 14px; }
.nav__burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav__burger span:nth-child(3) { top: 24px; }
body.menu-open .nav__burger span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav__burger span:nth-child(3) { top: 50%; transform: translateY(-50%) rotate(-45deg); }

/* Desktop CTA in nav */
.nav__cta { display: inline-flex; }

@media (max-width: 860px) {
  .nav__burger { display: block; }
  .nav__cta { display: none; }
  .nav__menu { display: none; }
}

/* =========================================================
   MOBILE MENU (sibling of .nav, not nested — avoids
   backdrop-filter containing-block clipping)
   ========================================================= */

.mobile-menu {
  display: none;
}

@media (max-width: 860px) {
  .mobile-menu {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 55;
    background: var(--bg);
    padding: 90px var(--gut) 40px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(.7,0,.2,1);
    visibility: hidden;
  }
  body.menu-open { overflow: hidden; }
  body.menu-open .mobile-menu {
    transform: translateX(0);
    visibility: visible;
  }

  .mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
  }
  .mobile-menu li { width: 100%; }
  .mobile-menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    font-family: var(--f-display);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text);
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu a.is-active {
    color: var(--accent);
  }
  .mobile-menu a::after {
    content: "→";
    font-size: 20px;
    color: var(--muted-2);
    transition: color 0.2s ease, transform 0.2s ease;
  }
  .mobile-menu a:hover::after,
  .mobile-menu a.is-active::after {
    color: var(--accent);
    transform: translateX(4px);
  }

  .mobile-menu__cta {
    margin-top: 28px;
  }
  .mobile-menu__cta .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 14px;
  }

  .mobile-menu__meta {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .mobile-menu__meta span {
    font-size: 13.5px;
    color: var(--muted);
  }
  .mobile-menu__meta strong {
    color: var(--accent);
    font-weight: 600;
  }
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn--accent {
  background: var(--accent);
  color: var(--bg);
}
.btn--accent:hover {
  background: var(--text);
  transform: translateY(-1px);
}
.btn--ghost {
  border: 1px solid var(--line);
  color: var(--text);
  background: transparent;
}
.btn--ghost:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.btn__arrow {
  transition: transform 0.25s ease;
  font-size: 15px;
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* =========================================================
   HERO
   ========================================================= */

.hero {
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 110px);
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: end;
}
.hero__copy > * + * { margin-top: 28px; }
.hero h1 {
  font-size: clamp(56px, 9vw, 128px);
  line-height: 0.94;
}
.hero h1 em {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__trust {
  display: flex;
  gap: 20px;
  padding-top: 26px;
  margin-top: 36px !important;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.trust {
  display: flex;
  gap: 12px;
  align-items: center;
}
.trust__num {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.trust__label {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.35;
  max-width: 16ch;
}

/* Visual column */
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.hero__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.9);
  animation: fadein 1s ease;
}
.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,11,0.05) 40%, rgba(10,10,11,0.7) 100%),
    linear-gradient(115deg, transparent 55%, rgba(232,93,4,0.18) 100%);
  pointer-events: none;
}
.hero__overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 18px 22px;
  background: rgba(10,10,11,0.7);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  align-items: center;
}
.hero__overlay h4 { font-family: var(--f-display); font-size: 17px; }
.hero__overlay p { font-size: 13px; color: var(--muted); }
.hero__overlay .dot-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.25s ease;
}
.hero__overlay .dot-link:hover { transform: translateY(-2px); }
.hero__badge {
  position: absolute;
  top: 24px;
  left: 24px;
}

@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-height: 560px; }
}

/* =========================================================
   INFO BAND (between hero and services)
   ========================================================= */

.band {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.band__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gut);
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.band__title {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 20px;
  color: var(--muted);
}
.band__items {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.band__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.band__item svg { width: 18px; height: 18px; color: var(--accent); }

/* =========================================================
   SECTION HEAD
   ========================================================= */

.section { padding: clamp(72px, 9vw, 140px) 0; }

.section__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 60px;
}
.section__head h2 em {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
@media (max-width: 800px) {
  .section__head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 40px; }
}

/* =========================================================
   SERVICES
   ========================================================= */

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.svc {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  background: var(--surface);
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), border-color 0.4s ease, background 0.4s ease;
  overflow: hidden;
}
.svc::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(140deg, transparent, rgba(232,93,4,0.4), transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.svc:hover { transform: translateY(-6px); background: var(--surface-2); }
.svc:hover::before { opacity: 1; }

.svc__num {
  font-family: var(--f-display);
  font-size: 15px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.svc__title {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 42px 0 14px;
}
.svc p { color: var(--muted); font-size: 15px; }
.svc__link {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--text);
}
.svc__link::after {
  content: "";
  width: 10px; height: 10px;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}
.svc:hover .svc__link::after { transform: rotate(45deg) translate(3px, -3px); color: var(--accent); }
.svc:hover .svc__link { color: var(--accent); }

.svc__ico {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  position: absolute;
  top: 28px;
  right: 28px;
}

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

/* =========================================================
   MARQUEE
   ========================================================= */

.marquee {
  overflow: hidden;
  padding: 22px 0;
  background: var(--text);
  color: var(--bg);
}
.marquee__track span { color: var(--bg) !important; }
.marquee__track {
  display: flex;
  gap: 44px;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
}
.marquee__track span {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 44px;
  color: var(--muted);
}
.marquee__track span::after {
  content: "◆";
  font-style: normal;
  color: var(--accent);
  font-size: 0.5em;
}

/* =========================================================
   INVENTORY GRID
   ========================================================= */

.inventory {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.inv-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), border-color 0.4s ease;
}
.inv-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.inv-card__vis {
  position: relative;
  aspect-ratio: 1 / 0.95;
  overflow: hidden;
  background: var(--surface-2);
}
.inv-card__vis img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(.2,.7,.2,1);
  filter: saturate(0.8) contrast(1.05);
}
.inv-card:hover .inv-card__vis img { transform: scale(1.08); }
.inv-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 10px;
  background: var(--bg);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--accent);
}
.inv-card__body { padding: 18px 20px 22px; }
.inv-card__cat {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 500;
}
.inv-card__title {
  font-family: var(--f-display);
  font-size: 19px;
  margin: 6px 0 4px;
  letter-spacing: -0.01em;
}
.inv-card__meta {
  font-size: 13px;
  color: var(--muted-2);
}
.inv-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}
.inv-card__qty { color: var(--muted); }
.inv-card__qty b { color: var(--accent); font-weight: 700; margin-right: 2px; }
.inv-card__arrow {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}
.inv-card:hover .inv-card__arrow { color: var(--accent); }

@media (max-width: 1000px) { .inventory { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .inventory { grid-template-columns: 1fr; } }

/* =========================================================
   STATS
   ========================================================= */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat {
  padding: 38px 30px;
  background: var(--surface);
}
.stat__num {
  font-family: var(--f-display);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
}
.stat__label {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  max-width: 22ch;
  line-height: 1.4;
}
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   QUOTE
   ========================================================= */

.quote-block {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
  position: relative;
}
.quote-block::before {
  content: "“";
  font-family: var(--f-display);
  font-size: 200px;
  position: absolute;
  top: -50px;
  left: 0;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  pointer-events: none;
}
.quote-block p {
  font-family: var(--f-display);
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.22;
  letter-spacing: -0.015em;
  font-weight: 500;
}
.quote-block p em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}
.quote__cite {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.quote__av {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 700;
  font-size: 20px;
}
.quote__meta strong { display: block; font-size: 14.5px; font-weight: 600; }
.quote__meta small { display: block; font-size: 13px; color: var(--muted); }

/* =========================================================
   CTA BAND
   ========================================================= */

.cta {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 60% at 20% 30%, rgba(232,93,4,0.10), transparent 55%),
    radial-gradient(40% 50% at 80% 70%, rgba(15,61,46,0.08), transparent 55%);
}
.cta__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gut);
  text-align: center;
  position: relative;
}
.cta h2 {
  font-size: clamp(44px, 7vw, 104px);
  max-width: 18ch;
  margin: 20px auto 22px;
}
.cta h2 em {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.cta .lede { margin: 0 auto 36px; }

/* =========================================================
   FAB
   ========================================================= */

.fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(232,93,4,0.3);
  transition: transform 0.25s ease;
}
.fab:hover { transform: translateY(-2px); }
.fab__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bg);
  animation: pulse-dot 1.8s ease-out infinite;
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  position: relative;
  padding: 80px var(--gut) 28px;
  border-top: 1px solid var(--line);
  background: var(--surface-2);
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 0.9fr 0.9fr;
  gap: 36px;
}
.footer__brand {
  font-family: var(--f-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.footer__brand em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.footer__brand small {
  display: block;
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
  max-width: 34ch;
  line-height: 1.5;
}
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.footer__social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
  transform: translateY(-2px);
}
.footer__social svg { width: 17px; height: 17px; }
.footer__col h5 {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer__col ul { list-style: none; }
.footer__col li { font-size: 14px; color: var(--muted); padding: 5px 0; }
.footer__col a:hover { color: var(--text); }
.footer__bottom {
  max-width: var(--max);
  margin: 52px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--muted-2);
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 1000px) { .footer__inner { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 700px)  { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px)  { .footer__inner { grid-template-columns: 1fr; } }

/* =========================================================
   COOKIE BANNER
   ========================================================= */

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 520px;
  margin-left: auto;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(28, 26, 23, 0.15);
  z-index: 70;
  display: none;
  gap: 14px;
  align-items: center;
  transform: translateY(12px);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
body.cookies-visible .cookie-banner {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
/* keep the FAB from overlapping */
body.cookies-visible .fab { bottom: 120px; }

.cookie-banner__text {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}
.cookie-banner__text strong { color: var(--text); font-weight: 600; }
.cookie-banner__text a { color: var(--accent); border-bottom: 1px solid rgba(232,93,4,0.3); }
.cookie-banner__actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-banner button {
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  font-family: var(--f-body);
  transition: background 0.2s ease, color 0.2s ease;
}
.cookie-banner button.is-primary {
  background: var(--accent);
  color: var(--bg);
}
.cookie-banner button.is-primary:hover { background: var(--text); }
.cookie-banner button.is-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
}
.cookie-banner button.is-ghost:hover { color: var(--text); border-color: var(--text); }

@media (max-width: 540px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }
  .cookie-banner__actions { justify-content: stretch; }
  .cookie-banner__actions button { flex: 1; padding: 12px; }
}

/* =========================================================
   PAGE TOP (sub-pages)
   ========================================================= */

.pagetop {
  padding: clamp(68px, 9vw, 130px) 0 clamp(50px, 6vw, 80px);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.pagetop::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 60% at 90% 20%, rgba(232, 93, 4, 0.10), transparent 60%),
    radial-gradient(45% 55% at 10% 85%, rgba(15, 61, 46, 0.06), transparent 60%);
  pointer-events: none;
}
.pagetop__inner { position: relative; }
.pagetop h1 {
  font-size: clamp(52px, 9vw, 124px);
  max-width: 16ch;
  margin: 22px 0 24px;
  line-height: 0.94;
}
.pagetop h1 em {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.pagetop .lede { max-width: 58ch; }

.crumbs {
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.crumbs span { color: var(--accent); }

/* =========================================================
   TWO-COL STORY (about)
   ========================================================= */

.twocol-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.twocol-story__img {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--surface-2);
}
.twocol-story__img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.9);
}
.twocol-story__img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,11,0.78) 100%);
}
.twocol-story__caption {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
}
.twocol-story__caption small {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}
.twocol-story__caption h3 {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--text);
  letter-spacing: -0.02em;
}
.twocol-story__caption h3 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}
.twocol-story__text p { color: var(--muted); font-size: 16.5px; margin-bottom: 18px; line-height: 1.65; }
.twocol-story__text p:last-child { margin-bottom: 0; }
.twocol-story__text p strong { color: var(--text); font-weight: 600; }

@media (max-width: 800px) { .twocol-story { grid-template-columns: 1fr; gap: 30px; } }

/* =========================================================
   VALUES (about)
   ========================================================= */

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.value {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  background: var(--surface);
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), border-color 0.3s ease;
}
.value:hover { transform: translateY(-4px); border-color: var(--accent); }
.value--accent { background: var(--accent); color: var(--bg); border-color: transparent; }
.value--accent:hover { border-color: var(--bg); }
.value--warm { background: var(--accent-warm); color: var(--text); border-color: transparent; }
.value--warm:hover { border-color: var(--text); }
.value__num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 600;
  font-size: 34px;
  opacity: 0.8;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.value h3 {
  font-family: var(--f-display);
  font-size: 24px;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.value p { font-size: 15px; opacity: 0.9; line-height: 1.55; }
.value--accent p, .value--warm p { opacity: 0.95; }

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

/* =========================================================
   TIMELINE (about)
   ========================================================= */

.timeline {
  border-top: 1px solid var(--line);
}
.tl {
  display: grid;
  grid-template-columns: 160px 1fr 2fr;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: padding 0.3s ease, background 0.3s ease;
}
.tl:hover { padding-left: 16px; padding-right: 16px; background: var(--surface); border-radius: var(--radius-sm); }
.tl__year {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 600;
  font-size: 40px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.tl__title {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.tl__body { color: var(--muted); font-size: 15.5px; line-height: 1.6; }

@media (max-width: 820px) {
  .tl { grid-template-columns: 1fr; gap: 10px; }
}

/* =========================================================
   TEAM (about)
   ========================================================= */

.team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.member {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  transition: transform 0.4s ease, border-color 0.3s ease;
}
.member:hover { transform: translateY(-4px); border-color: var(--accent); }
.member__av {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 64px;
  font-weight: 600;
  color: var(--bg);
  letter-spacing: -0.02em;
}
.member:nth-child(1) .member__av { background: var(--accent); }
.member:nth-child(2) .member__av { background: var(--accent-warm); color: var(--text); }
.member:nth-child(3) .member__av { background: var(--text); color: var(--bg); }
.member:nth-child(4) .member__av { background: var(--surface-3); color: var(--accent); }
.member__body { padding: 18px 20px 22px; }
.member__name { font-family: var(--f-display); font-size: 20px; font-weight: 600; letter-spacing: -0.01em; }
.member__role { font-size: 13px; color: var(--muted); margin-top: 4px; }

@media (max-width: 900px) { .team { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   BLOG — FEATURED POST
   ========================================================= */

.post-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 0.4s ease, border-color 0.3s ease;
}
.post-feature:hover { transform: translateY(-4px); border-color: var(--accent); }
.post-feature__vis {
  min-height: 360px;
  position: relative;
  overflow: hidden;
}
.post-feature__vis img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.85);
}
.post-feature__vis::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 60%, rgba(232,93,4,0.12) 100%);
}
.post-feature__body {
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.post-feature__body h3 {
  font-family: var(--f-display);
  font-size: clamp(26px, 3.2vw, 40px);
  letter-spacing: -0.02em;
  font-weight: 600;
}
.post-feature__body p { color: var(--muted); font-size: 15.5px; line-height: 1.65; }
.post-feature__meta {
  display: flex;
  gap: 12px;
  font-size: 12.5px;
  color: var(--muted-2);
  letter-spacing: 0.02em;
}
@media (max-width: 820px) { .post-feature { grid-template-columns: 1fr; } }

/* =========================================================
   BLOG — FILTERS
   ========================================================= */

.filters { display: flex; gap: 10px; flex-wrap: wrap; margin: 44px 0 26px; }
.filter {
  padding: 9px 17px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.25s ease;
}
.filter.is-active, .filter:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

/* =========================================================
   BLOG — POST GRID
   ========================================================= */

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.post-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, border-color 0.3s ease;
}
.post-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.post-card__vis {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
}
.post-card__vis img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(.2,.7,.2,1);
  filter: saturate(0.85);
}
.post-card:hover .post-card__vis img { transform: scale(1.06); }
.post-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card__cat {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 600;
}
.post-card__title {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.22;
}
.post-card__meta { margin-top: auto; font-size: 12.5px; color: var(--muted-2); }

@media (max-width: 900px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .post-grid { grid-template-columns: 1fr; } }

.pager {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--muted);
}
.pager a { color: var(--accent); }

/* =========================================================
   NEWSLETTER
   ========================================================= */

.newsletter {
  border-radius: var(--radius);
  padding: clamp(36px, 5vw, 60px);
  border: 1px solid var(--line);
  background:
    radial-gradient(60% 100% at 100% 0%, rgba(232,93,4,0.22), transparent 60%),
    radial-gradient(60% 100% at 0% 100%, rgba(15,61,46,0.18), transparent 60%),
    var(--surface);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.newsletter h2 {
  font-family: var(--f-display);
  max-width: 14ch;
  font-size: clamp(30px, 4vw, 48px);
}
.newsletter h2 em { font-style: italic; color: var(--accent); font-weight: 500; }
.newsletter p { color: var(--muted); max-width: 40ch; margin-top: 14px; }
.newsletter__form {
  display: flex;
  gap: 6px;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 6px;
  border-radius: 999px;
}
.newsletter__form input {
  flex: 1;
  border: none;
  padding: 12px 18px;
  background: transparent;
  font-family: var(--f-body);
  font-size: 14.5px;
  color: var(--text);
}
.newsletter__form input::placeholder { color: var(--muted-2); }
.newsletter__form input:focus { outline: none; }
.newsletter__form button {
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  font-family: var(--f-body);
}
.newsletter__form button:hover { background: var(--text); }

@media (max-width: 820px) {
  .newsletter { grid-template-columns: 1fr; }
  .newsletter__form { flex-direction: column; border-radius: 16px; padding: 8px; }
  .newsletter__form input { text-align: center; }
  .newsletter__form button { border-radius: 12px; padding: 14px; }
}

/* =========================================================
   PRIVACY — EDITORIAL
   ========================================================= */

.editorial {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 60px;
  padding: clamp(40px, 6vw, 70px) 0 clamp(60px, 8vw, 100px);
}
.toc {
  position: sticky;
  top: 100px;
  align-self: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.toc h4 {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.toc ol { list-style: none; counter-reset: t; }
.toc li { counter-increment: t; font-size: 14px; padding: 6px 0; color: var(--muted); transition: color 0.2s ease; }
.toc li:hover { color: var(--text); }
.toc li::before {
  content: counter(t, decimal-leading-zero) ".";
  color: var(--accent);
  font-weight: 600;
  margin-right: 8px;
}

.prose { max-width: 68ch; }
.prose__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 40px;
}
.prose__meta::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.prose h2 {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 52px 0 16px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.prose h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.prose p { color: var(--muted); margin-bottom: 16px; font-size: 16px; line-height: 1.7; }
.prose ul { margin: 10px 0 22px 20px; color: var(--muted); }
.prose li { font-size: 15.5px; line-height: 1.7; padding: 4px 0; }
.prose a { color: var(--accent); border-bottom: 1px solid rgba(232,93,4,0.3); transition: border-color 0.2s ease; }
.prose a:hover { border-color: var(--accent); }
.prose strong { color: var(--text); font-weight: 600; }

@media (max-width: 900px) {
  .editorial { grid-template-columns: 1fr; gap: 30px; }
  .toc { position: static; }
}

/* =========================================================
   CONTACT
   ========================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: start;
}
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
}
.form-card h2 {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 14px 0 8px;
}
.form-card h2 em { font-style: italic; color: var(--accent); font-weight: 500; }
.form-card > p { color: var(--muted); margin-bottom: 28px; }

.form { display: flex; flex-direction: column; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.field input,
.field textarea,
.field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 10px 0 12px;
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-bottom-color: var(--accent); }
.field textarea { resize: vertical; min-height: 100px; }

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

.info-stack { display: flex; flex-direction: column; gap: 14px; }
.info-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.info-card:hover { transform: translateY(-2px); border-color: var(--accent); }
.info-card--accent { background: var(--accent); color: var(--bg); border-color: transparent; }
.info-card--accent:hover { border-color: var(--bg); }
.info-card--warm { background: var(--accent-warm); color: var(--text); border-color: transparent; }
.info-card--warm:hover { border-color: var(--text); }
.info-card h4 {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 10px;
}
.info-card p {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.info-card p a { border-bottom: 1px solid currentColor; padding-bottom: 2px; }

/* MAP */
.map {
  aspect-ratio: 16/11;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--line);
}
.map::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(15,61,46,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,61,46,0.1) 1px, transparent 1px);
  background-size: 36px 36px;
}
.map__pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(232,93,4,0.3);
}
.map__pin::after {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  animation: map-pulse 2.4s ease-in-out infinite;
}
@keyframes map-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%      { transform: scale(1.25); opacity: 0; }
}
.map__label {
  position: absolute;
  top: 52%; left: 50%;
  transform: translate(-50%, 18px);
  padding: 7px 14px;
  background: var(--bg);
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-size: 12px;
  color: var(--text);
  white-space: nowrap;
}

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

/* Section variants */
.section--alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* =========================================================
   PRICING — TIER CARDS
   ========================================================= */

.tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.tier {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--surface);
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tier:hover { transform: translateY(-4px); border-color: var(--accent); }
.tier--highlight {
  background: var(--accent);
  color: var(--bg);
  border-color: transparent;
}
.tier--highlight .tier__tag { background: var(--bg); color: var(--accent); }
.tier--highlight:hover { border-color: var(--bg); }

.tier__tag {
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tier__qty {
  font-family: var(--f-display);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}
.tier__qty small {
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  color: currentColor;
  opacity: 0.7;
  font-family: var(--f-body);
  letter-spacing: 0;
  text-transform: uppercase;
  margin-top: 6px;
}
.tier--highlight .tier__qty small { opacity: 0.75; }
.tier__price {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--accent);
}
.tier--highlight .tier__price { color: var(--bg); }
.tier__desc { font-size: 14px; color: var(--muted); line-height: 1.55; }
.tier--highlight .tier__desc { color: var(--bg); opacity: 0.85; }

@media (max-width: 1000px) { .tiers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .tiers { grid-template-columns: 1fr; } }

/* =========================================================
   PRICING — STEPS
   ========================================================= */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step {
  counter-increment: step;
  position: relative;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 0.4s ease, border-color 0.3s ease;
}
.step:hover { transform: translateY(-4px); border-color: var(--accent); }
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 600;
  font-size: 44px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 18px;
}
.step h3 {
  font-family: var(--f-display);
  font-size: 20px;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.step p { color: var(--muted); font-size: 14.5px; line-height: 1.55; }

@media (max-width: 1000px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .steps { grid-template-columns: 1fr; } }

/* =========================================================
   PRICING — QUOTE BREAKDOWN CARD
   ========================================================= */

.breakdown {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
}
.breakdown__side { padding: clamp(28px, 4vw, 44px); }
.breakdown__divider { background: var(--line); }
.breakdown__side h3 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}
.breakdown__side ul { list-style: none; }
.breakdown__side li {
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 14.5px;
  color: var(--muted);
}
.breakdown__side li:last-child { border-bottom: none; }
.breakdown__side li b {
  color: var(--text);
  font-weight: 600;
  font-family: var(--f-display);
  font-size: 16px;
}
.breakdown__side li .check {
  width: 18px; height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}
@media (max-width: 800px) {
  .breakdown { grid-template-columns: 1fr; }
  .breakdown__divider { height: 1px; width: 100%; }
}

/* =========================================================
   HOME FINDER WIDGET
   ========================================================= */

.finder {
  margin-top: -40px;
  position: relative;
  z-index: 2;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 12px 40px rgba(28, 26, 23, 0.08);
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr auto;
  gap: 18px;
  align-items: end;
}
.finder__label {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.015em;
  padding-right: 14px;
  border-right: 1px solid var(--line);
}
.finder__label small {
  display: block;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.finder__field { display: flex; flex-direction: column; gap: 5px; }
.finder__field label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.finder__field select,
.finder__field input {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--line);
  padding: 9px 0 10px;
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s ease;
}
.finder__field input::placeholder { color: var(--muted-2); }
.finder__field select:focus,
.finder__field input:focus { outline: none; border-bottom-color: var(--accent); }
.finder__btn {
  padding: 14px 24px;
  background: var(--accent);
  color: #FFFFFF;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  font-family: var(--f-body);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}
.finder__btn:hover { background: var(--accent-deep); transform: translateY(-1px); }

@media (max-width: 980px) {
  .finder {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .finder__label {
    grid-column: 1 / -1;
    border-right: none;
    padding-right: 0;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
  }
  .finder__btn { grid-column: 1 / -1; justify-content: center; }
}
@media (max-width: 500px) {
  .finder { grid-template-columns: 1fr; }
}

/* =========================================================
   STORE — FILTER BAR + PRODUCT GRID
   ========================================================= */

.store-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

.filter-panel {
  position: sticky;
  top: 100px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.filter-panel__group { margin-bottom: 26px; }
.filter-panel__group:last-child { margin-bottom: 0; }
.filter-panel__title {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.filter-panel__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.filter-panel__list button {
  width: 100%;
  text-align: left;
  padding: 8px 12px;
  font-size: 14px;
  color: var(--muted);
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.filter-panel__list button:hover { background: var(--surface-2); color: var(--text); }
.filter-panel__list button.is-active {
  background: var(--accent);
  color: #FFFFFF;
}
.filter-panel__list button .count {
  font-size: 12px;
  color: inherit;
  opacity: 0.7;
}
.filter-panel__reset {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.filter-panel__reset:hover { color: var(--accent); border-color: var(--accent); }

/* Store body */
.store-body__topbar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}
.search-box {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 18px;
  transition: border-color 0.2s ease;
}
.search-box:focus-within { border-color: var(--accent); }
.search-box svg {
  width: 18px;
  height: 18px;
  color: var(--muted);
  flex-shrink: 0;
}
.search-box input {
  flex: 1;
  padding: 10px 12px;
  border: none;
  background: transparent;
  font-family: var(--f-body);
  font-size: 14.5px;
  color: var(--text);
}
.search-box input:focus { outline: none; }
.search-box input::placeholder { color: var(--muted-2); }

.sort-box select {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
}
.sort-box select:focus { outline: none; border-color: var(--accent); }

.results-meta {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 16px;
}
.results-meta b { color: var(--text); font-weight: 600; }

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1), border-color 0.25s ease;
}
.product:hover { transform: translateY(-4px); border-color: var(--accent); }
.product[hidden] { display: none; }
.product__vis {
  aspect-ratio: 1 / 0.9;
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
}
.product__vis img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product:hover .product__vis img { transform: scale(1.04); }
.product__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  background: var(--surface);
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.product__tag--out {
  background: var(--surface-3);
  color: var(--muted);
  border-color: var(--muted-2);
}
.product__body { padding: 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product__cat {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.product__title {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.product__meta { font-size: 13.5px; color: var(--muted); }
.product__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-top: 1px solid var(--line);
}
.product__brand {
  font-size: 12.5px;
  color: var(--muted);
}
.product__brand b {
  color: var(--text);
  font-weight: 600;
}
.product__cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  display: inline-flex;
  gap: 6px;
  align-items: center;
  transition: color 0.2s ease;
}
.product__cta:hover { color: var(--accent); }

@media (max-width: 1000px) { .store-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .store-grid { grid-template-columns: 1fr; } }

.store-empty {
  padding: 60px 30px;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  display: none;
}
.store-empty.is-visible { display: block; }
.store-empty h3 {
  font-family: var(--f-display);
  font-size: 24px;
  margin-bottom: 8px;
}
.store-empty p { color: var(--muted); max-width: 42ch; margin: 0 auto; }

@media (max-width: 900px) {
  .store-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; }
  .store-body__topbar { grid-template-columns: 1fr; }
}

/* =========================================================
   PRODUCT DETAIL — gallery + spec
   ========================================================= */
.pagetop--slim { padding: clamp(32px, 5vw, 56px) 0 0; }
.crumbs__current { color: var(--muted); }
.crumbs a { color: inherit; }
.crumbs a:hover { color: var(--accent); }

.section--pd { padding-top: clamp(28px, 4vw, 44px); }

.pd {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
@media (max-width: 960px) { .pd { grid-template-columns: 1fr; } }

.pd__gallery { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 14px; }
@media (max-width: 960px) { .pd__gallery { position: static; } }

.pd__stage {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.pd__stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.pd__stage:hover img { transform: scale(1.02); }
.pd__stage-empty {
  display: grid; place-items: center; width: 100%; height: 100%;
  color: var(--muted-2); font-family: var(--f-display); letter-spacing: -0.01em;
}
.pd__badges {
  position: absolute; left: 14px; top: 14px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.pd__badge {
  background: var(--text); color: var(--bg);
  font-size: 11px; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 999px; font-weight: 600;
}
.pd__badge--soft {
  background: var(--surface); color: var(--text);
  border: 1px solid var(--line);
}

.pd__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
  gap: 10px;
}
.pd__thumb {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  padding: 0;
  background: var(--surface);
  cursor: pointer;
  transition: border-color .2s, transform .2s;
}
.pd__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd__thumb:hover { border-color: var(--accent); transform: translateY(-2px); }
.pd__thumb.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-soft);
}

.pd__info { display: flex; flex-direction: column; gap: 18px; }
.pd__eyebrow {
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.pd__title {
  font-family: var(--f-display);
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.pd__fitment { color: var(--muted); font-size: 15px; }
.pd__fitment b { color: var(--text); font-weight: 600; }
.pd__years { color: var(--muted-2); }

.pd__price-row {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 14px;
  padding: 22px 0 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pd__price-amount {
  font-family: var(--f-display);
  font-size: clamp(34px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  display: block;
  line-height: 1;
}
.pd__price-note { font-size: 12.5px; color: var(--muted-2); }
.pd__stock {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  color: var(--text);
}
.pd__stock-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2E7D32;
  box-shadow: 0 0 0 4px rgba(46,125,50,.15);
}
.pd__stock--out .pd__stock-dot { background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }

.pd__desc { color: var(--text); font-size: 15.5px; line-height: 1.7; }
.pd__desc p + p { margin-top: 10px; }

.pd__specs {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 10px 22px;
  font-size: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line-soft);
}
.pd__specs dt { color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: 11.5px; align-self: center; }
.pd__specs dd { color: var(--text); font-weight: 500; }

.pd__buy {
  display: flex; gap: 12px; align-items: stretch;
  flex-wrap: wrap;
}
.pd__qty {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  overflow: hidden;
}
.pd__qty-btn {
  width: 44px; height: 48px;
  font-size: 18px; font-weight: 600;
  color: var(--text);
  transition: background .15s;
}
.pd__qty-btn:hover { background: var(--surface-2); }
.pd__qty input {
  width: 56px; height: 48px;
  border: none; outline: none;
  text-align: center; font: inherit; font-weight: 600;
  background: transparent;
  -moz-appearance: textfield;
}
.pd__qty input::-webkit-outer-spin-button,
.pd__qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.pd__cta {
  padding: 14px 28px;
  font-size: 15px;
}
.pd__cta[disabled] { opacity: .5; cursor: not-allowed; }

.pd__reassure {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 8px;
  color: var(--muted);
  font-size: 14px;
}
.pd__reassure li { display: flex; align-items: center; gap: 10px; }
.pd__reassure span {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  font-size: 12px; font-weight: 700;
}

.pd__related-head { margin-top: clamp(60px, 8vw, 100px); }

/* =========================================================
   CART — v2
   ========================================================= */
.cart-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 960px) { .cart-wrap { grid-template-columns: 1fr; } }

.cart-title { margin-bottom: 8px; }
.cart-title em { color: var(--accent); font-style: italic; font-weight: 500; }
.cart-sub { color: var(--muted); margin-bottom: 28px; }

.cart-lines {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.cart-line {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto auto auto;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line-soft);
}
.cart-line:last-child { border-bottom: none; }
.cart-line__vis {
  width: 96px; height: 96px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--line-soft);
}
.cart-line__vis img { width: 100%; height: 100%; object-fit: cover; }
.cart-line__vis-placeholder {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  color: var(--muted-2); font-family: var(--f-display);
  font-size: 22px;
}
.cart-line__title { font-weight: 600; font-size: 16px; }
.cart-line__title a { color: inherit; }
.cart-line__title a:hover { color: var(--accent); }
.cart-line__meta { font-size: 13px; color: var(--muted); margin-top: 4px; }
.cart-line__price { font-weight: 600; font-variant-numeric: tabular-nums; }

.cart-qty {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--bg);
}
.cart-qty input {
  width: 48px; height: 40px;
  border: none; outline: none;
  text-align: center; font: inherit; font-weight: 600;
  background: transparent;
}
.cart-qty button {
  width: 40px; height: 40px; font-size: 16px; font-weight: 600;
}
.cart-qty button:hover { background: var(--surface-2); color: var(--accent); }

.cart-line__remove {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--surface);
  transition: all .15s;
}
.cart-line__remove:hover { border-color: var(--accent); color: var(--accent); background: var(--bg); }

.cart-line__stacked { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }

@media (max-width: 720px) {
  .cart-line {
    grid-template-columns: 72px 1fr;
    grid-template-areas:
      "vis title"
      "vis meta"
      "qty price"
      "qty remove";
    row-gap: 8px;
  }
  .cart-line__vis { width: 72px; height: 72px; grid-area: vis; }
  .cart-line__body { grid-area: title / title / meta / meta; }
  .cart-line__qty-cell { grid-area: qty; }
  .cart-line__price { grid-area: price; justify-self: end; }
  .cart-line__remove-cell { grid-area: remove; justify-self: end; }
}

.cart-summary {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: sticky; top: 90px;
  box-shadow: var(--shadow);
}
@media (max-width: 960px) { .cart-summary { position: static; } }

.cart-summary h3 {
  font-family: var(--f-display);
  font-size: 22px;
  margin-bottom: 18px;
}
.cart-summary__row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0;
  font-size: 14.5px;
  border-bottom: 1px dashed var(--line-soft);
}
.cart-summary__row:last-of-type { border-bottom: none; }
.cart-summary__row b { font-variant-numeric: tabular-nums; }
.cart-summary__total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  margin-top: 12px;
}
.cart-summary__total-label { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }
.cart-summary__total-amount {
  font-family: var(--f-display); font-size: 32px; font-weight: 700; letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.cart-summary__pending { font-size: 12.5px; color: var(--muted-2); margin-top: 2px; }

.cart-summary__note {
  margin: 18px 0 20px;
  padding: 14px 16px;
  background: var(--surface-2);
  border-radius: 12px;
  font-size: 13px; color: var(--muted); line-height: 1.55;
}
.cart-summary__note b { color: var(--text); }

.cart-summary .btn { width: 100%; justify-content: center; margin-top: 6px; padding: 14px 20px; }
.cart-summary .btn--ghost { margin-top: 10px; }

.cart-empty {
  text-align: center;
  padding: clamp(60px, 10vw, 120px) 20px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.cart-empty h2 { font-family: var(--f-display); font-size: 36px; margin-bottom: 10px; }
.cart-empty p { color: var(--muted); margin-bottom: 22px; }

/* =========================================================
   CHECKOUT — v2
   ========================================================= */
.co-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 960px) { .co-wrap { grid-template-columns: 1fr; } }

.co-stepper {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
}
.co-stepper__step {
  display: inline-flex; align-items: center; gap: 8px;
}
.co-stepper__step span {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-grid; place-items: center;
  background: var(--surface-2); color: var(--muted);
  font-size: 11.5px; font-weight: 700;
}
.co-stepper__step.is-done span { background: var(--text); color: var(--bg); }
.co-stepper__step.is-active span { background: var(--accent); color: var(--surface); }
.co-stepper__step.is-active { color: var(--text); }
.co-stepper__bar { flex: 0 0 30px; height: 1px; background: var(--line); }

.co-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow);
}
.co-card + .co-card { margin-top: 18px; }
.co-card__head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 18px;
}
.co-card__head h3 { font-family: var(--f-display); font-size: 22px; }
.co-card__head small { color: var(--muted-2); font-size: 12.5px; }

.co-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) { .co-grid { grid-template-columns: 1fr; } }
.co-grid .field--full { grid-column: 1 / -1; }

.field label {
  display: block; font-size: 12.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted); margin-bottom: 6px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  color: var(--text);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field textarea { min-height: 96px; resize: vertical; }
.field .errorlist { color: var(--accent-deep); font-size: 12.5px; margin-top: 4px; list-style: none; padding: 0; }

.co-pay {
  display: flex; align-items: center; gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-2);
}
.co-pay__dot {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--text); color: var(--bg); font-weight: 700;
}
.co-pay__title { font-weight: 600; }
.co-pay__sub { color: var(--muted); font-size: 13px; margin-top: 2px; }

.co-summary {
  position: sticky; top: 90px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
@media (max-width: 960px) { .co-summary { position: static; } }
.co-summary h3 { font-family: var(--f-display); font-size: 22px; margin-bottom: 18px; }
.co-summary__line {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line-soft);
  align-items: center;
}
.co-summary__qty {
  font-size: 12.5px; font-weight: 700;
  background: var(--text); color: var(--bg);
  display: inline-grid; place-items: center;
  width: 32px; height: 32px;
  border-radius: 10px;
}
.co-summary__name { font-weight: 600; font-size: 14px; }
.co-summary__sub { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.co-summary__amount { font-weight: 600; font-variant-numeric: tabular-nums; }
.co-summary__totals { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.co-summary__totals .row {
  display: flex; justify-content: space-between; padding: 6px 0;
  color: var(--muted); font-size: 13.5px;
}
.co-summary__totals .row.grand {
  font-family: var(--f-display);
  font-size: 24px; color: var(--text); font-weight: 700;
  padding-top: 14px; margin-top: 8px;
  border-top: 1px solid var(--line);
}
.co-summary__note {
  margin-top: 16px; padding: 14px;
  background: var(--surface-2);
  border-radius: 12px;
  font-size: 12.5px; color: var(--muted); line-height: 1.55;
}
.co-submit { width: 100%; justify-content: center; padding: 16px 22px; margin-top: 22px; font-size: 15px; }

/* =========================================================
   ORDER CONFIRMATION — v2
   ========================================================= */
.oc-hero {
  text-align: center;
  padding: clamp(50px, 7vw, 80px) 24px;
  background:
    radial-gradient(60% 90% at 50% 0%, var(--accent-soft), transparent 70%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.oc-check {
  width: 74px; height: 74px; border-radius: 50%;
  margin: 0 auto 22px;
  display: grid; place-items: center;
  background: var(--text); color: var(--bg);
  font-size: 32px;
  box-shadow: 0 0 0 10px var(--accent-soft);
  animation: pulse-dot 2s infinite;
}
.oc-hero h1 {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 10px;
}
.oc-hero h1 em { color: var(--accent); font-style: italic; font-weight: 500; }
.oc-hero p { color: var(--muted); max-width: 54ch; margin: 0 auto 10px; }
.oc-ref {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 14px;
  padding: 10px 16px;
  background: var(--bg);
  border: 1px dashed var(--line);
  border-radius: 999px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12.5px;
  color: var(--text);
}
.oc-ref b { color: var(--muted); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; font-size: 10.5px; font-family: var(--f-body); }

.oc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.oc-tile {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.oc-tile__label { font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 8px; }
.oc-tile__value { font-weight: 600; color: var(--text); font-size: 15px; white-space: pre-line; }

.oc-items {
  margin-top: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.oc-items h3 {
  font-family: var(--f-display);
  font-size: 22px;
  padding: 22px 24px 0;
  margin-bottom: 14px;
}
.oc-items__row {
  display: grid;
  grid-template-columns: 40px 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 14px 24px;
  border-top: 1px solid var(--line-soft);
  font-size: 14.5px;
}
.oc-items__row:first-of-type { border-top: 1px solid var(--line); }
.oc-items__qty {
  display: inline-grid; place-items: center;
  width: 32px; height: 32px; border-radius: 10px;
  background: var(--text); color: var(--bg);
  font-size: 12.5px; font-weight: 700;
}
.oc-items__name { font-weight: 600; }
.oc-items__unit { color: var(--muted); font-size: 13px; font-variant-numeric: tabular-nums; }
.oc-items__total { font-weight: 700; font-variant-numeric: tabular-nums; }
.oc-items__totals {
  padding: 18px 24px 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: baseline;
  background: var(--surface-2);
}
.oc-items__totals-label { font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.oc-items__totals-amount {
  font-family: var(--f-display); font-size: 32px; font-weight: 700; letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.oc-next {
  margin-top: 28px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.oc-next h3 { font-family: var(--f-display); font-size: 22px; margin-bottom: 14px; }
.oc-steps { list-style: none; padding: 0; display: grid; gap: 14px; }
.oc-steps li {
  display: grid; grid-template-columns: 28px 1fr; gap: 14px;
  align-items: flex-start;
}
.oc-steps li b {
  display: inline-grid; place-items: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent); color: var(--surface);
  font-size: 12.5px; font-weight: 700;
}
.oc-steps li p { color: var(--muted); font-size: 14px; }
.oc-steps li p strong { color: var(--text); }

.oc-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 28px; justify-content: center;
}

