/* ============================================
   nomeimporta. — quiet luxury, no noise
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,ital,wght@9..144,0,300;9..144,0,400;9..144,1,300;9..144,1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg: #ffffff;
  --bg-alt: #f5f4f1;
  --ink: #0a0a0a;
  --ink-muted: #6e6b65;
  --rule: #e8e6e1;
  --max: 1320px;
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; }

/* ========== Layout ========== */

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}

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

/* ========== Header ========== */

.site-header {
  padding: 32px 0;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  z-index: 50;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.brand .dot { color: var(--ink); }

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand-mark .star {
  width: 16px;
  height: auto;
  flex-shrink: 0;
  display: inline-block;
}

.brand-mark .star svg,
.brand-mark .star img { display: block; width: 100%; height: auto; }

/* Parent company line in footer */
.parent-mark {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.parent-mark .label { white-space: nowrap; }

.parent-mark img {
  height: 14px;
  width: auto;
  opacity: 0.78;
  transition: opacity 0.2s ease;
}

.parent-mark a:hover img { opacity: 1; }

.nav {
  display: flex;
  gap: 40px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav a {
  color: var(--ink-muted);
  transition: color 0.2s ease;
}

.nav a:hover, .nav a.active { color: var(--ink); }

@media (max-width: 820px) {
  .nav { gap: 20px; font-size: 12px; }
  .nav a:not(.nav-cta) { display: none; }
}

.nav-cta {
  color: var(--ink) !important;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

/* ========== Typography ========== */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.04;
  color: var(--ink);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 32px;
  display: block;
}

.lede {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.45;
  color: var(--ink);
  max-width: 32ch;
}

/* ========== Hero — asymmetric, type-driven ========== */

.hero {
  padding: 140px 0 180px;
  border-bottom: 1px solid var(--rule);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 80px;
  align-items: end;
}

.hero-grid .meta {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}

.hero-grid .meta div + div { margin-top: 12px; }

.hero h1 {
  font-size: clamp(64px, 11vw, 200px);
  letter-spacing: -0.045em;
  line-height: 0.88;
  font-weight: 300;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
}

.hero h1 .dot {
  color: var(--ink);
  display: inline-block;
  margin-left: -0.05em;
}

.hero-sub {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}

.hero-sub p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink);
  max-width: 34ch;
}

.hero-sub .links {
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
}

.hero-sub .links a {
  display: inline-block;
  padding: 8px 0;
  border-bottom: 1px solid var(--ink);
  width: max-content;
  transition: padding 0.2s ease;
}

.hero-sub .links a:hover { padding-left: 8px; }

@media (max-width: 820px) {
  .hero { padding: 80px 0 100px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-sub { grid-template-columns: 1fr; gap: 32px; }
}

/* ========== Page Header ========== */

.page-head {
  padding: 120px 0 100px;
  border-bottom: 1px solid var(--rule);
}

.page-head h1 {
  font-size: clamp(56px, 9vw, 132px);
  font-weight: 300;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}

/* ========== Section ========== */

section { padding: 120px 0; }

section.thin { padding: 80px 0; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: start;
}

.section-head h2 {
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 300;
  letter-spacing: -0.03em;
  max-width: 18ch;
  grid-column: 2;
}

.section-head .label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-top: 12px;
}

@media (max-width: 820px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; }
  .section-head h2 { grid-column: 1; }
}

/* ========== Numbered list (positioning) ========== */

.numbered {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 80px;
  border-top: 1px solid var(--rule);
}

.numbered .item {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1 / -1;
  padding: 48px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}

.numbered .item .num {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
}

.numbered .item .body h3 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.numbered .item .body p {
  font-size: 16px;
  color: var(--ink-muted);
  line-height: 1.65;
  max-width: 56ch;
}

@media (max-width: 820px) {
  .numbered { grid-template-columns: 1fr; gap: 0; }
  .numbered .item { grid-template-columns: 1fr; padding: 32px 0; }
}

/* ========== Partner list ========== */

.partner-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}

.partner-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column: 1 / -1;
  gap: 0;
  border-bottom: 1px solid var(--rule);
}

.partner {
  padding: 56px 48px;
  border-right: 1px solid var(--rule);
  transition: background 0.25s ease;
}

.partner:nth-child(2n) { border-right: none; }

.partner:hover { background: var(--bg-alt); }

.partner .num {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 24px;
}

.partner h3 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.partner h3 em {
  font-style: italic;
  font-weight: 300;
}

/* Partner logos — replace plain text H3 with brand mark */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.partner-name {
  display: flex;
  align-items: center;
  min-height: 60px;
  margin-bottom: 8px;
  line-height: 1;
}
.partner-name svg, .partner-name img, .partner-name .kt-mark {
  display: block;
}
.partner-name--clubwtty svg {
  height: 56px;
  width: auto;
  max-width: 100%;
}
.partner-name--batmandir svg {
  height: 64px;
  width: auto;
  max-width: 280px;
  color: var(--ink);
}
.partner-name--katteryn .kt-mark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 44px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.partner-name--katteryn .kt-mark em {
  font-style: italic;
  font-weight: 300;
}
.partner-name--katteryn .kt-dot {
  color: #c8332a;
  font-style: normal;
}
.partner-name--usatimes img {
  height: 24px;
  width: auto;
  max-width: 100%;
}
@media (max-width: 720px) {
  .partner-name { min-height: 48px; }
  .partner-name--clubwtty svg { height: 44px; }
  .partner-name--batmandir svg { height: 52px; }
  .partner-name--katteryn .kt-mark { font-size: 36px; }
  .partner-name--usatimes img { height: 20px; }
}

.partner .category {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-muted);
  margin-bottom: 24px;
}

.partner p {
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.partner .visit-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

@media (max-width: 720px) {
  .partner-row { grid-template-columns: 1fr; }
  .partner { padding: 40px 24px; border-right: none; }
}

/* ========== Big quote / pull ========== */

.pull {
  padding: 160px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.pull blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin: 0 auto;
  text-align: center;
}

.pull .attr {
  margin-top: 40px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}

/* ========== CTA / Buttons ========== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: var(--ink);
  color: var(--bg);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn:hover { background: var(--ink-muted); }

.btn.outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn.outline:hover { background: var(--ink); color: var(--bg); }

.btn .arr {
  width: 14px; height: 14px;
}

/* ========== Form ========== */

.form-card {
  max-width: 640px;
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 56px 48px;
}

.form-field { margin-bottom: 24px; }

.form-field label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 10px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  transition: border-color 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--ink);
}

.form-field textarea {
  font-family: var(--sans);
  font-size: 15px;
  resize: vertical;
  min-height: 100px;
}

@media (max-width: 640px) {
  .form-card { padding: 36px 24px; }
}

/* ========== Betelgeuse currency table ========== */

.bg-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--rule);
  background: var(--bg);
  margin-top: 32px;
}

.bg-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 14px;
}

.bg-table thead th {
  text-align: left;
  padding: 22px 26px 16px;
  background: var(--bg-alt);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  vertical-align: bottom;
}

.bg-table thead th:last-child { border-right: 0; }

.bg-table tbody td {
  padding: 22px 26px;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  vertical-align: top;
}

.bg-table tbody td:last-child { border-right: 0; }

.bg-table tbody tr:last-child td { border-bottom: none; }

.bg-table tbody tr:hover { background: var(--bg-alt); }

.bg-table .tier-cell {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.bg-table .tier-star {
  width: 32px;
  height: 32px;
  display: block;
  flex-shrink: 0;
}

.bg-table .code {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.bg-table .code .slim-s {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  transform: scaleX(0.38);
  transform-origin: center center;
  letter-spacing: -0.05em;
  color: inherit;
  margin-right: 4px;
}

.bg-table .code .tiny-dot {
  font-size: 0.5em;
  vertical-align: 0.15em;
  margin: 0 -0.05em;
  color: inherit;
}

.bg-table .name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
}

.bg-table .pack {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
}

/* Pricing list — clean key/value pairs, hairline rules between every row */
.bg-table ul.pack {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 180px;
}

.bg-table ul.pack li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--serif);
  font-variant-numeric: tabular-nums;
  line-height: 1.35;
}

.bg-table ul.pack li:last-child { border-bottom: 0; padding-bottom: 4px; }
.bg-table ul.pack li:first-child { padding-top: 4px; }

.bg-table ul.pack .qty {
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  color: var(--ink-muted);
  white-space: nowrap;
}

.bg-table ul.pack .amt {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  color: var(--ink);
  white-space: nowrap;
}

/* Star icon as the only clickable nav into a tier page */
.bg-table .tier-star-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 4px;
  margin: -4px;
  transition: transform 0.18s ease, background 0.18s ease;
  outline: none;
}

.bg-table .tier-star-link:hover,
.bg-table .tier-star-link:focus-visible {
  background: var(--bg-alt);
  transform: scale(1.06);
}

.bg-table .tier-star-link:focus-visible {
  box-shadow: 0 0 0 2px var(--ink);
}

.bg-table tr.invite .tier-star-link:hover,
.bg-table tr.invite .tier-star-link:focus-visible {
  background: rgba(255,255,255,0.08);
}

.bg-table tr.invite .tier-star-link:focus-visible {
  box-shadow: 0 0 0 2px var(--bg);
}

/* Partner link styling — replaces inline styles */
.bg-table .partner-link {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  line-height: 1.9;
  transition: opacity 0.18s ease;
}

.bg-table .partner-link:hover { opacity: 0.7; }

.bg-table .partner-link--invert {
  color: var(--bg);
  border-bottom-color: var(--bg);
}

.bg-table .bonus {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 12px;
  background: rgba(255, 107, 53, 0.10);
  border: 1px solid rgba(255, 107, 53, 0.35);
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #ff6b35;
  line-height: 1.6;
  max-width: 100%;
}

.bg-table .bonus img {
  width: 14px !important;
  height: 14px !important;
  max-width: 14px !important;
  max-height: 14px !important;
  display: inline-block !important;
  vertical-align: -2px;
  margin-right: 4px;
  flex-shrink: 0;
}

.bg-table .price {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
}

.bg-table .notes {
  color: var(--ink-muted);
  font-size: 13px;
  font-style: italic;
}

.bg-table tr.invite td { background: var(--ink); }
.bg-table tr.invite .code,
.bg-table tr.invite .name,
.bg-table tr.invite .pack,
.bg-table tr.invite .price,
.bg-table tr.invite ul.pack .qty,
.bg-table tr.invite ul.pack .amt { color: var(--bg); }
.bg-table tr.invite .notes { color: rgba(255,255,255,0.65); }
.bg-table tr.invite:hover td { background: var(--ink); }

@media (max-width: 720px) {
  /* Real 4-col table on mobile — tight horizontal padding, visible
     cell borders between columns, comfortable vertical spacing,
     and pricing rendered as a tiny mini-table inside its cell. */
  .bg-table-wrap {
    overflow-x: visible;
    border: 1px solid var(--rule);
    background: var(--bg);
  }
  .bg-table {
    min-width: 0;
    width: 100%;
    table-layout: fixed;
    font-size: 13px;
  }
  /* Column widths: tier (star+S) / name / pricing / partners */
  .bg-table thead th:nth-child(1),
  .bg-table tbody td:nth-child(1) { width: 18%; }
  .bg-table thead th:nth-child(2),
  .bg-table tbody td:nth-child(2) { width: 24%; }
  .bg-table thead th:nth-child(3),
  .bg-table tbody td:nth-child(3) { width: 32%; }
  .bg-table thead th:nth-child(4),
  .bg-table tbody td:nth-child(4) { width: 26%; }

  .bg-table thead th {
    padding: 14px 8px 10px;
    font-size: 9px;
    letter-spacing: 0.14em;
    line-height: 1.2;
  }
  .bg-table tbody td {
    padding: 16px 8px;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    word-break: break-word;
    vertical-align: top;
  }
  .bg-table tbody td:last-child { border-right: 0; }

  /* Tier cell: star above S-rating, centered */
  .bg-table .tier-cell {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .bg-table .tier-star {
    width: 38px;
    height: 38px;
  }
  .bg-table .tier-star-link {
    padding: 4px;
    margin: -4px;
  }
  .bg-table .code {
    font-size: 17px;
    line-height: 1.1;
  }
  .bg-table .name {
    font-size: 14px;
    line-height: 1.25;
  }
  /* Pricing mini-table — visible row dividers, qty/amt stacked vertically per row */
  .bg-table ul.pack {
    min-width: 0;
    gap: 0;
    margin: 0;
  }
  .bg-table ul.pack li {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid var(--rule);
    line-height: 1.3;
  }
  .bg-table ul.pack li:first-child { padding-top: 0; }
  .bg-table ul.pack li:last-child { border-bottom: 0; padding-bottom: 0; }
  .bg-table ul.pack .qty {
    display: block;
    font-size: 11px;
    line-height: 1.3;
    margin-bottom: 2px;
  }
  .bg-table ul.pack .amt {
    display: block;
    font-size: 14px;
    line-height: 1.2;
  }
  /* Partner links column: wrap as needed, smaller font */
  .bg-table .notes,
  .bg-table .partner-link {
    font-size: 12px;
    line-height: 1.7;
  }
  /* Disable hover row-tint on mobile (tap-only) */
  .bg-table tbody tr:hover { background: transparent; }
  /* Orion row left-bordered with the brand ink for visual emphasis */
  .bg-table tbody tr.orion-row td:first-child {
    box-shadow: inset 3px 0 0 0 var(--ink);
  }
}

/* ========== Star strip (recognition row in footer-bottom) ========== */

.star-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 0;
}

.star-strip img {
  height: 30px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .star-strip { gap: 18px; }
  .star-strip img { height: 22px; }
}

/* ========== Footer ========== */

.site-footer {
  border-top: 1px solid var(--rule);
  padding: 80px 0 48px;
  font-size: 14px;
  color: var(--ink-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-grid h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
}

.footer-grid a { display: block; padding: 4px 0; transition: color 0.2s ease; }
.footer-grid a:hover { color: var(--ink); }

.footer-brand .brand {
  font-size: 26px;
  display: inline-block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  font-weight: 300;
  max-width: 36ch;
  color: var(--ink-muted);
  line-height: 1.45;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.footer-bottom .copyright-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 24px;
}

@media (max-width: 640px) {
  .footer-bottom .copyright-row {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ========== Utilities ========== */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

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

.muted { color: var(--ink-muted); }

.serif-italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
}

/* Last updated stamp under the footer */
.last-updated {
  text-align: center;
  font-family: var(--sans, Inter, sans-serif);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted, #888);
  padding: 18px 0 4px;
  margin: 0;
}

/* ============================================
   Tier detail pages (stars/<slug>.html)
   ============================================ */

.tier-page-head {
  padding: 80px 0 100px;
}

.back-link {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 56px;
  transition: color 0.2s ease;
}

.back-link:hover { color: var(--ink); }

.tier-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
}

.tier-hero-star {
  width: 180px;
  height: 180px;
  flex-shrink: 0;
}

.tier-hero-star img {
  width: 100%;
  height: auto;
  display: block;
}

.tier-hero-meta .eyebrow {
  margin-bottom: 20px;
}

.tier-hero-meta h1 {
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 0;
}

.tier-hero-meta h1 em {
  font-style: italic;
  font-weight: 300;
}

.palette-note {
  margin-top: 28px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

@media (max-width: 720px) {
  .tier-page-head { padding: 40px 0 56px; }
  .back-link { margin-bottom: 32px; }
  .tier-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: left;
  }
  .tier-hero-star { width: 120px; height: 120px; }
  .tier-hero-meta h1 { font-size: clamp(44px, 12vw, 72px); }
}

/* Tier pricing table on detail pages — simplified, no partners column */
.bg-table.tier-pricing {
  min-width: 0;
  width: 100%;
}

.bg-table.tier-pricing tbody td {
  padding: 22px 26px;
}

@media (max-width: 720px) {
  .bg-table.tier-pricing tbody tr {
    display: table-row;
    padding: 0;
    border: 0;
    background: var(--bg);
  }
  .bg-table.tier-pricing tbody td {
    display: table-cell;
    padding: 18px 20px;
    border-bottom: 1px solid var(--rule);
  }
  .bg-table.tier-pricing tbody td:first-child { padding-bottom: 18px; margin-bottom: 0; border-bottom: 1px solid var(--rule); }
  .bg-table.tier-pricing tbody tr:last-child td { border-bottom: 0; }
}

/* Partner pills on tier pages */
.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.partner-pill {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  background: var(--bg);
  border: 1px solid var(--rule);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--ink);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.partner-pill:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

@media (max-width: 720px) {
  .partner-pill { padding: 12px 18px; font-size: 16px; }
}
