    :root {
      /* Dark (hero / dark bands) */
      --dark: #0c0e12;
      --dark-text: #fff;
      --dark-muted: rgba(255,255,255,.85);
      --dark-muted2: rgba(255,255,255,.55);
      --dark-border: rgba(255,255,255,.12);
      --dark-surface: rgba(255,255,255,.06);

      /* Light (body) */
      --bg: #faf9f7;
      --white: #ffffff;
      --text: #1a1a1a;
      --text2: #333;
      --muted: #4a4a4a;
      --muted2: #777;
      --border: #e5e2dd;
      --border2: #d4d0c9;
      --surface: #f3f1ed;

      /* Accents */
      --red: #c22d3a;
      --red-soft: rgba(194,45,58,.07);
      --red-border: rgba(194,45,58,.16);
      --gold: #9e7c38;
      --gold-bright: #c8a050;
      --gold-soft: rgba(158,124,56,.10);
      --gold-border: rgba(158,124,56,.22);

      /* Hero gold (brighter for dark bg) */
      --hgold: #c9a85c;
      --hgold-soft: rgba(201,168,92,.15);
      --hgold-border: rgba(201,168,92,.30);

      --radius: 10px;
      --radius-lg: 14px;
      --max: 980px;
      --ease: cubic-bezier(.4,0,.2,1);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
      line-height: 1.8;
      letter-spacing: .02em;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      line-break: strict;
      overflow-wrap: break-word;
      word-break: auto-phrase;
    }
    a { color: inherit; text-decoration: none; }
    .container { width: min(var(--max), calc(100% - 160px)); margin: 0 auto; }

    /* ════════════════════════════════
       NAV
    ════════════════════════════════ */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 50;
      backdrop-filter: blur(20px) saturate(1.4);
      -webkit-backdrop-filter: blur(20px) saturate(1.4);
      background: rgba(12,14,18,.75);
      border-bottom: 1px solid rgba(255,255,255,.08);
      transition: all .4s var(--ease);
    }
    .nav.scrolled {
      background: rgba(250,249,247,.92);
      border-bottom-color: var(--border);
    }
    .nav.scrolled .brand-mark,
    .nav.scrolled .nav-links a { color: var(--text); }
    .nav.scrolled .brand-sub { color: var(--muted2); }
    .nav.scrolled .nav-links a:hover { background: rgba(0,0,0,.05); color: var(--text); }
    .nav.scrolled .nav-links a.nav-btn,
    .nav.scrolled .nav-links li.nav-btn > a,
    .nav.scrolled a.nav-btn { background: var(--red); color: #fff !important; border: 1px solid var(--red); }
    .nav.scrolled .nav-links a.nav-btn svg,
    .nav.scrolled .nav-links li.nav-btn > a svg,
    .nav.scrolled a.nav-btn svg { stroke: #fff; }
    .nav.scrolled .nav-links a.nav-btn:hover,
    .nav.scrolled .nav-links li.nav-btn > a:hover,
    .nav.scrolled a.nav-btn:hover { background: #a8242f; color: #fff !important; filter: none; transform: translateY(-1px); }

    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 60px;
    }
    .brand { display: flex; align-items: baseline; gap: 12px; }
    .brand-mark {
      font-family: "Shippori Mincho", serif;
      font-weight: 800; font-size: 15px;
      letter-spacing: .10em;
      color: var(--dark-text);
      transition: color .4s var(--ease);
    }
    .brand-sub {
      font-size: 11px; letter-spacing: .14em;
      color: var(--dark-muted2);
      transition: color .4s var(--ease);
    }
    .nav-links {
      display: flex; align-items: center; gap: 4px;
      font-size: 12px; font-weight: 500;
    }
    /* wp_nav_menu ul/li reset */
    .nav-links .nav-menu,
    .nav-links ul {
      display: flex; align-items: center; gap: 4px;
      list-style: none; margin: 0; padding: 0;
    }
    .nav-links li { margin: 0; padding: 0; }
    .nav-links a {
      padding: 8px 14px; border-radius: 999px;
      color: var(--dark-muted);
      transition: all .25s var(--ease);
      white-space: nowrap;
    }
    .nav-links a:hover { color: #fff; background: rgba(255,255,255,.08); }
    .nav-btn,
    .nav-links a.nav-btn,
    .nav-links li.nav-btn > a {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 9px 20px; border-radius: 999px;
      font-size: 12px; font-weight: 600; letter-spacing: .04em;
      background: var(--hgold); color: #1a1400 !important;
      transition: all .4s var(--ease); white-space: nowrap;
    }
    .nav-btn:hover,
    .nav-links a.nav-btn:hover,
    .nav-links li.nav-btn > a:hover { transform: translateY(-1px); filter: brightness(1.08); color: #1a1400 !important; background: var(--hgold); }
    .nav-btn svg { width: 14px; height: 14px; }

    /* Hide subtitle on mid-width screens to keep nav on one line */
    @media (max-width: 1200px) {
      .brand-sub { display: none; }
      .nav-links { gap: 2px; }
      .nav-links a { padding: 8px 10px; font-size: 11px; }
      .nav-btn, .nav-links a.nav-btn, .nav-links li.nav-btn > a { padding: 8px 16px; font-size: 11px; }
    }

    /* ════════════════════════════════
       HERO (dark)
    ════════════════════════════════ */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex; align-items: flex-end;
      overflow: hidden;
      padding-top: 80px;
      background: var(--dark);
    }
    .hero-media { position: absolute; inset: -4px; z-index: 1; }
    .hero-media iframe {
      position: absolute; top: 50%; left: 50%;
      width: 130vw; height: 73.125vw;
      min-width: 100%; min-height: 100%;
      transform: translate(-50%,-50%);
      filter: contrast(1.06) saturate(1.1) brightness(.65);
      pointer-events: none; border: 0;
    }
    /* Vertical video for mobile, horizontal for desktop */
    .hero-media--mobile { display: none; }
    .hero-media--mobile iframe {
      width: 100vw; height: 177.78vw; /* 9:16 ratio */
      min-width: 100%; min-height: 100%;
    }
    .hero-overlay {
      position: absolute; inset: 0; z-index: 2;
      background:
        linear-gradient(to bottom,
          rgba(12,14,18,.55) 0%,
          rgba(12,14,18,.10) 30%,
          rgba(12,14,18,.75) 70%,
          var(--bg) 100%
        );
      pointer-events: none;
    }
    .hero-content {
      position: relative; z-index: 3;
      padding: 0 0 80px;
    }
    .hero-upper { /* no special layout on desktop */ }
    .hero-kicker {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 0;
      border: none;
      background: none;
      color: rgba(255,255,255,.85);
      font-family: "EB Garamond", serif;
      font-size: 15px; font-weight: 500;
      letter-spacing: .18em; text-transform: uppercase;
      animation: fadeUp .8s var(--ease) both;
    }
    .hero-kicker .dot {
      width: 6px; height: 6px; border-radius: 50%; background: var(--hgold);
    }
    h1 {
      margin: 20px 0 0;
      font-family: "Shippori Mincho", serif;
      font-weight: 800;
      font-size: clamp(48px, 7vw, 92px);
      line-height: 1.05; letter-spacing: .08em;
      color: #fff;
      text-shadow: 0 8px 40px rgba(0,0,0,.5);
      animation: fadeUp .8s .1s var(--ease) both;
    }
    .hero-lead {
      max-width: 680px; margin: 16px 0 0;
      color: var(--dark-muted);
      font-size: clamp(14px, 1.6vw, 17px);
      line-height: 2;
      animation: fadeUp .8s .2s var(--ease) both;
    }
    .hero-cards {
      display: grid; grid-template-columns: 1.4fr 1fr;
      gap: 16px; margin-top: 36px;
      animation: fadeUp .8s .35s var(--ease) both;
      min-width: 0;
    }
    .hcard {
      border-radius: var(--radius-lg);
      background: rgba(0,0,0,.35);
      border: 1px solid rgba(255,255,255,.14);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      overflow: hidden;
      min-width: 0;
    }
    .hcard-body { padding: 24px; }
    .hcard h2 {
      font-family: "Shippori Mincho", serif;
      font-weight: 700; font-size: 20px;
      letter-spacing: .06em; margin-bottom: 10px;
      color: #fff;
    }
    .hcard p { color: rgba(255,255,255,.95); font-size: 15px; line-height: 1.95; }
    .hero-ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

    /* Buttons (dark context) */
    .btn-dark {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      padding: 12px 22px; border-radius: 999px;
      font-size: 14px; font-weight: 600; letter-spacing: .03em;
      border: 1px solid rgba(255,255,255,.18);
      background: rgba(255,255,255,.08);
      color: #fff;
      cursor: pointer; transition: all .25s var(--ease); white-space: nowrap;
    }
    .btn-dark:hover { transform: translateY(-1px); background: rgba(255,255,255,.12); }
    .btn-dark.primary {
      background: var(--hgold); color: #1a1400; border-color: var(--hgold);
    }
    .btn-dark.primary:hover { filter: brightness(1.1); }
    .btn-dark svg { width: 16px; height: 16px; }

    /* Buttons (light context) */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      padding: 12px 24px; border-radius: 999px;
      font-size: 14px; font-weight: 600; letter-spacing: .03em;
      border: 1px solid var(--border2);
      background: var(--white); color: var(--text);
      cursor: pointer; transition: all .25s var(--ease); white-space: nowrap;
      box-shadow: 0 1px 3px rgba(0,0,0,.06);
    }
    .btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,.08); }
    .btn-primary {
      background: var(--red); color: #fff; border-color: var(--red);
      box-shadow: 0 2px 8px rgba(194,45,58,.22);
    }
    .btn-primary:hover { background: #a8242f; box-shadow: 0 4px 16px rgba(194,45,58,.28); }
    .btn svg { width: 16px; height: 16px; }

    .hcard-note { margin-top: 10px; font-size: 12px; color: var(--dark-muted2); }

    /* Hero highlight list */
    .highlights { list-style: none; display: flex; flex-direction: column; }
    .highlights li {
      display: flex; align-items: center; gap: 12px;
      padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08);
      color: #fff; font-size: 15px;
    }
    .highlights li:last-child { border-bottom: none; }
    .hpill {
      display: inline-flex; align-items: center; justify-content: center;
      min-width: 52px; padding: 5px 12px; border-radius: 999px;
      background: var(--hgold-soft); border: 1px solid var(--hgold-border);
      color: var(--hgold); font-size: 12px; font-weight: 600;
      letter-spacing: .06em; white-space: nowrap;
    }

    /* ════════════════════════════════
       LIGHT SECTIONS
    ════════════════════════════════ */
    .section-light {
      padding: 80px 0;
      background: var(--bg);
      border-bottom: 1px solid var(--border);
    }
    .section-white {
      padding: 80px 0;
      background: var(--white);
      border-bottom: 1px solid var(--border);
    }
    .section-label {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: "EB Garamond", serif;
      font-size: 13px; font-weight: 500;
      letter-spacing: .14em; text-transform: uppercase;
      color: var(--red); margin-bottom: 12px;
    }
    .section-label .dot {
      width: 5px; height: 5px; border-radius: 50%; background: var(--red);
    }
    .section-title {
      font-family: "Shippori Mincho", serif;
      font-weight: 700;
      font-size: clamp(24px, 3vw, 32px);
      letter-spacing: .06em; color: var(--text);
      margin-bottom: 8px;
      word-break: auto-phrase;
      overflow-wrap: break-word;
    }
    .section-subtitle {
      color: var(--muted); font-size: 15px;
      max-width: 600px; margin-bottom: 40px;
      line-height: 1.9;
    }

    /* ── Red accent line for section header ── */
    .section-title::after {
      content: "";
      display: block;
      width: 40px; height: 2px;
      background: var(--red);
      margin-top: 14px;
      border-radius: 1px;
    }

    /* ════════════════════════════════
       APPEAL CARDS
    ════════════════════════════════ */
    .appeal-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .appeal-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px 22px;
      display: flex; flex-direction: column; gap: 14px;
      transition: all .3s var(--ease);
    }
    .appeal-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(0,0,0,.06);
      border-color: var(--border2);
    }
    .appeal-icon {
      width: 44px; height: 44px; border-radius: 12px;
      background: var(--red-soft); border: 1px solid var(--red-border);
      display: flex; align-items: center; justify-content: center;
      color: var(--red);
    }
    .appeal-card h4 {
      font-family: "Shippori Mincho", serif;
      font-weight: 700; font-size: 17px;
      letter-spacing: .04em; color: var(--text);
      line-height: 1.55;
    }
    .appeal-card p { color: var(--text2); font-size: 15px; line-height: 1.85; }

    /* ════════════════════════════════
       ACCORDION (light)
    ════════════════════════════════ */
    .accordion { display: flex; flex-direction: column; gap: 8px; }
    .accordion-item {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      background: var(--white);
      transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
    }
    .accordion-item:has([open]) {
      border-color: var(--border2);
      box-shadow: 0 4px 16px rgba(0,0,0,.04);
    }
    .accordion-item summary {
      display: flex; align-items: center; gap: 14px;
      padding: 20px 24px; cursor: pointer; list-style: none;
      font-weight: 600; font-size: 16px; color: var(--text);
      transition: background .2s var(--ease); user-select: none;
    }
    .accordion-item summary::-webkit-details-marker { display: none; }
    .accordion-item summary::after {
      content: "";
      margin-left: auto; width: 20px; height: 20px; flex-shrink: 0;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23999' stroke-width='2'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/contain no-repeat;
      transition: transform .3s var(--ease), opacity .3s;
    }
    .accordion-item details[open] summary::after {
      transform: rotate(45deg); opacity: .5;
    }
    .accordion-item summary:hover { background: var(--surface); }
    .accordion-body {
      padding: 16px 24px 22px 24px;
      margin: 0 16px;
      border-top: 1px solid var(--border);
      color: var(--text2); font-size: 15px; line-height: 1.95;
      animation: accordionIn .3s var(--ease);
    }
    .accordion-body p + p { margin-top: 10px; }
    .accordion-tag {
      display: inline-flex; padding: 3px 10px; border-radius: 999px;
      background: var(--gold-soft); color: var(--gold);
      font-size: 12px; font-weight: 700; letter-spacing: .06em; margin-right: 4px;
    }
    .accordion-q {
      font-family: "Shippori Mincho", serif;
      font-weight: 800; color: var(--red); font-size: 15px;
      letter-spacing: .04em; flex-shrink: 0;
    }

    @keyframes accordionIn {
      from { opacity: 0; transform: translateY(-6px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ════════════════════════════════
       TWO-COLUMN LAYOUT
    ════════════════════════════════ */
    .two-col {
      display: grid; grid-template-columns: 340px 1fr;
      gap: 48px; align-items: start;
    }
    .two-col-sticky { position: sticky; top: 100px; }
    .two-col-sticky .section-title {
      font-size: clamp(20px, 2.5vw, 26px);
    }

    /* ════════════════════════════════
       DARK BAND (system details)
    ════════════════════════════════ */
    .section-dark {
      padding: 80px 0;
      background: var(--dark);
      color: var(--dark-text);
      border-bottom: none;
    }
    .section-dark .section-label { color: var(--hgold); }
    .section-dark .section-label .dot { background: var(--hgold); }
    .section-dark .section-title { color: #fff; }
    .section-dark .section-title::after { background: var(--hgold); }
    .section-dark .section-subtitle { color: rgba(255,255,255,.8); }
    .section-dark .section-desc { color: rgba(255,255,255,.85); font-size: 15px; line-height: 1.95; margin-bottom: 24px; }
    .section-dark .btn-outline {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 10px 20px; border-radius: 999px;
      font-size: 13px; font-weight: 600;
      border: 1px solid rgba(255,255,255,.18);
      background: rgba(255,255,255,.06); color: #fff;
      transition: all .25s var(--ease); white-space: nowrap;
    }
    .section-dark .btn-outline:hover { background: rgba(255,255,255,.10); }

    /* Dark accordion overrides */
    .section-dark .accordion-item {
      border-color: var(--dark-border);
      background: rgba(255,255,255,.04);
    }
    .section-dark .accordion-item:has([open]) {
      border-color: rgba(255,255,255,.18);
      box-shadow: 0 4px 20px rgba(0,0,0,.3);
    }
    .section-dark .accordion-item summary {
      color: #fff;
      padding: 20px 24px;
    }
    .section-dark .accordion-item summary::after {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='rgba(255,255,255,.35)' stroke-width='2'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
    }
    .section-dark .accordion-item summary:hover { background: rgba(255,255,255,.04); }
    .section-dark .accordion-body { color: rgba(255,255,255,.9); padding: 16px 24px 22px 24px; border-top-color: var(--dark-border); }
    .section-dark .accordion-tag {
      background: var(--hgold-soft); color: var(--hgold);
    }

    /* ════════════════════════════════
       REQUIREMENTS
    ════════════════════════════════ */
    .req-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .req-card {
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      padding: 32px 28px;
      background: var(--white);
    }
    .req-card h4 {
      font-family: "Shippori Mincho", serif;
      font-weight: 700; font-size: 18px;
      letter-spacing: .04em; margin-bottom: 18px;
      display: flex; align-items: center; gap: 12px;
      color: var(--text);
    }
    .req-card h4 .icon {
      width: 34px; height: 34px; border-radius: 10px;
      background: var(--gold-soft); border: 1px solid var(--gold-border);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); flex-shrink: 0;
    }
    .req-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .req-list li {
      display: flex; align-items: flex-start; gap: 10px;
      color: var(--text2); font-size: 15px; line-height: 1.8;
    }
    .req-list li::before {
      content: ""; width: 5px; height: 5px; border-radius: 50%;
      background: var(--gold); margin-top: 10px; flex-shrink: 0;
    }

    /* ════════════════════════════════
       TIMELINE
    ════════════════════════════════ */
    .timeline { display: flex; flex-direction: column; }
    .tl-item {
      display: grid; grid-template-columns: 80px 48px 1fr;
      gap: 16px; padding: 22px 0;
      border-bottom: 1px solid var(--border);
      align-items: center;
    }
    .tl-item:last-child { border-bottom: none; }
    .tl-step {
      font-family: "Shippori Mincho", serif;
      font-weight: 800; font-size: 14px;
      letter-spacing: .10em; color: var(--red);
    }
    .tl-icon {
      width: 48px; height: 48px; border-radius: 50%;
      background: var(--red-soft); border: 1px solid var(--red-border);
      display: flex; align-items: center; justify-content: center;
      color: var(--red); flex-shrink: 0;
    }
    .tl-icon svg { width: 22px; height: 22px; }
    .tl-title { font-weight: 600; font-size: 16px; margin-bottom: 4px; color: var(--text); }
    .tl-desc { color: var(--text2); font-size: 15px; }

    /* ════════════════════════════════
       BOTTOM CTA
    ════════════════════════════════ */
    .cta-section {
      padding: 80px 0;
      background: var(--surface);
    }
    .cta-box {
      border-radius: var(--radius-lg);
      padding: 52px 48px;
      background: var(--white);
      border: 1px solid var(--border);
      box-shadow: 0 4px 24px rgba(0,0,0,.04);
      text-align: center;
    }
    .cta-box .section-title { margin-bottom: 12px; }
    .cta-box .section-title::after { margin: 14px auto 0; }
    .cta-box p {
      color: var(--text2); font-size: 15px;
      max-width: 540px; margin: 0 auto 28px;
    }
    .cta-buttons { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

    /* ════════════════════════════════
       FOOTER
    ════════════════════════════════ */
    footer {
      background: #f0f0ee;
      color: var(--text2);
      padding: 0;
    }
    .footer-top {
      padding: 56px 0 48px;
      border-bottom: 1px solid var(--border);
    }
    .footer-top h3 {
      font-family: "Shippori Mincho", serif;
      font-weight: 700;
      font-size: 22px;
      letter-spacing: .06em;
      color: var(--text);
      margin-bottom: 32px;
      text-align: center;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
    .footer-info h4 {
      font-weight: 700;
      font-size: 14px;
      color: var(--text);
      margin-bottom: 14px;
      letter-spacing: .04em;
    }
    .footer-info p {
      font-size: 13px;
      line-height: 2;
      color: var(--text2);
    }
    .footer-info a {
      color: var(--text2);
      text-decoration: underline;
      text-underline-offset: 3px;
      text-decoration-color: rgba(0,0,0,.2);
      transition: color .2s;
    }
    .footer-info a:hover { color: var(--text); }
    .footer-desc {
      font-size: 13px;
      line-height: 2;
      color: var(--text2);
    }
    .footer-bottom {
      padding: 20px 0;
      text-align: center;
      font-size: 11px;
      color: var(--muted2);
      letter-spacing: .06em;
      border-top: 1px solid var(--border);
    }

    /* ════════════════════════════════
       ANIMATIONS
    ════════════════════════════════ */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .reveal {
      opacity: 0; transform: translateY(24px);
      transition: opacity .7s var(--ease), transform .7s var(--ease);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ════════════════════════════════
       ANNOUNCEMENT SECTIONS
    ════════════════════════════════ */
    .announce-wrap {
      background: var(--white);
      border-top: 1px solid var(--border);
    }
    .announce-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }
    .announce-panel {
      padding: 64px 48px;
      position: relative;
    }
    .announce-panel + .announce-panel {
      border-left: 1px solid var(--border);
    }
    .announce-panel .section-label { margin-bottom: 8px; }
    .announce-panel .section-title {
      font-size: 22px; margin-bottom: 14px;
    }
    .announce-panel .section-title::after { margin-top: 10px; }
    .announce-lead {
      color: var(--text2); font-size: 15px; line-height: 2;
      margin-bottom: 20px;
    }
    .announce-note {
      color: var(--muted); font-size: 13px; line-height: 1.85;
      margin-top: 10px;
    }
    .announce-cta {
      margin-top: 28px;
    }
    .info-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 15px;
    }
    .info-table tr {
      border-bottom: 1px solid var(--border);
    }
    .info-table tr:last-child { border-bottom: none; }
    .info-table th {
      text-align: left; vertical-align: top;
      padding: 12px 16px 12px 0;
      font-weight: 600; color: var(--text);
      white-space: nowrap;
      width: 80px;
      font-size: 14px;
    }
    .info-table td {
      padding: 12px 0;
      color: var(--text2);
      line-height: 1.85;
      font-size: 15px;
    }
    .venue-block { margin-bottom: 12px; }
    .venue-block:last-child { margin-bottom: 0; }
    .venue-name {
      font-weight: 600; color: var(--text);
      font-size: 15px;
    }
    .venue-address {
      font-size: 13px; color: var(--muted);
      margin-top: 1px;
    }
    .venue-map {
      font-size: 13px; color: var(--gold);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .seminar-note {
      color: var(--muted); font-size: 14px;
      line-height: 1.8;
    }

    /* ════════════════════════════════
       RESPONSIVE
    ════════════════════════════════ */
    @media (max-width: 900px) {
      .container { width: calc(100% - 32px); }
      .nav-links { display: none; }
      .hero { min-height: auto; padding-top: 0; align-items: stretch; }
      .hero-media--desktop { display: none; }
      .hero-media--mobile { display: block; position: absolute; top: 0; left: -4px; right: -4px; height: 100svh; overflow: hidden; }
      .hero-media--mobile iframe { width: 100vw; height: 177.78vw; min-height: 100svh; filter: contrast(1.06) saturate(1.1) brightness(.75); }
      .hero-cards { grid-template-columns: 1fr; margin-top: 0; padding-top: 20px; padding-bottom: 40px; }
      .hero-content { padding-bottom: 0; padding-top: 0; }
      .hero-upper {
        min-height: 100svh;
        display: flex; flex-direction: column; justify-content: center;
        padding: 80px 0 40px;
      }
      h1 { font-size: clamp(48px, 14vw, 68px); }
      .hero-lead { font-size: 14px; line-height: 1.9; }
      .hero-kicker { font-size: 13px; }
      .hero-overlay {
        height: 100svh;
        bottom: auto;
        background:
          linear-gradient(to bottom,
            rgba(12,14,18,.3) 0%,
            rgba(12,14,18,.08) 25%,
            rgba(12,14,18,.08) 55%,
            rgba(12,14,18,.7) 80%,
            rgba(12,14,18,.95) 100%
          );
      }
      .hcard-body { padding: 20px 18px; }
      .appeal-grid { grid-template-columns: 1fr 1fr; }
      .two-col { grid-template-columns: 1fr; gap: 24px; }
      .two-col-sticky { position: static; }
      .two-col-sticky .section-title { font-size: 20px; letter-spacing: .03em; }
      .req-grid { grid-template-columns: 1fr; }
      .cta-box { padding: 36px 24px; }
      .section-light, .section-white, .section-dark { padding: 56px 0; }
      .section-title { font-size: 22px; letter-spacing: .04em; }
      .footer-grid { grid-template-columns: 1fr; gap: 24px; }
      .announce-grid { grid-template-columns: 1fr; }
      .announce-panel { padding: 48px 0; }
      .announce-panel + .announce-panel { border-left: none; border-top: 1px solid var(--border); }
      .announce-panel .section-title { font-size: 20px; }
      .accordion-item summary { padding: 16px 18px; font-size: 13px; }
      .accordion-body { padding: 14px 18px 20px 18px; margin: 0 10px; }
      .btn-dark, .btn { padding: 11px 18px; font-size: 12px; }
      .hero-ctas { gap: 8px; }
    }
    @media (max-width: 560px) {
      .container { width: calc(100% - 24px); }
      .appeal-grid { grid-template-columns: 1fr; }
      .tl-item { grid-template-columns: 1fr; gap: 8px; }
      .tl-icon { width: 40px; height: 40px; }
      .tl-icon svg { width: 18px; height: 18px; }
      .hero-cards { gap: 12px; }
      .hcard-body { padding: 18px 16px; }
      h1 { font-size: clamp(40px, 12vw, 56px); }
    }
    .nav-inner > .nav-btn { display: none; }
    @media (max-width: 900px) {
      .nav-inner > .nav-btn { display: inline-flex; }
    }

/* ════════════════════════════════
   WORDPRESS INTEGRATION
════════════════════════════════ */

/* Prevent WP block editor defaults from overriding theme layout */
.wp-site-blocks { padding-top: 0 !important; }
.wp-site-blocks > header + * { margin-top: 0 !important; }

/* Static Hero — for inner pages using featured images */
.hero-static {
  position: relative;
  min-height: 50vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  padding: 80px 0 64px;
  background: var(--dark);
}
.hero-static-img {
  position: absolute; inset: 0; z-index: 1;
}
.hero-static-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.06) saturate(1.1) brightness(.55);
}
.hero-static .hero-overlay {
  z-index: 2;
  background:
    linear-gradient(to bottom,
      rgba(12,14,18,.55) 0%,
      rgba(12,14,18,.15) 40%,
      rgba(12,14,18,.65) 100%
    );
}
.hero-static .hero-content {
  position: relative; z-index: 3;
}
.hero-static h1 {
  font-size: clamp(32px, 5vw, 56px);
  margin-top: 12px;
}
.hero-static .hero-lead {
  font-size: clamp(14px, 1.4vw, 16px);
}

@media (max-width: 900px) {
  .hero-static { min-height: 40vh; padding: 120px 0 48px; }
  .hero-static h1 { font-size: clamp(28px, 8vw, 40px); }
}

/* ── Page content area ── */
.page-content {
  padding: 64px 0;
}
.page-content .container {
  max-width: 800px;
}
.page-content h2 {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 28px);
  letter-spacing: .06em;
  color: var(--text);
  margin: 48px 0 16px;
}
.page-content h2:first-child { margin-top: 0; }
.page-content h2::after {
  content: "";
  display: block;
  width: 32px; height: 2px;
  background: var(--red);
  margin-top: 10px;
}
.page-content p {
  color: var(--text2);
  font-size: 15px;
  line-height: 2;
  margin-bottom: 20px;
}
.page-content ul, .page-content ol {
  padding-left: 1.2em;
  margin-bottom: 20px;
  color: var(--text2);
  font-size: 15px;
  line-height: 2;
}

/* ════════════════════════════════
   BLOG LISTING GRID
════════════════════════════════ */
.blog-listing { background: var(--white); }
.blog-listing .container,
.blog-query { width: min(var(--max), calc(100% - 160px)); margin: 0 auto; }

/* 3-column grid */
.blog-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}

/* Card container */
.blog-card {
  display: flex;
  flex-direction: column;
  text-align: center;
}

/* Featured image */
.blog-card .wp-block-post-featured-image {
  overflow: hidden;
  margin: 0;
}
.blog-card .wp-block-post-featured-image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  filter: grayscale(0.15);
  transition: transform .4s var(--ease), filter .4s var(--ease);
}
.blog-card:hover .wp-block-post-featured-image img {
  transform: scale(1.03);
  filter: grayscale(0);
}

/* Card body */
.blog-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Category label */
.blog-card-cat {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
}

/* Title */
.blog-card-title {
  font-family: "Shippori Mincho", serif;
}
.blog-card-title a {
  text-decoration: none;
  transition: color .25s var(--ease);
}
.blog-card-title a:hover {
  color: var(--red) !important;
}

/* Divider line under title */
.blog-card .blog-card-title::after {
  content: "";
  display: block;
  width: 40px; height: 1px;
  background: var(--border2);
  margin: 14px auto 0;
}

/* Excerpt */
.blog-card-excerpt {
  text-align: center;
}
.blog-card-excerpt .wp-block-post-excerpt__excerpt {
  margin: 0;
}

/* Date */
.blog-card-date {
  padding-top: 16px;
  border-top: 1px solid var(--border);
  width: 100%;
}

/* ── Pagination ── */
.blog-pagination {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  gap: 8px;
  font-size: 14px;
}
.blog-pagination .wp-block-query-pagination-numbers {
  display: flex;
  gap: 4px;
}
.blog-pagination a,
.blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px; height: 36px;
  padding: 0 10px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--text);
  text-decoration: none;
  transition: all .2s var(--ease);
}
.blog-pagination a:hover {
  background: var(--surface);
  color: var(--text);
}
.blog-pagination .current,
.blog-pagination span[aria-current="page"] {
  background: var(--text);
  color: #fff;
  font-weight: 600;
}
.blog-pagination .wp-block-query-pagination-previous,
.blog-pagination .wp-block-query-pagination-next {
  font-size: 13px;
  color: var(--muted);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .blog-query { width: calc(100% - 32px); }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px 24px;
  }
}
@media (max-width: 560px) {
  .blog-query { width: calc(100% - 24px); }
  .blog-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
  .blog-card-title { font-size: 16px !important; }
}

/* ════════════════════════════════
   WP ADMIN BAR OFFSET
════════════════════════════════ */
html.wp-toolbar { padding-top: 0 !important; }
body.admin-bar .nav,
.admin-bar .nav,
.admin-bar #nav {
  top: 32px !important;
}
body.admin-bar .hero,
body.admin-bar .hero-static {
  margin-top: 0;
}
@media (max-width: 782px) {
  body.admin-bar .nav,
  .admin-bar .nav,
  .admin-bar #nav {
    top: 46px !important;
  }
}

/* ── Footer bottom layout ── */
.footer-bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.footer-sep {
  color: var(--muted2);
  margin: 0 8px;
  font-size: 12px;
}
.footer-privacy {
  color: var(--muted2);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: .06em;
  transition: color .25s var(--ease);
}
.footer-privacy:hover {
  color: var(--text);
}

/* ════════════════════════════════
   MOBILE NAV
════════════════════════════════ */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; padding: 6px;
  background: none; border: none; cursor: pointer;
  z-index: 1001;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--dark-muted);
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.nav.scrolled .nav-toggle span { background: var(--text); }

/* Show hamburger on mobile */
@media (max-width: 900px) {
  .nav-toggle { display: flex !important; }
}

/* Open state */
.nav.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile dropdown panel */
@media (max-width: 900px) {
  .nav.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(250,249,247,.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
    animation: navSlideDown .25s var(--ease);
  }
  .nav.nav-open .nav-links .nav-menu,
  .nav.nav-open .nav-links ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .nav.nav-open .nav-links li { width: 100%; }
  .nav.nav-open .nav-links a {
    display: block;
    padding: 14px 16px;
    color: var(--text) !important;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    font-size: 14px;
  }
  .nav.nav-open .nav-links a:hover {
    background: rgba(0,0,0,.03);
    color: var(--red) !important;
  }
  .nav.nav-open .nav-links li:last-child a {
    border-bottom: none;
  }
  .nav.nav-open .nav-links li.nav-btn > a {
    background: var(--red);
    color: #fff !important;
    border-radius: 8px;
    text-align: center;
    margin-top: 12px;
    border-bottom: none;
    padding: 14px 20px;
    display: block;
    width: auto;
  }
  .nav.nav-open .nav-links li.nav-btn {
    background: none;
    padding: 0;
  }
  @keyframes navSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

/* ════════════════════════════════
   SINGLE POST
════════════════════════════════ */
/* Stronger overlay for title readability */
.single .hero-static {
  min-height: 35vh;
  padding: 80px 0 48px;
}
.single .hero-static-img img,
#post-hero-img {
  object-position: top center !important;
}
.single .hero-static .hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(12,14,18,.4) 0%,
    rgba(12,14,18,.7) 60%,
    rgba(12,14,18,.9) 100%
  ) !important;
}
.single .hero-content h1,
.single .hero-static h1 {
  font-size: clamp(22px, 4vw, 32px) !important;
  line-height: 1.6;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
  letter-spacing: .04em;
  color: #fff !important;
}
/* Post content area margins */
.page-content.section-white {
  padding: 56px 0;
}
.page-content .wp-block-group,
.page-content .wp-block-post-content {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.page-content .wp-block-post-content p,
.page-content .wp-block-post-content h2,
.page-content .wp-block-post-content h3,
.page-content .wp-block-post-content h4,
.page-content .wp-block-post-content ul,
.page-content .wp-block-post-content ol,
.page-content .wp-block-post-content blockquote {
  max-width: 100%;
}
.page-content .wp-block-post-content p {
  font-size: 15px;
  line-height: 2;
  color: #333;
}
.page-content .wp-block-post-content h2 {
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .04em;
  margin: 48px 0 20px;
  color: var(--text);
}
.page-content .wp-block-post-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 36px 0 16px;
  color: var(--text);
}

/* ════════════════════════════════
   COUNTRY CARDS
════════════════════════════════ */
.country-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 960px;
  margin-top: 40px;
}
.country-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  background: #fff;
  transition: box-shadow .3s var(--ease);
}
/* Open card spans full width */
.country-card:has(details[open]) {
  grid-column: 1 / -1;
}
.country-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.12);
}
.country-card details {
  border: none;
}
.country-card summary {
  list-style: none;
  padding: 0;
  cursor: pointer;
}
.country-card summary::-webkit-details-marker { display: none; }
.country-card summary::marker { display: none; content: ""; }

/* Thumbnail header */
.country-thumb {
  position: relative;
  height: 120px;
  background-size: cover;
  background-position: top center;
  display: flex;
  align-items: flex-end;
  padding: 16px 20px;
  transition: height .4s var(--ease);
}
/* Expand thumb when open to reveal full image */
details[open] .country-thumb {
  height: 280px;
}
.country-thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12,14,18,.05) 0%,
    rgba(12,14,18,.6) 100%
  );
  transition: opacity .3s var(--ease);
}
.country-name {
  position: relative; z-index: 2;
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
details[open] .country-name {
  font-size: 22px;
}
.country-toggle {
  position: absolute; top: 12px; right: 16px;
  z-index: 2;
  color: rgba(255,255,255,.8);
  font-size: 20px;
  font-weight: 300;
  transition: transform .3s var(--ease);
}
details[open] .country-toggle {
  transform: rotate(45deg);
}

/* Info section */
.country-info {
  padding: 24px 32px;
}
/* Two-column layout for info when card is full-width */
.country-card:has(details[open]) .country-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
}
.country-facts {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0;
}
.country-facts th {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-align: left;
  padding: 8px 16px 8px 0;
  white-space: nowrap;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
  width: 80px;
}
.country-facts td {
  font-size: 13px;
  color: var(--text);
  padding: 8px 0;
  line-height: 1.7;
  border-bottom: 1px solid var(--border);
}
.country-notes p {
  font-size: 13px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 12px;
}
.country-tips {
  margin-top: 16px;
  padding: 16px 20px;
  background: #faf8f5;
  border-radius: 8px;
  border-left: 3px solid var(--hgold);
}
.country-tips h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.country-tips p {
  font-size: 13px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 0;
}

/* Expand animation */
.country-body {
  animation: countryReveal .35s var(--ease);
}
@keyframes countryReveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Responsive */
@media (max-width: 900px) {
  .country-grid { grid-template-columns: 1fr; max-width: 600px; }
  .country-card:has(details[open]) .country-info {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .country-thumb { height: 100px; }
  details[open] .country-thumb { height: 200px; }
  .country-info { padding: 20px 16px; }
  .country-name { font-size: 16px; }
  details[open] .country-name { font-size: 18px; }
}

/* ════════════════════════════════
   REQUEST FORM
════════════════════════════════ */
.ihcsa-form-wrap {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
@media (min-width: 768px) { .ihcsa-form-wrap { padding: 40px 44px; } }

.ihcsa-form-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  color: var(--text2);
  line-height: 1.9;
  font-size: 14px;
}
.ihcsa-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 22px;
}
.ihcsa-field {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
  .ihcsa-field {
    grid-template-columns: 220px 1fr;
    align-items: start;
    gap: 16px;
  }
}
.ihcsa-field:last-child { border-bottom: none; }
.ihcsa-label {
  font-weight: 600;
  color: var(--text);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 12px;
}
.ihcsa-required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red);
  border: 1px solid var(--red-border);
}
.ihcsa-optional {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold);
  border: 1px solid var(--gold-border);
}
.ihcsa-control input,
.ihcsa-control select,
.ihcsa-control textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  font-family: inherit;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.ihcsa-control select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23777' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.ihcsa-control textarea {
  min-height: 120px;
  resize: vertical;
}
.ihcsa-control input::placeholder,
.ihcsa-control textarea::placeholder {
  color: var(--muted2);
}
.ihcsa-control input:focus,
.ihcsa-control select:focus,
.ihcsa-control textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(158,124,56,.14);
}
/* Validation error on field */
.ihcsa-control input.is-error,
.ihcsa-control select.is-error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(194,45,58,.1);
}
.ihcsa-help {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  margin-top: 6px;
}
.ihcsa-errors {
  margin-top: 14px;
  border: 1px solid var(--red-border);
  background: var(--red-soft);
  border-radius: 14px;
  padding: 14px 16px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.9;
}
.ihcsa-errors ul { margin: 6px 0 0; padding-left: 18px; }
.ihcsa-errors li { margin-bottom: 2px; }
.ihcsa-success {
  margin-top: 14px;
  border: 1px solid var(--gold-border);
  background: var(--gold-soft);
  border-radius: 14px;
  padding: 20px;
  font-size: 14px;
  line-height: 1.9;
}
.ihcsa-privacy {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.8;
}
.ihcsa-privacy input[type="checkbox"] {
  margin-top: 5px;
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.ihcsa-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--red) !important;
  color: #fff !important;
  border-color: var(--red) !important;
}
.btn-primary:hover {
  background: #a8242f !important;
  border-color: #a8242f !important;
}

/* Confirm view */
.ihcsa-confirm { display: none; }
.ihcsa-confirm.active { display: block; }
.ihcsa-entry.hidden { display: none; }
.ihcsa-confirm-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 14px;
}
.ihcsa-confirm-table tr { border-bottom: 1px solid var(--border); }
.ihcsa-confirm-table th {
  width: 32%;
  text-align: left;
  vertical-align: top;
  padding: 14px 10px 14px 0;
  font-weight: 600;
  font-size: 13px;
  color: var(--muted);
}
.ihcsa-confirm-table td {
  padding: 14px 0;
  color: var(--text);
  line-height: 1.85;
  word-break: break-word;
}
@media (max-width: 560px) {
  .ihcsa-form-wrap { padding: 20px 16px; border-radius: 12px; }
  .ihcsa-confirm-table th { width: 35%; font-size: 12px; }
}

/* ─── Social Strip ─── */
.social-strip {
  padding: 40px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.social-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.social-strip-label {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .03em;
}
.social-strip-links {
  display: flex;
  gap: 12px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all .25s var(--ease);
}
.social-link svg { flex-shrink: 0; }
.social-link--x {
  background: var(--dark);
  color: #fff;
  border: 1px solid var(--dark);
}
.social-link--x:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.social-link--fb {
  background: #1877F2;
  color: #fff;
  border: 1px solid #1877F2;
}
.social-link--fb:hover {
  background: #1565c0;
  border-color: #1565c0;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(24,119,242,.25);
}
.social-link--ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  border: 1px solid transparent;
}
.social-link--ig:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(220,39,67,.3);
}
@media (max-width: 560px) {
  .social-strip-inner {
    flex-direction: column;
    gap: 14px;
  }
  .social-strip-links {
    flex-direction: column;
    width: 100%;
  }
  .social-link {
    justify-content: center;
    width: 100%;
  }
}

/* ─── Featured Interview ─── */
.featured-interview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  background: var(--dark);
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
}
@media (min-width: 768px) {
  .featured-interview {
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
  }
}
.featured-interview-video {
  position: relative;
  background: #000;
}
@media (min-width: 768px) {
  .featured-interview-video {
    border-radius: 16px 0 0 16px;
    overflow: hidden;
  }
  .featured-interview-video iframe { border-radius: 0 !important; }
}
@media (max-width: 767px) {
  .featured-interview-video { padding: 16px 16px 0; }
}
.featured-interview-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .featured-interview-body { padding: 36px 40px; }
}
.featured-interview-kicker {
  font-family: "EB Garamond", serif;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 10px;
}
.featured-interview-name {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: .06em;
  color: #fff;
  line-height: 1.3;
}
.featured-interview-name span {
  font-weight: 400;
  font-size: 0.65em;
  color: rgba(255,255,255,.6);
  margin-left: 4px;
}
.featured-interview-post {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-top: 8px;
  letter-spacing: .03em;
}
.featured-interview-lead {
  font-size: 14px;
  line-height: 2;
  color: rgba(255,255,255,.78);
  margin-top: 16px;
}

/* ─── dancyu Video Series ─── */
.dancyu-intro {
  max-width: 960px;
  margin-top: 12px;
}
.dancyu-intro-lead {
  font-size: 14px;
  line-height: 2;
  color: var(--text2);
  max-width: 680px;
}
.dancyu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .dancyu-grid { grid-template-columns: 1fr; max-width: 480px; }
}
.dancyu-card {
  background: var(--dark);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.dancyu-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
}
.dancyu-card-video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}
.dancyu-card-video iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.dancyu-card-body { padding: 16px 18px 20px; }
.dancyu-card-title {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
  letter-spacing: .03em;
}
.dancyu-card-credit {
  font-size: 11px;
  color: rgba(255,255,255,.4);
  margin-top: 6px;
  letter-spacing: .04em;
}

/* ─── Voice Answers (inside accordion) ─── */
.voice-answer {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.voice-answer:last-child { border-bottom: none; }
.voice-answer-img {
  position: relative;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.voice-answer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.voice-answer-text {
  font-size: 14px;
  line-height: 2;
  color: var(--text2);
}
.voice-answer-text p { margin: 0; }
.voice-answer-text cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .03em;
}
@media (max-width: 640px) {
  .voice-answer {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .voice-answer-img {
    max-width: 280px;
    aspect-ratio: 2 / 1;
  }
}

/* ─── Privacy Policy page ─── */
.privacy-body {
  font-size: 15px;
  line-height: 2;
  color: var(--text2);
}
.privacy-meta {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.privacy-heading {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .04em;
  color: var(--text);
  margin-top: 36px;
  margin-bottom: 12px;
  padding-left: 14px;
  border-left: 3px solid var(--red);
}
.privacy-body > p {
  margin-top: 0;
  margin-bottom: 12px;
}
.privacy-list {
  margin: 8px 0 20px;
  padding-left: 2.2em;
  font-size: 14px;
  line-height: 2;
  color: var(--text2);
}
.privacy-list li {
  padding-left: 4px;
  margin-bottom: 4px;
}
@media (max-width: 560px) {
  .privacy-heading { font-size: 15px; margin-top: 28px; }
  .privacy-list { padding-left: 1.6em; font-size: 13px; }
}
