/* ==========================================================================
   AEGX TRADE — design system
   ========================================================================== */

:root {
  --ink: #12161f;
  --ink-soft: #4b5461;
  --ink-faint: #8b93a1;
  --navy: #0d1826;
  --navy-soft: #16273d;
  --paper: #faf8f3;
  --surface: #ffffff;
  --border: #e6e1d4;
  --border-dark: #263650;
  --gold: #ac8144;
  --gold-soft: #e8d9bd;
  --gold-tint: #f5eee0;

  --serif: "Fraunces", "Iowan Old Style", "Georgia", serif;
  --sans: "Inter", -apple-system, "Segoe UI", sans-serif;

  --container: 1180px;
  --radius: 3px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 4.6vw, 4.8rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 3.2vw, 3rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

@media (max-width: 480px) {
  body { font-size: 16px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1em;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.container {
  max-width: min(1640px, 94vw);
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
}

.section {
  padding: 64px 0;
}

.section--tight { padding: 44px 0; }

.section-head {
  max-width: 720px;
  margin: 0 0 40px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media (max-width: 640px) {
  .section { padding: 48px 0; }
  .section--tight { padding: 36px 0; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover { background: var(--navy-soft); transform: translateY(-1px); }

.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover { background: #96703a; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border-color: var(--border-dark);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--ink); }

.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}
.btn-outline-light:hover { border-color: #fff; }

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(13, 24, 38, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border-dark);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.01em;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.brand small {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold-soft);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}

.nav-links a:hover { color: #fff; }

.nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  background: var(--gold);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease;
}
.nav-cta:hover { background: #96703a; transform: translateY(-1px); }

/* Animated hamburger — 3 bars that morph into an X */
.nav-toggle {
  display: none;
  position: relative;
  width: 26px;
  height: 18px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle .bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease, top 0.28s ease;
}
.nav-toggle .bar:nth-child(1) { top: 0; }
.nav-toggle .bar:nth-child(2) { top: 8px; }
.nav-toggle .bar:nth-child(3) { top: 16px; }

.nav-toggle.open .bar:nth-child(1) { top: 8px; transform: rotate(45deg); }
.nav-toggle.open .bar:nth-child(2) { opacity: 0; }
.nav-toggle.open .bar:nth-child(3) { top: 8px; transform: rotate(-45deg); }

/* Full-screen mobile nav overlay */
.nav-mobile {
  display: none;
}

body.nav-open { overflow: hidden; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-actions .nav-cta { display: none; }
  .nav-toggle { display: block; }

  .nav-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    z-index: 39;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }

  .nav-mobile.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-mobile a {
    font-family: var(--serif);
    font-size: 2.1rem;
    color: #fff;
    text-decoration: none;
  }

  .nav-mobile a.active { color: var(--gold-soft); }

  .nav-mobile a.nav-cta {
    font-family: var(--sans);
    font-size: 1rem;
    margin-top: 12px;
  }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 20%, rgba(172,129,68,0.16), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(172,129,68,0.12), transparent 40%);
}

.hero-routes {
  position: absolute;
  inset: 0;
  opacity: 0.5;
}

.hero-inner {
  position: relative;
  padding: 120px 0 88px;
}

.hero h1 {
  color: #fff;
  max-width: 920px;
}

.hero .lede {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.72);
  max-width: 640px;
  margin-bottom: 2.2em;
}

@media (max-width: 640px) {
  .hero-inner { padding: 88px 0 64px; }
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  border-top: 1px solid var(--border-dark);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-stat {
  padding: 32px;
  border-right: 1px solid var(--border-dark);
}
.hero-stat:last-child { border-right: none; }

.hero-stat .num {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--gold-soft);
  display: block;
}

.hero-stat .label {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
}

@media (max-width: 760px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { border-bottom: 1px solid var(--border-dark); padding: 24px 20px; }
}

/* ---------- Category grid ---------- */

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.cat-card {
  background: var(--surface);
  padding: 32px 26px;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 180px;
}

.cat-card:hover { background: var(--gold-tint); }

.cat-card .icon {
  width: 34px;
  height: 34px;
  color: var(--gold);
}

.cat-card h3 { margin: 0; font-size: 1.12rem; }

.cat-card .count {
  margin-top: auto;
  font-size: 0.82rem;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
}

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

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

/* ---------- Value props ---------- */

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.value-item .index {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.value-item h3 { margin-bottom: 0.5em; }
.value-item p { margin: 0; }

@media (max-width: 860px) {
  .value-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- Bands ---------- */

.band-dark {
  background: var(--navy);
  color: #fff;
}
.band-dark h2 { color: #fff; }
.band-dark p { color: rgba(255,255,255,0.7); }

.band-cta {
  text-align: center;
  padding: 72px 0;
}

@media (max-width: 640px) {
  .band-cta { padding: 56px 0; }
}

.band-cta h2 { max-width: 620px; margin-left: auto; margin-right: auto; }

/* ---------- Product cards ---------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 28px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.product-card:hover { border-color: var(--gold); transform: translateY(-2px); }

.product-card .tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.product-card h3 { margin-bottom: 6px; }

.product-card .supplier {
  font-size: 0.85rem;
  color: var(--ink-faint);
  margin-bottom: 14px;
}

.product-card .price {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 16px;
}

.price .unit { font-family: var(--sans); font-size: 0.8rem; color: var(--ink-faint); }

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

/* ---------- Breadcrumb ---------- */

.breadcrumb {
  font-size: 0.82rem;
  color: var(--ink-faint);
  margin-bottom: 28px;
}
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }

/* ---------- Team / leadership ---------- */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 28px;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.team-card:hover { transform: translateY(-3px); border-color: var(--gold); }

.team-card .photo-frame {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy), var(--navy-soft));
}

.team-card .photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card .photo-frame.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card .initial {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(232,217,189,0.35);
  color: var(--gold-soft);
  font-family: var(--serif);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
}

.team-card .caption { padding: 22px 24px 26px; }
.team-card h3 { margin-bottom: 4px; font-size: 1.2rem; }
.team-card p { margin: 0; font-size: 0.88rem; color: var(--ink-faint); }

@media (max-width: 480px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .team-card .caption { padding: 16px; }
}

/* ---------- Forms ---------- */

.form-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 0;
  border: 1px solid var(--border);
  background: var(--surface);
}

.form-side {
  background: var(--navy);
  color: #fff;
  padding: 48px;
}

.form-side h2 { color: #fff; }
.form-side p { color: rgba(255,255,255,0.7); }

.form-side .contact-line {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border-dark);
}
.form-side .contact-line .k {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.form-side .contact-line .v { font-size: 0.95rem; }

.form-main { padding: 44px 48px; }

.form-note {
  font-size: 0.88rem;
  color: var(--ink-faint);
  margin: 0 0 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  margin-bottom: 8px;
}

.field-full { grid-column: 1 / -1; }

.field { margin-bottom: 0; }

.field label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 7px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--paper);
  padding: 11px 13px;
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--ink);
  border-radius: var(--radius);
}

.field textarea { resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}

/* Custom file uploader — native input invisibly stretched over the styled row */
.file-drop {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px dashed var(--border-dark);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 10px 12px;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.file-drop:hover { border-color: var(--gold); }
.file-drop.has-file { border-style: solid; border-color: var(--gold); background: var(--gold-tint); }

.file-drop input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-drop-btn {
  flex-shrink: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 9px 18px;
  pointer-events: none;
}

.file-drop-name {
  font-size: 0.85rem;
  color: var(--ink-faint);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
}

.file-drop.has-file .file-drop-name { color: var(--ink); font-weight: 500; }

.field .errorlist {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  color: #b3413a;
  font-size: 0.82rem;
}

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

@media (max-width: 860px) {
  .form-panel { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */

.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding: 56px 0 36px;
}

.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { max-width: 300px; font-size: 0.9rem; }

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 12px; font-size: 0.9rem; }
.footer-col a { text-decoration: none; color: rgba(255,255,255,0.65); }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 22px 0;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Pagination ---------- */

.pagination-simple {
  display: flex;
  gap: 12px;
  margin-top: 48px;
}
.pagination-simple a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  border: 1px solid var(--border-dark);
  padding: 10px 18px;
}
.pagination-simple a:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Example product list ---------- */

.example-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}

.example-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.example-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

@media (max-width: 700px) {
  .example-list { grid-template-columns: 1fr; }
}

/* ---------- Empty state ---------- */

.empty-state {
  border: 1px dashed var(--border-dark);
  padding: 48px;
  text-align: center;
  color: var(--ink-faint);
}

/* ---------- Photo category/product cards ---------- */

.cat-grid.photo {
  border: none;
  background: none;
  gap: 24px;
}

.cat-card.photo {
  padding: 0;
  min-height: 0;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.cat-card.photo .photo-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy);
}

.cat-card.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cat-card.photo:hover img { transform: scale(1.05); }

.cat-card.photo .photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,24,38,0) 40%, rgba(13,24,38,0.88) 100%);
}

.cat-card.photo .photo-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.cat-card.photo .icon {
  width: 26px;
  height: 26px;
  color: var(--gold-soft);
  flex-shrink: 0;
}

.cat-card.photo h3 { margin: 0; font-size: 1.15rem; color: #fff; }
.cat-card.photo .count { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.65); margin-top: 2px; }

.product-card {
  padding: 0;
  overflow: hidden;
}

.product-card .photo-frame {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gold-tint);
}

.product-card .photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card .photo-frame.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card .photo-frame.placeholder .icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  opacity: 0.5;
}

.product-card .card-body { padding: 24px; }

.product-card a.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* ---------- Hero with photo ---------- */

.hero.photo .hero-grid {
  background-image:
    linear-gradient(180deg, rgba(13,24,38,0.55) 0%, rgba(13,24,38,0.75) 55%, var(--navy) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

/* ---------- Breadcrumb + product detail ---------- */

.pdp-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
}

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

.pdp-gallery-main {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--gold-tint);
  margin-bottom: 12px;
}

.pdp-gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.pdp-gallery-main.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdp-gallery-main.placeholder .icon { width: 72px; height: 72px; color: var(--gold); opacity: 0.4; }

.pdp-thumbs {
  display: flex;
  gap: 10px;
}
.pdp-thumbs img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.pdp-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.pdp-supplier {
  font-size: 0.95rem;
  color: var(--ink-faint);
  margin-bottom: 20px;
}
.pdp-supplier a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--border-dark); }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  margin: 24px 0;
}

.price-tile {
  padding: 18px 16px;
  border-right: 1px solid var(--border);
}
.price-tile:last-child { border-right: none; }

.price-tile .k {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: block;
  margin-bottom: 6px;
}
.price-tile .v {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--ink);
}
.price-tile .v .cur { font-family: var(--sans); font-size: 0.75rem; color: var(--ink-faint); }

@media (max-width: 560px) {
  .price-grid { grid-template-columns: 1fr; }
  .price-tile { border-right: none; border-bottom: 1px solid var(--border); }
}

.fact-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin: 24px 0;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.fact-list .fact .k {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: block;
  margin-bottom: 4px;
}
.fact-list .fact .v { font-size: 0.95rem; color: var(--ink); }

.spec-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  background: var(--surface);
  padding: 16px 20px;
}
.spec-row .k { color: var(--ink-faint); font-size: 0.88rem; }
.spec-row .v { color: var(--ink); font-weight: 600; font-size: 0.9rem; text-align: right; }

@media (max-width: 700px) {
  .spec-table { grid-template-columns: 1fr; }
}

.doc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.doc-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
  padding: 14px 18px;
  background: var(--surface);
}
.doc-list .doc-title { font-weight: 600; font-size: 0.92rem; }
.doc-list .doc-type { font-size: 0.76rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.05em; margin-left: 8px; }
.doc-list a.doc-link { font-size: 0.82rem; font-weight: 600; color: var(--gold); text-decoration: none; }
.doc-list a.doc-link:hover { text-decoration: underline; }

.supplier-card {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 28px;
}
.supplier-card h3 { margin-bottom: 4px; }
.supplier-card .loc { color: var(--ink-faint); font-size: 0.88rem; margin-bottom: 16px; }
.supplier-card dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  margin: 0;
}
.supplier-card dt { font-size: 0.78rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.04em; }
.supplier-card dd { margin: 0; font-size: 0.9rem; }

/* ---------- About band photo ---------- */

.band-photo {
  aspect-ratio: 21 / 9;
  overflow: hidden;
}
.band-photo img { width: 100%; height: 100%; object-fit: cover; }
