@import url('/homepage-audit.css');

/* Sibbe Silvén: Bespoke Editorial Keynote Identity */
:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-alt: #f1f4f8;
  --dark-zone: #0d121f;
  --dark-surface: #141b2d;
  --dark-border: #232c45;
  --text: #11141c;
  --text-muted: #4e5564;
  --text-subtle: #747c8d;
  /* Calibrated Nordic Cobalt: Deep, authoritative, bespoke (WCAG AAA 9.1:1 on white) */
  --primary: #1829c9;
  --primary-hover: #101da1;
  --primary-light: #eff2ff;
  --accent: #d97706;
  --accent-light: #fef7ed;
  --border: #e2e6ed;
  --border-subtle: #edf1f6;
  --border-strong: #c2c7d2;
  --font-display: 'Barlow Condensed', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', Menlo, Monaco, Consolas, monospace;
  --radius-sm: 4px;
  --radius: 8px;
  --max-w: 1060px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--surface);
  color: var(--text);
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  width: 100%;
  position: relative;
  /* Clearance for floating visitor chat bubble */
  padding-bottom: 6rem;
}

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

/* Accessibility: Skip Link */
.skip-link {
  position: absolute;
  top: -120px;
  left: 1rem;
  background: var(--primary);
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  z-index: 99999;
  text-decoration: none;
  transition: top 0.2s ease;
  font-family: var(--font-mono);
  font-size: 0.875rem;
}
.skip-link:focus {
  top: 1rem;
  outline: 3px solid var(--accent);
}

/* Typography */
h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 700;
  line-height: 1.04;
  color: inherit;
}

h1 {
  font-size: clamp(2.35rem, 4.8vw, 4.15rem);
}

h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
}

h4 {
  font-size: 1.15rem;
}

p {
  max-width: 65ch;
}

/* Unified Bespoke Eyebrow */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
}
.eyebrow::before {
  content: "//";
  color: var(--primary);
  font-weight: 800;
}
.dark-eyebrow {
  color: #939db2;
}
.dark-eyebrow::before {
  color: #60a5fa;
}

/* Layout Containers & Visual Pacing */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.25rem 0;
  position: relative;
}

.section-head {
  margin-bottom: 2.5rem;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-top: 0.65rem;
  line-height: 1.55;
}

/* STICKY NAVIGATION BAR */
.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 14px rgba(18, 21, 29, 0.05);
  height: 66px;
  display: flex;
  align-items: center;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

.brand-meta {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  border-left: 1px solid var(--border-strong);
  padding-left: 0.75rem;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.65rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

.nav-link:hover, .nav-link:focus {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.4rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.mobile-toggle svg {
  display: block;
  width: 24px;
  height: 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s ease;
  border: 1px solid transparent;
  line-height: 1.2;
}

.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: var(--surface);
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-secondary:hover {
  background-color: var(--surface-alt);
  border-color: var(--text);
  transform: translateY(-1px);
}

/* ==========================================================================
   COMPOSITIONAL VARIETY: SECTION-BY-SECTION ARCHITECTURE
   ========================================================================== */

/* 1. HERO: Crisp White Editorial Split */
.hero-editorial {
  padding: 3.5rem 0 4.5rem 0;
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
}

.hero-title {
  margin-bottom: 1.25rem;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.metric-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.metric-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  font-weight: 500;
}

.hero-photo-frame {
  position: relative;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(18, 21, 29, 0.05);
}
.hero-photo-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-photo-caption {
  padding: 1.15rem 1.35rem;
  background: #ffffff;
  border-top: 1px solid var(--border);
}
.hero-photo-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}
.hero-photo-caption p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

/* 2. CORE OFFERINGS: Open Broadside Magazine Layout (NO CARD BOX!) */
.section-offerings {
  border-bottom: 1px solid var(--border);
}

.broadside-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.broadside-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 6px 20px rgba(18, 21, 29, 0.04);
}
.broadside-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.spec-ledger-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0 1.75rem 0;
  font-size: 0.9375rem;
}
.spec-ledger-table td {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border-subtle);
}
.spec-ledger-table td:first-child {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  width: 110px;
}
.spec-ledger-table td:last-child {
  font-weight: 600;
}

.offerings-subgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}

.offering-column {
  display: flex;
  flex-direction: column;
}

.offering-media-wrap {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 1.25rem;
}
.offering-media-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.offering-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem 0;
  font-size: 0.9375rem;
}
.offering-bullets li {
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
  color: var(--text);
}
.offering-bullets li::before {
  content: "·";
  color: var(--primary);
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1;
}

/* 3. LIVE CONSOLE: Atmospheric Deep Nordic Night Band (DISTINCT TONAL ZONE) */
.section-dark-console {
  background-color: var(--dark-zone);
  color: #ffffff;
  padding: 5rem 0;
  border-bottom: 1px solid var(--dark-border);
}

.dark-title {
  color: #ffffff;
}

.dark-desc {
  color: #a3adc2;
}

.console-deck-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

.console-deck-card {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.console-deck-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.deck-tag-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.deck-tag {
  background: rgba(24, 41, 201, 0.25);
  border: 1px solid rgba(96, 165, 250, 0.3);
  color: #93c5fd;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
}

.deck-time {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #8b95aa;
}

.deck-card-title {
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.deck-card-desc {
  font-size: 0.95rem;
  color: #a6b1c7;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.deck-crash-box {
  background: rgba(217, 119, 6, 0.12);
  border-left: 3px solid var(--accent);
  padding: 1rem 1.15rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: auto;
}

.deck-crash-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #f59e0b;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.deck-crash-text {
  font-size: 0.875rem;
  color: #e5e9f2;
  line-height: 1.45;
  margin: 0;
}

/* 4. DE FYRA REGLERNA: Pure White Open Manifesto List (NO CARD BOX!) */
.section-manifesto {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.manifesto-open-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.manifesto-open-row {
  display: grid;
  grid-template-columns: 80px 1.2fr 2fr;
  gap: 2.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.manifesto-big-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.manifesto-heading {
  font-size: 1.45rem;
  margin: 0;
}

.manifesto-narrative {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* 5. SPEAKER CREDENTIALS: Open Editorial Interview Spread (NO BOX!) */
.section-speaker {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.speaker-editorial-spread {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 3.5rem;
  align-items: center;
}

.speaker-portrait-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 6px 20px rgba(18, 21, 29, 0.04);
}
.speaker-portrait-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.speaker-pullquote {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
  border-left: 3px solid var(--primary);
  padding-left: 1.25rem;
  margin: 1.25rem 0;
}

.credentials-timeline-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.75rem;
  border-top: 1px solid var(--border);
}
.credentials-timeline-table td {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.9375rem;
}
.credentials-timeline-table td:first-child {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  width: 160px;
}

/* 6. SOCIAL PROOF: Open Gallery Triptych */
.section-social {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.gallery-triptych {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.triptych-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.triptych-item:hover .triptych-photo img {
  transform: scale(1.02);
}

.triptych-photo {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 0.85rem;
}
.triptych-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.triptych-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  margin-bottom: 0.35rem;
}

.triptych-snippet {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 7. DIRECT INQUIRY MODULE: Anchored Conversion Terminal (CENTERED CHASSIS) */
.section-inquiry {
  background: var(--bg);
  padding: 4.5rem 0 6rem 0;
}

.inquiry-split-terminal {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  box-shadow: 0 4px 18px rgba(18, 21, 29, 0.04);
}

.inquiry-guarantees {
  list-style: none;
  margin: 1.25rem auto 2.25rem auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.inquiry-guarantees li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.inquiry-guarantees li::before {
  content: "✓";
  color: var(--primary);
  font-weight: bold;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group.span-2 {
  grid-column: span 2;
}

label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
}

.form-control {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: #ffffff;
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.4;
  margin-top: 0.5rem;
}
.checkbox-label input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
}
.checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
}

.form-status {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  display: none;
}
.form-status.status-success {
  display: block;
  background: #eafaf1;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.form-status.status-error {
  display: block;
  background: #fdf0ed;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.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;
}

/* REVIEWS GRID */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.review-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.75rem;
}

.review-stars {
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.review-author {
  font-weight: 600;
  font-size: 0.875rem;
}

.review-source {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* FOOTER */
.site-footer {
  background: #0d1017;
  color: #f0f2f6;
  padding: 4.5rem 0 5rem 0;
  border-top: 1px solid #1e2433;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .brand-name {
  color: #ffffff;
}

.footer-bio {
  color: #8c93a3;
  font-size: 0.9375rem;
  margin-top: 0.75rem;
  line-height: 1.55;
  max-width: 38ch;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: #ffffff;
  margin-bottom: 1.15rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-link {
  color: #8c93a3;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.15s ease;
}
.footer-link:hover, .footer-link:focus {
  color: #ffffff;
}

.footer-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #181d28;
  color: #ffffff;
  border-radius: var(--radius-sm);
  border: 1px solid #283042;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.social-icon-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.social-icon-btn svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.75rem;
  border-top: 1px solid #1e2433;
  gap: 1.5rem;
}

.footer-copyright {
  color: #646b7d;
  font-size: 0.8125rem;
}

/* Oriiion Badge exact CSS */
.oriiion-badge{display:inline-flex;align-items:center;gap:.5em;background:#F7F3EF;color:#57525A;text-decoration:none;border-radius:999px;padding:.5em 1em .5em 1.1em;font-size:.75rem;font-weight:500;letter-spacing:.01em;line-height:1;box-shadow:0 1px 2px rgba(0,0,0,.25);transition:box-shadow .15s ease,transform .15s ease}
.oriiion-badge:hover{box-shadow:0 2px 8px rgba(0,0,0,.35);transform:translateY(-1px)}
.oriiion-badge span{transform:translateY(.5px)}
.oriiion-badge img{height:17px;width:auto;display:block}

/* Subpages */
.subpage-hero {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  padding: 3.25rem 0 2.25rem 0;
  text-align: center;
}

.subpage-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.75rem;
  box-shadow: 0 4px 16px rgba(18, 21, 29, 0.03);
  max-width: 720px;
  margin: 2.25rem auto 3.5rem auto;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.slot-btn {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
  text-align: center;
  transition: all 0.15s ease;
}
.slot-btn:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
}
.slot-btn.selected {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

/* RESPONSIVE & MOBILE REFINEMENTS */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .broadside-editorial {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .offerings-subgrid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .console-deck-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .manifesto-open-row {
    grid-template-columns: 60px 1fr;
    gap: 1rem;
    padding: 1.5rem 0;
  }
  .manifesto-narrative {
    grid-column: span 2;
  }
  .speaker-editorial-spread {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .gallery-triptych {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 1.25rem;
  }
  .site-header {
    height: 62px;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1.25rem;
    gap: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }
  .nav-links.is-open {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .section {
    padding: 2.75rem 0;
  }
  .hero-editorial {
    padding: 2.5rem 0 3rem 0;
  }
  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .credentials-timeline-table td:first-child {
    display: block;
    width: 100%;
    margin-bottom: 0.2rem;
  }
  .credentials-timeline-table td:last-child {
    display: block;
    width: 100%;
    padding-bottom: 0.75rem;
  }
  /* Mobile horizontal swipe for social gallery */
  .gallery-triptych {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.15rem;
    padding-bottom: 0.75rem;
    -webkit-overflow-scrolling: touch;
  }
  .triptych-item {
    flex: 0 0 250px;
    max-width: 250px;
    scroll-snap-align: start;
  }
  .inquiry-split-terminal {
    padding: 2rem 1.25rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.span-2 {
    grid-column: span 1;
  }
  .subpage-card {
    padding: 1.75rem 1.25rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
