/* ===========================================================
   d35_agro — design system
   Dark / brass-gold / condensed-display rebuild
   Display: Oswald · Body: Inter
   =========================================================== */

:root {
  --bg:        #100D09;
  --bg-2:      #15110B;
  --panel:     #1B1610;
  --panel-2:   #241E15;
  --line:      #2E2719;
  --line-2:    #423A28;

  --gold:      #C3A058;
  --gold-2:    #DDC389;
  --gold-deep: #9C7C3A;

  --head:      #F4F0E6;
  --text:      #B6AE9C;
  --muted:     #837B69;
  --white:     #FBF9F2;

  --container: 1280px;
  --gutter: 24px;

  --f-display: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  --f-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --shadow: 0 24px 60px rgba(0,0,0,0.55);
  --ease: cubic-bezier(.4,0,.2,1);
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: block;
  src: url('/fonts/inter.woff2') format('woff2');
}
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 300 700;
  font-display: block;
  src: url('/fonts/oswald.woff2') format('woff2');
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--head);
  margin: 0 0 .5em;
  line-height: 1.06;
  letter-spacing: .01em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.6rem, 5.4vw, 4.6rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 3.8vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); }
h4 { font-size: 1.15rem; }
p { margin: 0 0 1em; }
::selection { background: var(--gold); color: #16120A; }

/* ---------- layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding: clamp(64px, 8.5vw, 130px) 0; }
.section--tight { padding: clamp(44px, 5.5vw, 80px) 0; }
.section--alt { background: var(--bg-2); }
.section--panel { background: var(--panel); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.eyebrow--plain::before { display: none; }

.section-head { max-width: 640px; margin-bottom: 54px; }
.section-head h2 { margin: 0; }
.section-head p { margin-top: 16px; color: var(--text); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }

/* split header: heading left, paragraph right */
.section-head--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px 56px;
  align-items: end;
}
.section-head--split p { margin: 0; padding-bottom: 6px; }
@media (max-width: 820px) {
  .section-head--split { grid-template-columns: 1fr; gap: 16px; align-items: start; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 15px 30px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  line-height: 1;
  border: 1px solid transparent;
  transition: background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary { background: var(--gold); color: #16120A; }
.btn--primary:hover { background: var(--gold-2); }
.btn--ghost { background: transparent; border-color: var(--line-2); color: var(--head); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--light { background: var(--white); color: #16120A; }
.btn--light:hover { background: var(--gold-2); }
.btn--lg { padding: 18px 40px; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn__arrow { font-size: .82em; transition: transform .18s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--gold);
  transition: gap .18s var(--ease), color .18s var(--ease);
}
.link-arrow i { font-size: .8em; }
.link-arrow:hover { gap: 14px; color: var(--gold-2); }

/* ===========================================================
   HEADER / NAV
   =========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(16,13,9,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.site-header--transparent {
  position: absolute;
  left: 0; right: 0; top: 0;
  background: transparent;
  border-bottom-color: transparent;
}
.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 84px;
}
.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 56px; width: auto; object-fit: contain; }

.nav__menu {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  justify-self: center;
}
.nav__link {
  position: relative;
  padding: 10px 16px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text);
  transition: color .16s var(--ease);
}
.nav__link:hover { color: var(--head); }
.nav__link.is-active { color: var(--gold); }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 2px;
  height: 2px;
  background: var(--gold);
}

/* dropdown */
.nav__drop { position: relative; }
.nav__drop-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text);
  transition: color .16s var(--ease);
}
.nav__drop-toggle:hover, .nav__drop:focus-within .nav__drop-toggle { color: var(--head); }
.nav__drop-toggle.is-active { color: var(--gold); }
.nav__drop-arrow { font-size: .6rem; transition: transform .2s var(--ease); }
.nav__drop:hover .nav__drop-arrow,
.nav__drop:focus-within .nav__drop-arrow { transform: rotate(180deg); }
.nav__drop-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 190px;
  background: var(--panel);
  border: 1px solid var(--line-2);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
  box-shadow: var(--shadow);
}
.nav__drop-panel::before {
  content: ""; position: absolute; top: -8px; left: 0; right: 0; height: 8px;
}
.nav__drop:hover .nav__drop-panel,
.nav__drop:focus-within .nav__drop-panel {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__drop-link {
  display: block;
  padding: 11px 16px;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text);
  transition: background .15s var(--ease), color .15s var(--ease);
}
.nav__drop-link:hover { background: var(--panel-2); color: var(--head); }
.nav__drop-link.is-active { color: var(--gold); }

.nav__cta { display: inline-flex; align-items: center; gap: 22px; justify-self: end; }
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .04em;
  color: var(--head);
  white-space: nowrap;
}
.nav__phone i { color: var(--gold); font-size: .9rem; }
.nav__phone:hover { color: var(--gold); }

/* mobile actions */
.nav__mob-actions { display: none; align-items: center; gap: 6px; justify-self: end; }
.nav__mob-phone {
  display: flex; align-items: center;
  width: 42px; height: 42px;
  justify-content: center;
  color: var(--head);
}
.nav__mob-phone:hover { color: var(--gold); }
.nav__burger {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 4px 10px 12px;
  color: var(--head);
}
.nav__burger-label {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.nav__burger-lines { display: flex; flex-direction: column; gap: 5px; }
.nav__burger-lines span {
  display: block; width: 24px; height: 2px;
  background: currentColor;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav__burger.is-open .nav__burger-lines span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open .nav__burger-lines span:nth-child(2) { opacity: 0; }
.nav__burger.is-open .nav__burger-lines span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.nav__drawer {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 199;
  display: flex;
  flex-direction: column;
  padding: 110px 24px 40px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.nav__drawer.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav__drawer-nav { display: flex; flex-direction: column; }
.nav__dlink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 2px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  transition: color .18s var(--ease), padding-left .18s var(--ease);
}
.nav__dlink::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free"; font-weight: 900;
  font-size: .8rem; color: var(--gold);
  opacity: 0; transform: translateX(-6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease);
}
.nav__dlink:hover, .nav__dlink--active { color: var(--head); padding-left: 8px; }
.nav__dlink:hover::after, .nav__dlink--active::after { opacity: 1; transform: translateX(0); }
.nav__dlink--active { color: var(--gold); }
.nav__drawer-footer { margin-top: auto; padding-top: 32px; }
.nav__drawer-phone {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-display); font-size: 1.4rem; font-weight: 500;
  color: var(--gold); margin-bottom: 20px;
}
.nav__drawer-cta { width: 100%; }

@media (max-width: 1080px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__mob-actions { display: flex; }
  .nav { grid-template-columns: auto 1fr; min-height: 72px; }
  .brand__logo { height: 46px; }
}
@media (max-width: 480px) {
  .nav__burger-label { display: none; }
  .nav__burger { padding: 10px 4px; }
}

/* ===========================================================
   HERO (home)
   =========================================================== */
.hero {
  position: relative;
  min-height: clamp(620px, 94vh, 940px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--head);
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media video, .hero__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(16,13,9,0.78) 0%, rgba(16,13,9,0.34) 42%, rgba(16,13,9,0.92) 100%),
    linear-gradient(90deg, rgba(16,13,9,0.86) 0%, rgba(16,13,9,0.30) 60%, transparent 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: clamp(80px, 12vw, 140px);
  padding-bottom: 40px;
}
.hero__eyebrow {
  font-family: var(--f-body);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
}
.hero__title {
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: .96;
  font-weight: 700;
  color: var(--head);
  margin: 0 0 26px;
  max-width: 16ch;
}
.hero__title em { font-style: normal; color: var(--gold); }
.hero__lead {
  font-size: 1.12rem;
  color: rgba(244,240,230,0.82);
  max-width: 52ch;
  margin-bottom: 38px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__foot {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(244,240,230,0.14);
  margin-top: clamp(40px, 8vw, 90px);
}
.hero__foot-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
}
.hero__index {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-display);
  font-size: .9rem;
  letter-spacing: .12em;
  color: rgba(244,240,230,0.6);
}
.hero__index b { color: var(--gold); font-weight: 600; }
.hero__index span { width: 46px; height: 1px; background: rgba(244,240,230,0.3); }
.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(244,240,230,0.7);
}
.hero__scroll-ring {
  width: 38px; height: 38px;
  border: 1px solid rgba(244,240,230,0.3);
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--gold);
}
.hero__scroll-ring i { animation: scrollPulse 1.8s var(--ease) infinite; }
@keyframes scrollPulse {
  0%,100% { transform: translateY(-3px); opacity: .5; }
  50% { transform: translateY(3px); opacity: 1; }
}
@media (max-width: 620px) {
  .hero__scroll span { display: none; }
}

/* ---------- page hero (subpages) ---------- */
.page-hero {
  position: relative;
  padding: clamp(140px, 19vw, 220px) 0 clamp(56px, 8vw, 96px);
  overflow: hidden;
  color: var(--head);
  background: var(--bg-2);
}
.page-hero__media { position: absolute; inset: 0; z-index: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .26; }
.page-hero::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(16,13,9,0.55) 0%, rgba(16,13,9,0.92) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.crumbs {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--muted);
  margin-bottom: 20px;
}
.crumbs a { color: var(--gold); }
.crumbs a:hover { color: var(--gold-2); }
.crumbs span { color: var(--line-2); }
.page-hero__title { margin: 0; max-width: 20ch; }
.page-hero__lead {
  margin: 18px 0 0;
  max-width: 58ch;
  font-size: 1.08rem;
  color: var(--text);
}

/* ===========================================================
   FEATURE ROW
   =========================================================== */
.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.feature {
  padding: 40px clamp(20px, 2.4vw, 36px);
  border-left: 1px solid var(--line);
}
.feature:first-child { border-left: none; }
.feature__icon {
  width: 52px; height: 52px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.feature__title {
  font-size: 1.1rem;
  margin: 0 0 8px;
  color: var(--head);
}
.feature__text { font-size: .92rem; margin: 0; color: var(--text); }
@media (max-width: 880px) {
  .feature-row { grid-template-columns: 1fr 1fr; }
  .feature:nth-child(3) { border-left: none; }
  .feature:nth-child(n+3) { border-top: 1px solid var(--line); }
}
@media (max-width: 520px) {
  .feature-row { grid-template-columns: 1fr; }
  .feature { border-left: none; }
  .feature:nth-child(n+2) { border-top: 1px solid var(--line); }
}

/* ===========================================================
   MARQUEE
   =========================================================== */
.marquee {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  animation: marquee 34s linear infinite;
  will-change: transform;
}
.marquee__track span {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
}
.marquee__dot { color: var(--gold) !important; font-size: .7rem !important; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }
.marquee--hp { margin-top: 84px; }
@media (max-width: 1080px) { .marquee--hp { margin-top: 72px; } }

/* ===========================================================
   CATEGORY TABS
   =========================================================== */
.cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 38px;
}
.cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid var(--line-2);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text);
  transition: background .16s var(--ease), color .16s var(--ease), border-color .16s var(--ease);
}
.cat-tab i { font-size: .95rem; color: var(--gold); transition: color .16s var(--ease); }
.cat-tab:hover { border-color: var(--gold); color: var(--head); }
.cat-tab.is-active { background: var(--gold); border-color: var(--gold); color: #16120A; }
.cat-tab.is-active i { color: #16120A; }

/* ===========================================================
   EQUIPMENT GRID + CARD  (class names shared with fetchCars.js)
   =========================================================== */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(286px, 1fr));
  gap: 22px;
}
.equipment-card {
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--line);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.equipment-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.equipment-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-2);
}
.equipment-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.equipment-card:hover .equipment-card__media img { transform: scale(1.05); }
.equipment-card__sold {
  position: absolute; top: 0; left: 0;
  padding: 7px 14px;
  background: var(--gold);
  color: #16120A;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .12em;
}
.equipment-card__body { display: flex; flex-direction: column; flex: 1; padding: 22px; }
.equipment-card__meta {
  display: flex;
  justify-content: space-between;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.equipment-card__title {
  font-size: 1.2rem;
  margin: 0 0 8px;
  color: var(--head);
  line-height: 1.12;
}
.equipment-card__stock { font-size: .82rem; color: var(--muted); margin-bottom: 4px; }
.equipment-card__transmission {
  display: flex; align-items: center; gap: 7px;
  font-size: .85rem; color: var(--text);
}
.equipment-card__transmission i { color: var(--gold); font-size: .8rem; }
.equipment-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
}
.equipment-card__price {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}
.equipment-card__price .strike {
  display: block;
  font-size: .85rem;
  font-weight: 400;
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 2px;
}
.equipment-card__cta {
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center; justify-content: center;
  border: 1px solid var(--line-2);
  color: var(--gold);
  transition: background .16s var(--ease), color .16s var(--ease), border-color .16s var(--ease);
}
.equipment-card:hover .equipment-card__cta { background: var(--gold); border-color: var(--gold); color: #16120A; }

.equip-grid-foot { margin-top: 48px; text-align: center; }

/* ===========================================================
   SECTORS
   =========================================================== */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}
.sector-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  isolation: isolate;
}
.sector-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.sector-card:hover img { transform: scale(1.06); }
.sector-card::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 38%, rgba(16,13,9,0.94) 100%);
}
.sector-card__caption {
  position: absolute;
  z-index: 2;
  left: 22px; right: 22px; bottom: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}
.sector-card__caption h3 { margin: 0; font-size: 1.2rem; color: var(--head); }
.sector-card__caption > div span {
  display: block;
  font-size: .72rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 6px;
  font-family: var(--f-body);
}
.sector-card__arrow {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--gold);
  transition: background .16s var(--ease), color .16s var(--ease);
}
.sector-card:hover .sector-card__arrow { background: var(--gold); color: #16120A; }

/* ===========================================================
   STATS
   =========================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}
.stat {
  padding: clamp(28px, 3.4vw, 46px);
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: none; }
.stat__num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 4.6vw, 3.8rem);
  line-height: 1;
  color: var(--gold);
}
.stat__label {
  margin-top: 10px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text);
}
@media (max-width: 720px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: none; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
}
@media (max-width: 420px) {
  .stats { grid-template-columns: 1fr; }
  .stat { border-left: none; }
  .stat:nth-child(n+2) { border-top: 1px solid var(--line); }
}

/* ===========================================================
   PROCESS STEPS
   =========================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 32px 26px;
  transition: border-color .2s var(--ease);
}
.step:hover { border-color: var(--line-2); }
.step__num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--line-2);
  margin-bottom: 18px;
}
.step__icon {
  width: 48px; height: 48px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
}
.step__title { font-size: 1.12rem; margin: 0 0 8px; color: var(--head); }
.step__text { font-size: .9rem; margin: 0; color: var(--text); }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ===========================================================
   TESTIMONIALS
   =========================================================== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
}
.testimonial {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
}
.testimonial__stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 16px; }
.testimonial__quote {
  font-size: 1.02rem;
  color: var(--head);
  margin: 0 0 24px;
  flex: 1;
}
.testimonial__author { display: flex; align-items: center; gap: 13px; }
.testimonial__avatar {
  width: 50px; height: 50px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  filter: grayscale(1);
}
.testimonial__name {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--head);
}
.testimonial__role { font-size: .82rem; color: var(--muted); }

/* ===========================================================
   CTA BAND
   =========================================================== */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line-2);
  padding: clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 28px 40px;
  align-items: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(195,160,88,0.22) 0%, transparent 68%);
  pointer-events: none;
}
.cta-band__text { position: relative; }
.cta-band__text h2 { margin: 0 0 8px; }
.cta-band__text p { margin: 0; color: var(--text); max-width: 52ch; }
.cta-band__actions { position: relative; display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 740px) { .cta-band { grid-template-columns: 1fr; } }

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding-top: clamp(56px, 7vw, 90px);
  overflow: hidden;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 44px;
  padding-bottom: 50px;
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { color: var(--muted); max-width: 34ch; margin: 0 0 20px; }
.site-footer h4 {
  font-size: .82rem;
  letter-spacing: .16em;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a {
  font-size: .95rem;
  color: var(--text);
  transition: color .15s var(--ease), padding-left .15s var(--ease);
}
.footer-col a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact__item { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; }
.footer-contact__item i { color: var(--gold); margin-top: 5px; width: 16px; text-align: center; }
.footer-contact__item a:hover { color: var(--gold); }
.footer-newsletter { display: flex; gap: 0; margin-top: 6px; }
.footer-newsletter input {
  flex: 1; min-width: 0;
  padding: 13px 15px;
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-right: none;
  color: var(--head);
  font-family: inherit;
  font-size: .9rem;
}
.footer-newsletter input::placeholder { color: var(--muted); }
.footer-newsletter input:focus { outline: none; border-color: var(--gold); }
.footer-newsletter button {
  padding: 13px 22px;
  background: var(--gold);
  color: #16120A;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: background .16s var(--ease);
}
.footer-newsletter button:hover { background: var(--gold-2); }
.site-footer__giant {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  font-size: clamp(3.4rem, 16vw, 14rem);
  line-height: .8;
  color: transparent;
  -webkit-text-stroke: 1px var(--line-2);
  margin: 14px 0;
  user-select: none;
  letter-spacing: .02em;
}
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  font-size: .82rem;
  color: var(--muted);
}
@media (max-width: 860px) {
  .site-footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .site-footer__top { grid-template-columns: 1fr; }
}

/* ===========================================================
   FORMS
   =========================================================== */
.form-card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: clamp(26px, 4vw, 46px);
}
.form-card > h2 { margin: 0 0 8px; }
.form-card__intro { color: var(--text); margin-bottom: 26px; }
.form-card h3 {
  font-size: .82rem;
  letter-spacing: .14em;
  color: var(--gold);
  margin: 30px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.form-card h3:first-of-type { margin-top: 0; }
.form-row { display: grid; gap: 16px; }
.form-row--2 { grid-template-columns: 1fr 1fr; }
.form-row--3 { grid-template-columns: 1fr 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label {
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
}
.field input,
.field select,
.field textarea {
  padding: 14px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  color: var(--head);
  font-family: inherit;
  font-size: .95rem;
  transition: border-color .15s var(--ease), background .15s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--panel);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%23C3A058' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.field select option { background: var(--panel); color: var(--head); }
.field textarea { resize: vertical; min-height: 130px; }
.field--full { grid-column: 1 / -1; }
.field--grow { flex: 1; }
.form-submit { margin-top: 22px; }
@media (max-width: 600px) {
  .form-row--2, .form-row--3 { grid-template-columns: 1fr; }
}

/* ===========================================================
   CAR DETAIL
   =========================================================== */
.detail__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 34px;
}
.detail__head h1 { margin: 0; font-size: clamp(2rem, 4vw, 3.2rem); }
.detail__sold {
  padding: 8px 18px;
  background: var(--gold);
  color: #16120A;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .12em;
}
.detail {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 36px;
  align-items: start;
}
@media (max-width: 980px) { .detail { grid-template-columns: 1fr; } }
.gallery { display: flex; flex-direction: column; gap: 12px; }
.gallery__main {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
  cursor: zoom-in;
}
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 10px;
}
.gallery__thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
  opacity: .55;
  transition: opacity .16s var(--ease), border-color .16s var(--ease);
}
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumb:hover { opacity: .85; }
.gallery__thumb.is-active { opacity: 1; border-color: var(--gold); }

.detail__aside { display: flex; flex-direction: column; gap: 16px; }
.specs { background: var(--panel); border: 1px solid var(--line); padding: 28px; }
.specs__price {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 22px;
}
.specs__price .strike {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--muted);
  text-decoration: line-through;
  margin-right: 10px;
}
.specs__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-size: .92rem;
}
.specs__row:first-of-type { border-top: none; }
.specs__row dt { color: var(--muted); margin: 0; }
.specs__row dd {
  margin: 0;
  color: var(--head);
  font-weight: 500;
  text-align: right;
  font-family: var(--f-display);
  letter-spacing: .03em;
  text-transform: uppercase;
}
.detail__desc { margin-top: 44px; max-width: 820px; }
.detail__desc h2 { margin-bottom: 14px; }
.detail__desc :where(p, li) { color: var(--text); }

@media (max-width: 980px) {
  .detail__aside { position: static; }
}

/* ===========================================================
   PROJECTS
   =========================================================== */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 22px;
}
.project-card {
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--line);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.project-card:hover { border-color: var(--line-2); transform: translateY(-4px); }
.project-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-2);
}
.project-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.project-card:hover .project-card__media img { transform: scale(1.05); }
.project-card__tag {
  position: absolute;
  top: 0; left: 0;
  padding: 8px 15px;
  background: rgba(16,13,9,0.86);
  border-right: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  color: var(--gold);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.project-card__body { display: flex; flex-direction: column; flex: 1; padding: 26px; }
.project-card__meta {
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.project-card__meta i { color: var(--gold); }
.project-card__title { font-size: 1.3rem; margin: 0 0 12px; color: var(--head); }
.project-card__text { font-size: .92rem; margin: 0 0 22px; color: var(--text); }
.project-card__foot { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }

/* ===========================================================
   SERVICES
   =========================================================== */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
}
.service-item {
  padding: clamp(26px, 3.4vw, 44px);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  transition: background .2s var(--ease);
}
.service-item:nth-child(-n+2) { border-top: none; }
.service-item:nth-child(odd) { border-left: none; }
.service-item:hover { background: var(--panel); }
.service-item__icon {
  width: 58px; height: 58px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.service-item__title { font-size: 1.3rem; margin: 0 0 10px; color: var(--head); }
.service-item__text { font-size: .95rem; margin: 0 0 20px; color: var(--text); }
@media (max-width: 720px) {
  .service-grid { grid-template-columns: 1fr; }
  .service-item { border-left: none; border-top: 1px solid var(--line); }
  .service-item:nth-child(2) { border-top: 1px solid var(--line); }
  .service-item:first-child { border-top: none; }
}

/* feature cards (perks / values – generic) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.icon-card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 32px 28px;
  transition: border-color .2s var(--ease);
}
.icon-card:hover { border-color: var(--line-2); }
.icon-card__icon {
  width: 54px; height: 54px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.icon-card h3 { font-size: 1.15rem; margin: 0 0 8px; }
.icon-card p { margin: 0; font-size: .92rem; color: var(--text); }

/* ===========================================================
   ABOUT
   =========================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}
.split__media { position: relative; }
.split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
}
.split__media--tall img { aspect-ratio: 3 / 4; }
.split__body p { color: var(--text); }
.check-list { display: flex; flex-direction: column; gap: 13px; margin-top: 26px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--head);
  font-size: .98rem;
}
.check-list li i { color: var(--gold); margin-top: 5px; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split__media--reorder { order: -1; }
}

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mv-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  padding: 34px 30px;
}
.mv-card h3 { font-size: 1.25rem; margin: 0 0 12px; }
.mv-card p { margin: 0; color: var(--text); }
@media (max-width: 620px) { .mv-grid { grid-template-columns: 1fr; } }

.equip-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.equip-cat {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 18px 20px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text);
  transition: border-color .18s var(--ease), color .18s var(--ease);
}
.equip-cat i { color: var(--gold); width: 22px; text-align: center; }
.equip-cat:hover { border-color: var(--gold); color: var(--head); }
@media (max-width: 760px) { .equip-cats { grid-template-columns: 1fr 1fr; } }
@media (max-width: 440px) { .equip-cats { grid-template-columns: 1fr; } }

/* ===========================================================
   CONTACT
   =========================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.info-card {
  display: flex;
  gap: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 24px;
  transition: border-color .18s var(--ease);
}
.info-card:hover { border-color: var(--line-2); }
.info-card__icon {
  width: 50px; height: 50px;
  flex-shrink: 0;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.05rem;
}
.info-card__label {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.info-card__value {
  display: block;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--head);
  letter-spacing: .02em;
  word-break: break-word;
}
.info-card__value--sm { font-size: 1.02rem; }
.info-card__sub { margin: 4px 0 0; font-size: .85rem; color: var(--muted); }
.contact-hours {
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  padding: 24px;
}
.contact-hours__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--head);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 9px;
}
.contact-hours__title i { color: var(--gold); }
.contact-hours__row {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: .9rem;
}
.contact-hours__row span:first-child { color: var(--text); }
.contact-hours__row span:last-child { color: var(--head); font-weight: 500; }
.contact-hours__closed { color: var(--muted) !important; }
.contact-map {
  margin-top: 28px;
  border: 1px solid var(--line);
  overflow: hidden;
  line-height: 0;
}
.contact-map iframe { width: 100%; display: block; filter: grayscale(1) invert(0.9) contrast(0.85); }

/* ===========================================================
   LEGAL
   =========================================================== */
.legal-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 44px;
  align-items: start;
}
.legal-nav { position: sticky; top: 104px; border: 1px solid var(--line); }
.legal-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  transition: background .15s var(--ease), color .15s var(--ease);
}
.legal-nav a:last-child { border-bottom: none; }
.legal-nav a:hover { background: var(--panel); color: var(--head); }
.legal-nav a.is-active { background: var(--panel); color: var(--gold); }
.legal-nav a.is-active::before {
  content: ""; position: absolute; left: 0;
  width: 2px; height: 100%; background: var(--gold);
}
.legal-nav a { position: relative; }
.prose { max-width: 800px; }
.prose h2 {
  font-size: 1.4rem;
  margin: 1.7em 0 .5em;
  padding-top: 1.2em;
  border-top: 1px solid var(--line);
}
.prose h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.prose h3 { font-size: 1.1rem; margin: 1.4em 0 .5em; }
.prose p, .prose li { color: var(--text); }
.prose ul { margin: 0 0 1em; padding-left: 22px; list-style: disc; }
.prose li { margin-bottom: .5em; }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 820px) {
  .legal-layout { grid-template-columns: 1fr; gap: 28px; }
  .legal-nav { position: static; display: flex; flex-wrap: wrap; }
  .legal-nav a { flex: 1; border-bottom: none; border-right: 1px solid var(--line); justify-content: center; }
  .legal-nav a:last-child { border-right: none; }
}

/* ===========================================================
   FAQ + SHIP TYPES
   =========================================================== */
.faq-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 767px) { .faq-list { grid-template-columns: 1fr; } }
.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 26px 28px;
}
.faq-item__q {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--head);
  margin-bottom: 10px;
}
.faq-item__q i { color: var(--gold); font-size: .9rem; margin-top: 5px; }
.faq-item__a { margin: 0; padding-left: 24px; color: var(--text); font-size: .95rem; }

.ship-types { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ship-type {
  display: flex;
  gap: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 28px;
}
.ship-type__icon {
  width: 54px; height: 54px;
  flex-shrink: 0;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
}
.ship-type__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--head);
  margin-bottom: 7px;
}
.ship-type__desc { margin: 0; font-size: .92rem; color: var(--text); }
@media (max-width: 720px) { .ship-types { grid-template-columns: 1fr; } }

/* ===========================================================
   SCROLL REVEAL
   =========================================================== */
[data-reveal] {
  opacity: 0;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal="up"] { transform: translateY(34px); }
[data-reveal="left"] { transform: translateX(-34px); }
[data-reveal="right"] { transform: translateX(34px); }
[data-reveal="scale"] { transform: scale(.95); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-delay="100"] { transition-delay: .1s; }
[data-reveal][data-delay="200"] { transition-delay: .2s; }
[data-reveal][data-delay="300"] { transition-delay: .3s; }
[data-reveal][data-delay="400"] { transition-delay: .4s; }
[data-reveal][data-delay="500"] { transition-delay: .5s; }
@media (max-width: 768px) {
  [data-reveal="left"], [data-reveal="right"] { transform: translateY(34px); }
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ===========================================================
   UTILITIES
   =========================================================== */
.text-center { text-align: center; }
.mt-sm { margin-top: 18px; }
.mt-md { margin-top: 34px; }
.mt-lg { margin-top: 56px; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.empty-state { text-align: center; padding: 70px 20px; color: var(--muted); }
.empty-state strong {
  display: block;
  font-family: var(--f-display);
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--head);
  margin-bottom: 6px;
}
