/* Header / Nav */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: saturate(1.1) blur(12px);
  background: rgba(250, 250, 247, 0.82);
  border-bottom: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease;
}
.header.scrolled {
  background: rgba(250, 250, 247, 0.94);
  border-bottom-color: var(--line);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
@media (max-width: 900px) {
  .header-inner { grid-template-columns: auto 1fr auto; padding: 14px 20px; }
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-800);
  color: #fff;
  display: grid;
  place-items: center;
  position: relative;
  flex-shrink: 0;
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-text { line-height: 1.15; }
.brand-text .jp {
  font-family: var(--font-jp);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.brand-text .en {
  font-family: var(--font-en-sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}
.nav a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all .15s ease;
}
.nav a:hover { color: var(--ink); background: rgba(12,26,20,.04); }
.nav a.active { color: var(--green-800); }
@media (max-width: 1080px) { .nav { display: none; } }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Language switcher */
.lang-switch {
  display: inline-flex;
  padding: 3px;
  background: rgba(12,26,20,.06);
  border-radius: 999px;
  gap: 2px;
}
.lang-switch button {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-family: var(--font-en-sans);
  transition: all .15s ease;
}
.lang-switch button:hover { color: var(--ink); }
.lang-switch button.on {
  background: var(--ink);
  color: var(--paper);
}

.menu-btn { display: none; width: 40px; height: 40px; border-radius: 999px; background: var(--ink); color: #fff; align-items: center; justify-content: center; }
@media (max-width: 1080px) { .menu-btn { display: inline-flex; } }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: #fff;
  z-index: 200;
  padding: 80px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-100%);
  transition: transform .3s ease;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a { font-size: 28px; padding: 14px 0; font-family: var(--font-jp); font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-nav .close-btn {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 999px;
  background: rgba(255,255,255,.1); color: #fff;
  display: grid; place-items: center;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  background: var(--paper);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
}
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  border-radius: 4px;
  background: var(--green-800);
  color: #fff;
  font-family: var(--font-en-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.25);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.35); }
  50%      { box-shadow: 0 0 0 7px rgba(255,255,255,0); }
}

.hero h1 {
  font-size: clamp(44px, 7vw, 92px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-family: var(--font-jp);
  font-weight: 600;
}
body[data-lang="en"] .hero h1 { font-family: var(--font-en); font-style: italic; font-weight: 500; }
body[data-lang="th"] .hero h1 { font-family: var(--font-th); font-weight: 700; }

.hero h1 .line { display: block; }
.hero h1 .line-2 { color: var(--green-800); position: relative; }

.hero-sub {
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 520px;
}

.hero-ctas {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 700px;
}

.hero-visual .panel {
  position: absolute;
  inset: 0;
  background: var(--green-900);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #fff;
}
.hero-visual .hero-img-panel {
  background: #0a0a0a;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.45), 0 0 0 1px rgba(0,0,0,0.04);
}
.hero-visual .hero-img-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-visual .panel::before {
  /* subtle skyline silhouette using gradients */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(200, 162, 75, 0.28) 0%, transparent 40%),
    linear-gradient(180deg, #0f3d2e 0%, #0a2a21 100%);
}
.hero-visual .sun {
  position: absolute;
  top: 10%; right: 12%;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--crimson);
  box-shadow: 0 0 80px rgba(179, 43, 43, 0.45);
}
.hero-visual .skyline {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  pointer-events: none;
}
.hero-visual .tate {
  position: absolute;
  top: 10%; left: 8%;
  writing-mode: vertical-rl;
  font-family: var(--font-jp);
  font-size: 20px;
  letter-spacing: 0.6em;
  color: rgba(255,255,255,0.75);
}
.hero-visual .seal {
  position: absolute;
  top: 12%; right: 9%;
  z-index: 3;
  width: 110px; height: 110px;
}
.hero-visual .date-stamp {
  position: absolute;
  right: 28px;
  bottom: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}

.hero-visual .tag {
  position: absolute;
  bottom: 24px;
  left: 28px;
  max-width: 62%;
  color: rgba(255,255,255,0.92);
  z-index: 4;
}
.hero-visual .tag .big {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 28px;
  line-height: 1.15;
}
.hero-visual .tag .small {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  opacity: .6;
  text-transform: uppercase;
}

/* Stats row */
.hero-stats {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 760px) { .hero-stats { grid-template-columns: repeat(2, 1fr); } }

.stat {
  padding: 28px 20px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat:last-child { border-right: none; }
@media (max-width: 760px) {
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}
.stat .v {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 44px);
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
}
body[data-lang="ja"] .stat .v { font-family: var(--font-jp); }
body[data-lang="th"] .stat .v { font-family: var(--font-th); }
.stat .l {
  font-family: var(--font-en-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* Marquee */
.marquee {
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  padding: 22px 0;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 52px;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 52px;
}
.marquee-track span::after {
  content: "✱";
  color: var(--accent);
  font-style: normal;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- About ---- */
.about {
  background: var(--paper-warm);
  padding-top: 140px;
  padding-bottom: 140px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
.about-lead {
  font-size: clamp(28px, 3.4vw, 42px);
  font-family: var(--font-jp);
  line-height: 1.35;
  color: var(--ink);
  margin: 0;
  font-weight: 500;
}
body[data-lang="en"] .about-lead { font-family: var(--font-en); font-style: italic; }
body[data-lang="th"] .about-lead { font-family: var(--font-th); }
.about-body p {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0 0 18px;
}

.pillars {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 900px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pillars > .pillar:last-child { border-right: none; }
@media (max-width: 900px) {
  .pillar:nth-child(2n) { border-right: none; }
}
@media (max-width: 520px) {
  .pillar { border-right: none !important; }
}
.pillar .n {
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--green-700);
  letter-spacing: 0.1em;
}
.pillar h3 {
  font-size: 22px;
  margin-top: 12px;
  margin-bottom: 10px;
}
.pillar p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
}

/* ---- Qualify ---- */
.qualify {
  background: var(--navy-900);
  color: #fff;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.qualify::before {
  content: "";
  position: absolute;
  inset: -100px;
  background:
    radial-gradient(circle at 85% 15%, rgba(200, 162, 75, 0.14) 0%, transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(62, 166, 130, 0.16) 0%, transparent 50%);
  pointer-events: none;
}
.qualify .container { position: relative; }
.qualify .kicker { color: var(--accent); }
.qualify .kicker::before { background: var(--accent); }
.qualify h2 { color: #fff; }
.qualify .lead { color: rgba(255,255,255,0.7); }

.rules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}
@media (max-width: 720px) { .rules { grid-template-columns: 1fr; } }
.rule {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all .2s ease;
}
.rule:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(200, 162, 75, 0.4);
  transform: translateY(-2px);
}
.rule-icon {
  width: 56px; height: 56px;
  flex-shrink: 0;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(200, 162, 75, 0.12);
  border: 1px solid rgba(200, 162, 75, 0.3);
}
.rule-icon svg { display: block; }
.rule h3 {
  font-size: 19px;
  color: #fff;
  margin-bottom: 6px;
}
.rule p { color: rgba(255,255,255,0.65); font-size: 14px; margin: 0; line-height: 1.6; }

.qualify-note {
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}

/* ---- Officers ---- */
.officers { background: var(--paper); }
.officers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.officer {
  padding: 32px 24px 28px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background .18s ease;
}
.officer:hover { background: var(--paper-warm); }
.officer-avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-800);
  color: #fff;
  font-family: var(--font-jp);
  font-size: 32px;
  font-weight: 500;
  position: relative;
}
.officer-avatar::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
}
body[data-lang="en"] .officer-avatar,
body[data-lang="th"] .officer-avatar { font-family: var(--font-en); font-style: italic; }

.officer .role {
  font-family: var(--font-en-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-700);
}
.officer .name {
  font-family: var(--font-jp);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}
body[data-lang="en"] .officer .name { font-family: var(--font-en-sans); font-weight: 600; }
body[data-lang="th"] .officer .name { font-family: var(--font-th); }

/* ---- Activities ---- */
.activities { background: var(--paper-warm); }
.activities-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.activity {
  background: var(--paper);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 140px 110px 1fr;
  align-items: center;
  gap: 28px;
  transition: background .15s ease;
}
.activity:hover { background: #fff; }
@media (max-width: 760px) {
  .activity { grid-template-columns: 1fr; gap: 10px; padding: 24px; }
}
.activity .date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.activity .tag {
  justify-self: start;
  padding: 4px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--green-800);
  background: var(--green-50);
  border-color: transparent;
}
.activity h3 { font-size: 19px; font-weight: 600; }
.activity p { margin: 6px 0 0; color: var(--ink-soft); font-size: 14px; }
a.activity { text-decoration: none; color: inherit; display: grid; transition: background .15s ease, transform .15s ease; }
a.activity:hover { background: #fff; transform: translateX(2px); }
.activity-cta {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-en-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--green-800);
  transition: transform .15s ease;
}
a.activity:hover .activity-cta { transform: translateX(4px); }

/* ---- Events (single next meetup) ---- */
.events { background: var(--ink); color: #fff; padding: 140px 0; position: relative; overflow: hidden; }
.events .kicker { color: var(--accent); }
.events .kicker::before { background: var(--accent); }
.events h2 { color: #fff; }
.events .lead { color: rgba(255,255,255,0.65); }
.events::before {
  content: "";
  position: absolute;
  top: 0; right: -10%;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at center, rgba(200,162,75,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.next-card {
  margin-top: 24px;
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.next-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 70%);
}

.next-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 860px) { .next-top { grid-template-columns: 1fr; } }

.next-datebox {
  padding: 44px 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(0,0,0,0.18);
}
@media (max-width: 860px) { .next-datebox { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 32px 28px; } }

.next-eyebrow {
  font-family: var(--font-en-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 18px;
}
.next-num {
  font-family: var(--font-en);
  font-style: italic;
  font-weight: 500;
  font-size: 76px;
  line-height: 0.9;
  color: #fff;
  margin-bottom: 6px;
}
.next-weekday {
  font-family: var(--font-en-sans);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.next-datefull {
  font-size: 17px;
  color: #fff;
  font-weight: 500;
  line-height: 1.4;
}
.next-timerange {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

.next-main {
  padding: 44px 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (max-width: 860px) { .next-main { padding: 32px 28px; } }
.next-main h3 {
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  line-height: 1.45;
}
.next-main p {
  font-size: 14.5px;
  line-height: 1.85;
  color: rgba(255,255,255,0.7);
  margin: 0;
  max-width: 60ch;
}

.next-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 720px) { .next-meta { grid-template-columns: 1fr; } }

.next-meta-cell {
  padding: 28px 30px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.next-meta-cell:last-child { border-right: none; }
@media (max-width: 720px) {
  .next-meta-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .next-meta-cell:last-child { border-bottom: none; }
}
.next-meta-label {
  font-family: var(--font-en-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
}
.next-meta-value {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  margin-top: 2px;
}
.next-meta-sub {
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
}

.next-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (max-width: 860px) { .next-bottom { grid-template-columns: 1fr; } }

.next-timeline {
  padding: 40px 44px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 860px) { .next-timeline { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 32px 28px; } }
.next-timeline-label {
  font-family: var(--font-en-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  margin-bottom: 18px;
}
.next-timeline ol {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 10px;
  position: relative;
}
.next-timeline li {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 2px 0;
}
.next-timeline .t {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.next-timeline .d {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
}

.next-cta {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  background: rgba(0,0,0,0.18);
}
@media (max-width: 860px) { .next-cta { padding: 32px 28px; } }
.next-cta .btn { justify-content: center; }

.events-note {
  margin-top: 28px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ---- Join ---- */
.join { background: var(--paper); }
.join-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 960px) { .join-grid { grid-template-columns: 1fr; gap: 40px; } }

.steps {
  list-style: none;
  padding: 0; margin: 0;
  counter-reset: step;
  border-top: 1px solid var(--line);
}
.step {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: baseline;
}
.step .n {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 28px;
  font-style: italic;
  color: var(--green-700);
  line-height: 1;
}
.step h3 { font-size: 19px; margin-bottom: 6px; }
.step p { color: var(--ink-soft); font-size: 14.5px; margin: 0; }

.plan-card {
  background: linear-gradient(160deg, var(--green-800) 0%, var(--green-700) 70%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.plan-card::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(200,162,75,0.14);
}
.plan-card::after {
  content: "✱";
  position: absolute;
  top: 30px; right: 30px;
  color: var(--accent);
  font-size: 22px;
}
.plan-card .plan-label {
  font-family: var(--font-en-sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.plan-card .plan-name {
  font-family: var(--font-jp);
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 500;
}
body[data-lang="en"] .plan-card .plan-name { font-family: var(--font-en); font-style: italic; }
body[data-lang="th"] .plan-card .plan-name { font-family: var(--font-th); }
.plan-card .price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px dashed rgba(255,255,255,0.2);
}
.plan-card .price {
  font-family: var(--font-en);
  font-size: 56px;
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}
body[data-lang="ja"] .plan-card .price { font-family: var(--font-jp); font-style: normal; font-weight: 600; }
body[data-lang="th"] .plan-card .price { font-family: var(--font-th); font-style: normal; }
.plan-card .unit { color: rgba(255,255,255,0.7); font-size: 13px; }
.plan-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.plan-card li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  align-items: flex-start;
}
.plan-card li::before {
  content: "";
  display: block;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
  position: relative;
}
.plan-card .line-id-row {
  margin-top: 28px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.plan-card .line-id-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.plan-card .line-id-val {
  font-family: var(--font-mono);
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}

/* ---- News ---- */
.news { background: var(--paper-warm); }
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
}
.news-item {
  display: grid;
  grid-template-columns: 140px 110px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .2s ease;
}
.news-item:first-child { border-top: 1px solid var(--line); }
.news-item:hover { padding-left: 12px; }
@media (max-width: 760px) {
  .news-item { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
  .news-item:hover { padding-left: 0; }
}
.news-item .date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}
.news-item .tag {
  justify-self: start;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line-strong);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
}
.news-item .title { font-size: 15.5px; font-weight: 500; color: var(--ink); }
.news-item .arrow { color: var(--muted); transition: transform .15s ease; }
.news-item:hover .arrow { transform: translateX(4px); color: var(--green-800); }

/* ---- Contact ---- */
.contact { background: var(--navy-900); color: #fff; padding: 140px 0; }
.contact .kicker { color: var(--accent); }
.contact .kicker::before { background: var(--accent); }
.contact h2 { color: #fff; }
.contact .lead { color: rgba(255,255,255,0.7); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info {
  display: grid;
  gap: 24px;
}
.contact-row {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  align-items: baseline;
}
.contact-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.15); }
.contact-row .key {
  font-family: var(--font-en-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.contact-row .val { font-size: 15px; color: #fff; line-height: 1.6; }
.contact-row .val a:hover { color: var(--accent); }

.qr-card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.qr-card .qr {
  width: 100%;
  aspect-ratio: 1;
  background: #fff;
  border-radius: 10px;
  display: grid;
  place-items: center;
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  padding: 8px;
}
.qr-card .qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.qr-card .qr-label {
  font-family: var(--font-en-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.qr-card .qr-val {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.qr-card .btn { margin-top: 20px; width: 100%; justify-content: center; background: #06c755; color: #fff; }
.qr-card .btn:hover { background: #05a748; }

/* ---- Footer ---- */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

.footer-brand { max-width: 380px; }
.footer-brand .brand-text .jp { color: #fff; }
.footer-brand .tagline {
  margin-top: 16px;
  font-family: var(--font-jp);
  font-size: 20px;
  line-height: 1.45;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
body[data-lang="en"] .footer-brand .tagline { font-family: var(--font-en); font-style: italic; }
body[data-lang="th"] .footer-brand .tagline { font-family: var(--font-th); }

.footer h4 {
  font-family: var(--font-en-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
  font-weight: 600;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer li a { font-size: 13.5px; color: rgba(255,255,255,0.7); transition: color .15s ease; }
.footer li a:hover { color: #fff; }

.footer-bottom {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
