  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    /* Light content tokens */
    --bg: #ffffff;
    --bg-soft: #faf8f4;
    --bg-card: #fafaf8;
    --border-soft: #ececea;
    --border: #e0dcd2;
    --text: #1a1a1a;
    --text-muted: #4a4a4a;
    --text-dim: #777;
    --text-faint: #aaa;
    --accent: #1a1a1a;
    --line: #06C755;
    /* Dark hero tokens */
    --hero-bg: #050505;
    --hero-text: #fff;
    --hero-text-muted: #ccc;
  }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', 'Noto Sans JP', -apple-system, system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
  }
  a { color: inherit; text-decoration: none; }
  button { background: none; border: none; color: inherit; font: inherit; cursor: pointer; }
  img { max-width: 100%; display: block; }

  /* ---------- Header ---------- */
  .header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    height: 60px;
    background: linear-gradient(180deg, rgba(0,0,0,0.5), transparent);
    transition: background 0.25s, border-color 0.25s, color 0.25s;
    border-bottom: 1px solid transparent;
    color: #fff;
  }
  .header.scrolled {
    background: rgba(255,255,255,0.96);
    border-bottom-color: var(--border-soft);
    color: var(--text);
    backdrop-filter: saturate(180%) blur(10px);
  }
  @media (min-width: 768px) {
    .header { padding: 0 40px; height: 70px; }
  }
  .brand {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.15em;
  }
  .brand small {
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.25em;
    opacity: 0.7;
    margin-left: 6px;
  }
  .nav {
    display: none;
    gap: 32px;
    font-size: 12px;
    letter-spacing: 0.15em;
    font-weight: 600;
    text-transform: uppercase;
  }
  .nav a { opacity: 0.75; transition: opacity 0.2s; }
  .nav a:hover { opacity: 1; }
  @media (min-width: 768px) { .nav { display: flex; } }

  /* ---------- Buttons ---------- */
  .btn-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--line);
    color: #fff !important;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: 0.05em;
    padding: 10px 20px;
    font-size: 12px;
  }
  .btn-line.lg { padding: 16px 32px; font-size: 13px; letter-spacing: 0.1em; }
  .btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(8px);
    border-radius: 4px;
    letter-spacing: 0.1em;
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s;
  }
  .btn-ghost:hover { background: rgba(0,0,0,0.5); }
  .section-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    padding: 14px 22px;
    border: 1px solid var(--border);
    border-radius: 2px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text);
    background: var(--bg);
    transition: background 0.2s, border-color 0.2s;
  }
  .section-cta::after { content: "→"; font-family: 'JetBrains Mono', monospace; }
  .section-cta:hover { background: var(--bg-soft); border-color: var(--text); }

  /* ---------- Hero (DARK) ---------- */
  .hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    padding: 100px 24px 60px;
    overflow: hidden;
    background-color: var(--hero-bg);
    color: var(--hero-text);
    isolation: isolate;
  }
  @media (min-width: 768px) {
    .hero { padding: 0 56px; min-height: 720px; }
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0;
    animation: hero-cycle 20s infinite, hero-kenburns 20s infinite;
    will-change: opacity, transform;
  }
  .hero-bg-fallback {
    animation: none;
    opacity: 1;
    background-color: #1a2540;
    z-index: -1;
  }
  .hero-bg-1 { background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1800&q=80'); animation-delay: 0s; }
  .hero-bg-2 { background-image: url('https://images.unsplash.com/photo-1542273917363-3b1817f69a2d?w=1800&q=80'); animation-delay: 5s; }
  .hero-bg-3 { background-image: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1800&q=80'); animation-delay: 10s; }
  .hero-bg-4 { background-image: url('https://images.unsplash.com/photo-1518837695005-2083093ee35b?w=1800&q=80'); animation-delay: 15s; }
  @keyframes hero-cycle {
    0%   { opacity: 0; }
    5%   { opacity: 1; }
    25%  { opacity: 1; }
    30%  { opacity: 0; }
    100% { opacity: 0; }
  }
  @keyframes hero-kenburns {
    0%   { transform: scale(1.05); }
    100% { transform: scale(1.15); }
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-bg { animation: none; opacity: 1; transform: none; }
    .hero-bg-2, .hero-bg-3, .hero-bg-4 { opacity: 0; }
  }
  .hero-dots {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 2;
    display: flex;
    gap: 8px;
  }
  @media (min-width: 768px) { .hero-dots { left: 56px; } }
  .hero-dot {
    width: 28px;
    height: 2px;
    background: rgba(255,255,255,0.25);
    border-radius: 1px;
    overflow: hidden;
    position: relative;
  }
  .hero-dot::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
    animation: dot-fill 20s infinite linear;
  }
  .hero-dot:nth-child(1)::before { animation-delay: 0s; }
  .hero-dot:nth-child(2)::before { animation-delay: 5s; }
  .hero-dot:nth-child(3)::before { animation-delay: 10s; }
  .hero-dot:nth-child(4)::before { animation-delay: 15s; }
  @keyframes dot-fill {
    0%   { transform: scaleX(0); }
    25%  { transform: scaleX(1); }
    25.01% { transform: scaleX(0); }
    100% { transform: scaleX(0); }
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-dot::before { animation: none; transform: scaleX(0); }
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
  }
  .hero-content { max-width: 700px; position: relative; z-index: 2; }
  .hero-meta { z-index: 2; }
  .eyebrow {
    font-size: 11px;
    color: #fff;
    letter-spacing: 0.4em;
    font-weight: 600;
    margin-bottom: 24px;
    opacity: 0.9;
  }
  .eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: #fff;
    vertical-align: middle;
    margin-right: 14px;
  }
  .hero h1 {
    font-weight: 800;
    font-size: 48px;
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
  }
  @media (min-width: 768px) { .hero h1 { font-size: 72px; } }
  .hero .lead-ja {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 28px;
  }
  @media (min-width: 768px) { .hero .lead-ja { font-size: 22px; } }
  .hero .sub {
    font-size: 14px;
    line-height: 1.9;
    color: var(--hero-text-muted);
    margin-bottom: 36px;
    max-width: 460px;
  }
  .cta-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .hero-meta {
    position: absolute;
    bottom: 24px;
    right: 32px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.2em;
  }

  /* ---------- Section base (LIGHT) ---------- */
  section.content {
    padding: 80px 24px;
    border-top: 1px solid var(--border-soft);
    background: var(--bg);
    color: var(--text);
  }
  section.content.alt {
    background: var(--bg-soft);
  }
  @media (min-width: 768px) {
    section.content { padding: 100px 56px; }
  }
  .section-label {
    font-family: 'Inter', monospace;
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
  }
  .section-label::before { content: attr(data-num); color: var(--text-faint); }
  h2.section-h2 {
    font-weight: 800;
    font-size: 36px;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    color: var(--text);
  }
  @media (min-width: 768px) { h2.section-h2 { font-size: 48px; } }
  .section-h2-ja {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dim);
    margin-bottom: 48px;
  }
  .lead {
    font-size: 14px;
    line-height: 2;
    color: var(--text-muted);
    max-width: 640px;
    margin-bottom: 48px;
  }

  /* ---------- Vehicle ---------- */
  .gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 48px;
  }
  @media (min-width: 768px) {
    .gallery { grid-template-columns: 1.2fr 1fr; gap: 24px; }
  }
  .gallery-main, .gallery-thumb {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: #e8e4d8;
  }
  .gallery-main { height: 320px; }
  @media (min-width: 768px) { .gallery-main { height: 460px; } }
  .gallery-side { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }
  @media (min-width: 768px) { .gallery-side { gap: 24px; } }
  .gallery-thumb { height: 180px; }
  @media (min-width: 768px) { .gallery-thumb { height: 218px; } }
  .gallery-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.75) 100%); }
  .gallery-label { position: absolute; bottom: 16px; left: 16px; color: #fff; }
  .gallery-label .num { font-weight: 800; font-size: 36px; line-height: 1; letter-spacing: -0.04em; }
  @media (min-width: 768px) { .gallery-label .num { font-size: 56px; } }
  .gallery-label .name { font-weight: 600; font-size: 13px; margin-top: 6px; }
  @media (min-width: 768px) { .gallery-label .name { font-size: 16px; } }
  .gallery-main { background-image: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%), url('public/images/gallery-night.jpg'); }
  .gallery-thumb-1 { background-image: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.7) 100%), url('public/images/gallery-bed.jpg'); }
  .gallery-thumb-2 { background-image: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.7) 100%), url('public/images/gallery-hokkaido.jpg'); }

  .vehicle-specs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-soft);
  }
  @media (min-width: 768px) {
    .vehicle-specs { grid-template-columns: 1fr 1fr; gap: 48px; padding-top: 48px; }
  }
  .spec-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--text);
    margin-bottom: 18px;
  }
  .spec-dl {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 14px 16px;
    font-size: 13px;
  }
  .spec-dl dt {
    color: var(--text-dim);
    font-weight: 500;
    padding-top: 2px;
    font-family: 'Noto Sans JP', sans-serif;
  }
  .spec-dl dd {
    color: var(--text);
    line-height: 1.7;
  }
  .spec-dl dd .note {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    color: var(--text-dim);
    line-height: 1.7;
  }
  .spec-list {
    list-style: none;
    padding: 0;
  }
  .spec-list li {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-soft);
    position: relative;
    padding-left: 16px;
  }
  .spec-list li:last-child { border-bottom: none; }
  .spec-list li::before {
    content: '・';
    color: var(--text-dim);
    position: absolute;
    left: 0;
  }

  .feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid var(--border-soft);
  }
  @media (min-width: 768px) { .feature-grid { grid-template-columns: repeat(4, 1fr); padding-top: 48px; } }
  .feature-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-faint);
    letter-spacing: 0.2em;
    margin-bottom: 10px;
  }
  .feature-name { font-weight: 700; font-size: 14px; margin-bottom: 6px; color: var(--text); }
  .feature-desc { font-size: 12px; color: var(--text-dim); line-height: 1.7; }

  /* ---------- Option ---------- */
  .option-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  @media (min-width: 640px) { .option-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1024px) { .option-grid { grid-template-columns: repeat(3, 1fr); } }
  .option-card {
    border: 1px solid var(--border-soft);
    background: var(--bg);
    border-radius: 4px;
    padding: 24px;
    display: flex;
    flex-direction: column;
  }
  .option-thumb {
    aspect-ratio: 1 / 1;
    width: 100%;
    background: #f5f3ee;
    border-radius: 2px;
    margin-bottom: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .option-thumb img { width: 100%; height: 100%; object-fit: contain; }
  .option-thumb.empty {
    color: var(--text-faint);
    font-size: 11px;
    letter-spacing: 0.2em;
  }
  .option-card h3 { font-weight: 700; font-size: 15px; margin-bottom: 8px; color: var(--text); }
  .option-card .price { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--text-dim); }
  .option-card .note { font-size: 11px; color: var(--text-faint); margin-top: 8px; }
  .option-card .brand { font-size: 11px; color: var(--text-faint); margin-top: 4px; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.05em; }
  .option-foot { font-size: 11px; color: var(--text-faint); margin-top: 24px; }

  /* ---------- Pricing ---------- */
  .price-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }
  @media (min-width: 768px) { .price-grid { grid-template-columns: repeat(3, 1fr); } }
  .price-card {
    border: 1px solid var(--border-soft);
    background: var(--bg);
    border-radius: 4px;
    padding: 32px 28px;
    transition: transform 0.2s;
  }
  .price-card.featured {
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
  @media (min-width: 768px) {
    .price-card.featured { transform: translateY(-12px); }
  }
  .price-dur {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
  }
  .price-amount { font-weight: 800; font-size: 40px; line-height: 1; letter-spacing: -0.03em; margin-bottom: 6px; color: var(--text); }
  @media (min-width: 768px) { .price-amount { font-size: 48px; } }
  .price-tax { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-faint); letter-spacing: 0.15em; }
  .price-badge {
    display: inline-block;
    margin-top: 20px;
    font-size: 10px;
    color: #fff;
    background: var(--accent);
    padding: 4px 10px;
    border-radius: 2px;
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  .price-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 32px;
  }
  @media (min-width: 768px) { .price-detail-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
  .price-detail h4 { font-weight: 700; font-size: 14px; margin-bottom: 12px; color: var(--text); }
  .price-table { width: 100%; }
  .price-table td { padding: 10px 0; border-bottom: 1px solid var(--border-soft); font-size: 13px; color: var(--text-muted); }
  .price-table td:last-child { text-align: right; font-family: 'JetBrains Mono', monospace; color: var(--text); }
  .price-detail p { font-size: 13px; color: var(--text-muted); line-height: 1.9; }
  .price-detail .periods { font-size: 12px; color: var(--text-dim); margin-top: 6px; }
  .fuel {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border-soft);
  }
  .fuel h4 { font-weight: 700; font-size: 14px; margin-bottom: 8px; color: var(--text); }
  .fuel p { font-size: 13px; color: var(--text-muted); line-height: 1.9; }

  /* ---------- Insurance ---------- */
  .ins-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }
  @media (min-width: 768px) { .ins-cards { grid-template-columns: 1fr 1fr; } }
  .ins-card {
    border: 1px solid var(--border-soft);
    background: var(--bg);
    border-radius: 4px;
    padding: 24px;
  }
  .ins-card .tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--text-dim);
    margin-bottom: 12px;
  }
  .ins-card h3 { font-weight: 700; font-size: 15px; margin-bottom: 8px; color: var(--text); }
  .ins-card .price { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
  .ins-card .desc { font-size: 11px; color: var(--text-dim); line-height: 1.8; }
  .ins-noc {
    border: 1px solid var(--border-soft);
    background: var(--bg);
    border-radius: 4px;
    padding: 24px;
    margin-bottom: 32px;
  }
  .ins-noc h4 { font-weight: 700; font-size: 14px; margin-bottom: 12px; color: var(--text); }
  .ins-noc .intro { font-size: 12px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
  .ins-noc table { width: 100%; font-size: 13px; }
  .ins-noc td { padding: 10px 0; border-bottom: 1px solid var(--border-soft); color: var(--text-muted); }
  .ins-noc td:last-child { text-align: right; font-family: 'JetBrains Mono', monospace; color: var(--text); }
  .ins-noc .foot { font-size: 11px; color: var(--text-faint); margin-top: 12px; }
  .ins-exclusions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; margin-bottom: 12px; }
  @media (min-width: 768px) { .ins-exclusions { grid-template-columns: repeat(3, 1fr); } }
  .ins-exclusions div { font-size: 12px; color: var(--text-muted); }

  /* ---------- Calendar ---------- */
  .cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    max-width: 560px;
  }
  .cal-day-head {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--text-faint);
    text-align: center;
    padding: 8px 0;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }
  .cal-day {
    aspect-ratio: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    border-radius: 2px;
    position: relative;
  }
  .cal-day.booked {
    background: #fde8e8;
    color: #b08080;
    text-decoration: line-through;
    border-color: #f0d8d8;
  }
  .cal-day.booked::after {
    content: '予約済';
    position: absolute;
    bottom: 2px;
    font-size: 7px;
    color: #c0888;
    letter-spacing: 0;
    text-decoration: none;
  }
  .cal-day.today {
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    border-color: var(--accent);
  }
  .cal-day.empty { visibility: hidden; }
  .cal-foot {
    margin-top: 32px;
    max-width: 560px;
  }
  .cal-foot p { font-size: 12px; color: var(--text-dim); line-height: 1.9; }

  /* ---------- Flow ---------- */
  .flow-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  @media (min-width: 768px) { .flow-grid { grid-template-columns: repeat(5, 1fr); gap: 16px; } }
  .flow-step .num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-faint); letter-spacing: 0.3em; margin-bottom: 12px; }
  .flow-step .title { font-weight: 600; font-size: 14px; line-height: 1.7; color: var(--text); }
  .flow-step { position: relative; }
  @media (min-width: 768px) {
    .flow-step:not(:last-child)::after {
      content: '→';
      position: absolute;
      top: 0;
      right: -12px;
      color: var(--text-faint);
    }
  }

  /* ---------- FAQ / Warnings (accordion) ---------- */
  .accordion {
    border-bottom: 1px solid var(--border-soft);
  }
  .accordion[open] { background: var(--bg-card); }
  .accordion-btn {
    width: 100%;
    text-align: left;
    padding: 20px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    color: var(--text);
    list-style: none;
    cursor: pointer;
  }
  .accordion-btn::-webkit-details-marker { display: none; }
  .accordion-btn .icon { color: var(--text-dim); font-size: 20px; transition: transform 0.2s; }
  .accordion[open] .icon { transform: rotate(45deg); }
  .accordion-body {
    padding: 0 16px 20px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.9;
  }
  .accordion-list { list-style: none; }
  .accordion-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-soft);
  }
  .accordion-list li:last-child { border-bottom: none; }
  @media (min-width: 600px) {
    .accordion-list li { flex-direction: row; justify-content: space-between; gap: 16px; }
  }
  .accordion-list .pen { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--text-muted); }
  .faq-wrap, .warn-wrap { max-width: 760px; }

  /* ---------- Cancellation ---------- */
  .cancel table { width: 100%; max-width: 560px; }
  .cancel th { text-align: left; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; padding: 12px 0; color: var(--text-dim); font-weight: 500; border-bottom: 1px solid var(--border); }
  .cancel th:last-child { text-align: right; }
  .cancel td { padding: 16px 0; border-bottom: 1px solid var(--border-soft); font-size: 14px; }
  .cancel td:first-child { color: var(--text-muted); }
  .cancel td:last-child { text-align: right; font-family: 'JetBrains Mono', monospace; color: var(--text); }

  /* ---------- Access ---------- */
  .access-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  @media (min-width: 768px) { .access-grid { grid-template-columns: 1fr 1.4fr; gap: 40px; } }
  .access-info > div { margin-bottom: 20px; }
  .access-info .label { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 6px; }
  .access-info .value { font-size: 14px; line-height: 1.9; color: var(--text); }
  .access-info .tel { font-family: 'JetBrains Mono', monospace; }
  .access-map {
    aspect-ratio: 16/10;
    border: 1px solid var(--border-soft);
    border-radius: 4px;
    overflow: hidden;
  }
  .access-map iframe { width: 100%; height: 100%; border: 0; }

  /* ---------- Footer ---------- */
  footer {
    border-top: 1px solid var(--border-soft);
    padding: 40px 24px;
    background: var(--bg-soft);
    color: var(--text);
  }
  @media (min-width: 768px) { footer { padding: 40px 56px; } }
  .footer-row {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: space-between;
  }
  @media (min-width: 768px) { .footer-row { flex-direction: row; align-items: flex-start; } }
  .footer-brand p { font-size: 11px; color: var(--text-dim); margin-top: 8px; }
  .footer-links { display: flex; flex-wrap: wrap; gap: 16px; font-size: 12px; color: var(--text-muted); }
  .footer-links a:hover { color: var(--text); }
  .footer-foot {
    margin-top: 32px;
    font-size: 11px;
    color: var(--text-faint);
  }

  /* ---------- Floating CTA (mobile) ---------- */
  .float-cta {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--line);
    color: #fff !important;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 14px;
    border-radius: 4px;
    font-size: 13px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.16);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
  }
  .float-cta.show { opacity: 1; pointer-events: auto; }
  @media (min-width: 768px) { .float-cta { display: none; } }

  /* ---------- Preview banner ---------- */
  .preview-banner {
    background: #ff6b35;
    color: #fff;
    text-align: center;
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
  }
