/* ─── VARIABLES ─── */
:root {
  --coral:    #C94F3A;
  --violet:   #6B4397;
  --teal:     #1A8A7C;
  --gold:     #B8782A;
  --slate:    #3D4F5C;
  --ink:      #1A1714;
  --warm:     #7A736C;
  --lgray:    #F3F1EC;
  --mgray:    #C8C3BC;
  --white:    #FFFFFF;
  --cream:    #FDFAF6;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;

  --shadow-sm:  0 1px 4px rgba(0,0,0,0.07);
  --shadow-md:  0 3px 12px rgba(0,0,0,0.10);

  --max-w: 900px;
  --nav-h: 52px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

/* ─── HEADER ─── */
.site-header {
  background: var(--violet);
  color: var(--white);
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
}
.header-inner { max-width: var(--max-w); margin: 0 auto; }
.header-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.5rem;
}
.header-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 4.5rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.header-title em {
  font-style: italic;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.header-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.version-tag {
  display: inline-block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 99px;
  padding: 0.2rem 0.65rem;
}

/* ─── TAB NAV ─── */
.tab-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--mgray);
  box-shadow: var(--shadow-sm);
}
/* Fade masks — show left/right scroll affordance */
.tab-nav-wrap {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
}
.tab-nav-wrap::before,
.tab-nav-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 64px;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.2s;
}
.tab-nav-wrap::before {
  left: 0;
  background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0.6) 60%, rgba(255,255,255,0) 100%);
  opacity: 0;
}
.tab-nav-wrap::after {
  right: 0;
  background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0.6) 60%, rgba(255,255,255,0) 100%);
  opacity: 1;
}
.tab-nav-wrap.can-scroll-left::before  { opacity: 1; }
.tab-nav-wrap.can-scroll-right::after  { opacity: 1; }
.tab-nav-wrap:not(.can-scroll-right)::after { opacity: 0; }

/* Arrow chevron hints */
.tab-scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  pointer-events: none;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--violet);
  opacity: 0;
  transition: opacity 0.25s;
  line-height: 1;
  text-shadow: 0 0 6px rgba(255,255,255,0.9);
}
.tab-scroll-arrow.arrow-left  { left: 6px; }
.tab-scroll-arrow.arrow-right { right: 6px; }
.tab-nav-wrap.can-scroll-left  .arrow-left  { opacity: 1; }
.tab-nav-wrap.can-scroll-right .arrow-right { opacity: 1; }

.tab-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 2rem;
  scroll-behavior: smooth;
}
.tab-nav-inner::-webkit-scrollbar { display: none; }
.tab-btn {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--warm);
  padding: 0.85rem 1rem;
  border-bottom: 2.5px solid transparent;
  transition: color 0.18s, border-color 0.18s;
  white-space: nowrap;
  line-height: 1;
}
.tab-btn:hover { color: var(--ink); }
.tab-btn.active {
  color: var(--violet);
  border-bottom-color: var(--violet);
}

/* ─── MAIN CONTENT ─── */
.main-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1rem 4rem;
}

/* ─── TAB PANELS ─── */
.tab-panel { display: none; padding-top: 2rem; }
.tab-panel.active { display: block; }

/* ─── SECTION INTRO ─── */
.section-intro { margin-bottom: 1.5rem; }
.section-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.section-desc { font-size: 0.875rem; color: var(--warm); margin-bottom: 1rem; }
.body-text { font-size: 0.9rem; color: var(--ink); margin-bottom: 1rem; line-height: 1.65; }

/* ─── LEGEND ─── */
.legend { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.75rem; }

/* ─── PILLS ─── */
.pill {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.18rem 0.55rem;
  border-radius: 99px;
  text-transform: uppercase;
}
.pill-anchor   { background: #E8E1F7; color: var(--violet); }
.pill-giveback { background: #F5E9D9; color: var(--gold); }
.pill-optional { background: #EDEBE8; color: var(--warm); }
.pill-free     { background: #DFF0ED; color: var(--teal); }
.pill-logistics{ background: #E0E5E9; color: var(--slate); }
.pill-tbd      { background: #EBEBEB; color: #888; }

/* ─── DAY CARDS ─── */
.day-card {
  border: 1px solid var(--mgray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.day-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.1rem;
  gap: 0.75rem;
}
.day-violet { background: var(--lgray); border-bottom: 3px solid var(--violet); }
.day-coral  { background: var(--lgray); border-bottom: 3px solid var(--coral); }
.day-gold   { background: var(--lgray); border-bottom: 3px solid var(--gold); }
.day-teal   { background: var(--lgray); border-bottom: 3px solid var(--teal); }
.day-slate  { background: var(--lgray); border-bottom: 3px solid var(--slate); }
.day-title  {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.1rem;
}
.day-sub {
  font-size: 0.8rem;
  color: var(--warm);
  line-height: 1.4;
}
.day-sub a { color: var(--teal); font-style: italic; }
.day-badge {
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.22rem 0.65rem;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.badge-violet  { background: var(--violet); color: var(--white); }
.badge-coral   { background: var(--coral); color: var(--white); }
.badge-teal    { background: var(--teal); color: var(--white); }
.badge-slate   { background: var(--slate); color: var(--white); }

.day-body { background: var(--white); }

/* ─── SCHEDULE BLOCKS ─── */
.sched-block {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--lgray);
  padding: 0.7rem 1.1rem;
}
.sched-block:last-child { border-bottom: none; }
.sched-time {
  flex-shrink: 0;
  width: 115px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--warm);
  padding-top: 0.1rem;
  line-height: 1.4;
}
.sched-content { flex: 1; min-width: 0; }
.sched-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.2rem;
  line-height: 1.4;
}
.sched-note {
  font-size: 0.8rem;
  color: var(--warm);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 0.3rem;
}
.sched-who {
  font-size: 0.75rem;
  color: var(--teal);
  font-style: italic;
  margin-bottom: 0.3rem;
}
.sched-link {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--teal);
  margin-bottom: 0.3rem;
}
.travel-block {
  padding: 0.4rem 1.1rem 0.4rem 1.25rem;
  background: var(--lgray);
  font-size: 0.78rem;
  color: var(--slate);
  font-style: italic;
  border-left: 3px solid var(--mgray);
}
.free-block {
  padding: 0.4rem 1.1rem;
  background: #EBF7F5;
  font-size: 0.8rem;
  color: var(--teal);
  font-style: italic;
  border-bottom: 1px solid #d0edea;
}

/* ─── INFO SECTIONS ─── */
.info-section { margin-bottom: 2rem; }
.info-heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 0.5rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--mgray);
}
.info-rows { }
.info-row {
  display: flex;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--lgray);
  align-items: flex-start;
}
.info-row:last-child { border-bottom: none; }
.info-label {
  flex-shrink: 0;
  width: 160px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.info-detail {
  flex: 1;
  font-size: 0.85rem;
  color: var(--ink);
  line-height: 1.55;
}
.info-detail a { color: var(--teal); }

/* ─── TABLES ─── */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  border: 1px solid var(--mgray);
  margin-bottom: 1rem;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.83rem;
}
.data-table th {
  background: var(--slate);
  color: var(--white);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  text-align: left;
  padding: 0.55rem 0.75rem;
  white-space: nowrap;
}
.data-table td {
  padding: 0.55rem 0.75rem;
  border-bottom: 1px solid var(--lgray);
  vertical-align: top;
  line-height: 1.45;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) { background: var(--lgray); }
.tbd { font-style: italic; color: var(--warm); }

/* ─── ACTIVITY DAYS ─── */
.activity-day { margin-bottom: 2rem; }
.activity-day-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--teal);
}
.tag-inline {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  background: var(--lgray);
  color: var(--warm);
  margin-left: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  vertical-align: middle;
}
.tag-paid { background: #FFF0DC; color: var(--gold); }

/* ─── PRICING SECTION ─── */
.pricing-section { margin-top: 2rem; }

/* ─── AREA GUIDE ─── */
.area-category { margin-bottom: 2rem; }
.area-cat-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--coral);
}
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 0.75rem;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--mgray);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  box-shadow: var(--shadow-sm);
}
.area-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.area-type {
  font-size: 0.75rem;
  color: var(--warm);
  font-style: italic;
  margin-bottom: 0.4rem;
  line-height: 1.4;
}
.area-desc {
  font-size: 0.8rem;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 0.4rem;
}
.area-link {
  font-size: 0.75rem;
  color: var(--teal);
  display: inline-block;
}
.booked-badge {
  display: inline-block;
  font-size: 0.65rem;
  background: #DFF0ED;
  color: var(--teal);
  border-radius: 3px;
  padding: 0.1rem 0.35rem;
  font-weight: 700;
  margin-left: 0.3rem;
  vertical-align: middle;
}

/* ─── WINE ─── */
.wine-section { margin-bottom: 1.75rem; }
.wine-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  padding-bottom: 0.35rem;
  border-bottom-width: 2px;
  border-bottom-style: solid;
}
.champagne-cat { color: var(--coral); border-color: var(--coral); }
.sparkling-cat { color: var(--gold); border-color: var(--gold); }
.rosé-cat      { color: #B05070; border-color: #B05070; }
.white-cat     { color: var(--gold); border-color: var(--gold); }
.red-cat       { color: var(--violet); border-color: var(--violet); }
.spirits-placeholder { margin-bottom: 1.75rem; }

/* ─── GUEST DECISIONS ─── */
.decision-card {
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  margin-bottom: 1rem;
  border-left-width: 4px;
  border-left-style: solid;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.decision-teal  { border-color: var(--teal); }
.decision-gold  { border-color: var(--gold); }
.decision-coral { border-color: var(--coral); }
.decision-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.decision-card p, .decision-card ul {
  font-size: 0.875rem;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.decision-card ul { padding-left: 1.25rem; }
.decision-ask {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--lgray);
}

/* ─── WEATHER GRID ─── */
.weather-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.weather-card {
  background: var(--white);
  border: 1px solid var(--mgray);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.weather-icon { font-size: 1.6rem; margin-bottom: 0.3rem; }
.weather-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 0.2rem;
}
.weather-val {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.weather-note { font-size: 0.72rem; color: var(--warm); line-height: 1.4; }

/* ─── PHRASE TABLE ─── */
.phrase-word { font-weight: 700; color: var(--violet); }
.phrase-pron { font-style: italic; color: var(--teal); }

/* ─── LINKS GRID ─── */
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.link-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--mgray);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.15s, border-color 0.15s;
  text-decoration: none;
  color: inherit;
}
.link-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}
.link-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.15rem;
}
.link-url {
  font-size: 0.72rem;
  color: var(--teal);
  margin-bottom: 0.35rem;
  font-family: monospace;
}
.link-desc { font-size: 0.78rem; color: var(--warm); line-height: 1.4; }

/* ─── FOOTER ─── */
.site-footer {
  text-align: center;
  padding: 1.5rem;
  border-top: 1px solid var(--mgray);
  background: var(--white);
  margin-top: 2rem;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.site-footer p {
  font-size: 0.75rem;
  color: var(--warm);
}

/* ─── MOBILE ─── */
@media (max-width: 600px) {
  .info-row { flex-direction: column; gap: 0.25rem; }
  .info-label { width: auto; }
  .sched-time { width: 90px; font-size: 0.7rem; }
  .area-grid { grid-template-columns: 1fr; }
  .weather-grid { grid-template-columns: repeat(2, 1fr); }
  .links-grid { grid-template-columns: 1fr; }
  .day-badge { display: none; }
  .data-table { font-size: 0.78rem; }
}

/* ─── TRANSPORT GROUPS ─── */
.transport-groups { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1rem; }
.transport-group {
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  border-left: 4px solid;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.tg-violet { border-color: var(--violet); }
.tg-coral  { border-color: var(--coral); }
.tg-teal   { border-color: var(--teal); }
.tg-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.tg-label strong { color: var(--ink); font-size: 0.9rem; text-transform: none; letter-spacing: 0; }
.tg-members {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.tg-detail { font-size: 0.83rem; color: var(--warm); line-height: 1.5; }

/* ─── INLINE TAB LINK ─── */
.inline-tab-link {
  background: none;
  border: none;
  color: var(--teal);
  text-decoration: underline;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  padding: 0;
}

/* ─── AREA LINKS ─── */
.area-links { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.4rem; }

/* ─── SPEAK BUTTON ─── */
.speak-btn {
  background: none;
  border: 1px solid var(--mgray);
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85rem;
  padding: 0.1rem 0.35rem;
  transition: background 0.15s;
  white-space: nowrap;
}
.speak-btn:hover { background: var(--lgray); }
.speak-btn.speaking { background: #DFF0ED; border-color: var(--teal); }

/* ─── LIVE WEATHER ─── */
.weather-loading {
  padding: 1.5rem;
  text-align: center;
  color: var(--warm);
  font-style: italic;
  font-size: 0.875rem;
  border: 1px solid var(--mgray);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}
.weather-error {
  padding: 1rem;
  text-align: center;
  color: var(--coral);
  font-size: 0.875rem;
  border: 1px solid #f0c0b8;
  border-radius: var(--radius-md);
  background: #FDF3F1;
  margin-bottom: 1rem;
}
.weather-current-card {
  background: linear-gradient(135deg, var(--violet) 0%, #4a7a8c 100%);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.wc-location {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.5rem;
}
.wc-main { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1rem; }
.wc-temp {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--white);
}
.wc-desc { font-size: 1.1rem; color: rgba(255,255,255,0.8); }
.wc-stats { display: flex; gap: 1.5rem; }
.wc-stat { display: flex; flex-direction: column; gap: 0.15rem; }
.wc-stat-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); }
.wc-stat span:last-child { font-size: 0.9rem; color: rgba(255,255,255,0.9); font-weight: 500; }
.weather-forecast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.wf-day {
  background: var(--white);
  border: 1px solid var(--mgray);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.wf-date { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--warm); margin-bottom: 0.4rem; }
.wf-icon { font-size: 1.6rem; margin-bottom: 0.3rem; }
.wf-hi { font-size: 1rem; font-weight: 600; color: var(--ink); }
.wf-lo { font-size: 0.8rem; color: var(--warm); }
.wf-rain { font-size: 0.7rem; color: #5588AA; margin-top: 0.2rem; }

@media (max-width: 600px) {
  .wc-stats { flex-wrap: wrap; gap: 1rem; }
  .transport-groups { gap: 0.5rem; }
}

/* ─── DRESS CODE CALLOUT ─── */
.dress-code {
  margin: 0.4rem 0 0.35rem;
  padding: 0.55rem 0.85rem;
  background: linear-gradient(135deg, #F5EFE6 0%, #EDE8F5 100%);
  border-left: 3px solid var(--violet);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.82rem;
  color: var(--ink);
  line-height: 1.55;
  font-style: italic;
}
.dress-code strong {
  font-style: normal;
  color: var(--violet);
  font-weight: 700;
}

/* ─── USD COLUMN ─── */
.usd-col {
  font-weight: 600;
  color: var(--teal);
  white-space: nowrap;
}

/* ─── HEADER CLOCKS ─── */
.header-clocks {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.5rem;
  margin-bottom: 0.4rem;
  flex-wrap: wrap;
}
.clock-current-label {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}
.clock-item {
  display: flex;
  align-items: baseline;
  gap: 0.28rem;
}
.clock-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.clock-time {
  font-family: var(--font-display);
  font-size: 1.0rem;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.02em;
}
.clock-divider {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}

/* ─── PRICING TABLE COLUMN WIDTHS ─── */
#tab-pricing .data-table { table-layout: fixed; }
#tab-pricing .data-table th:nth-child(1) { width: 22%; }
#tab-pricing .data-table th:nth-child(2) { width: 20%; }
#tab-pricing .data-table th:nth-child(3) { width: 9%;  }
#tab-pricing .data-table th:nth-child(4) { width: 20%; }
#tab-pricing .data-table th:nth-child(5) { width: 29%; }
