@import url("https://fonts.googleapis.com/css2?family=Kanit:wght@400;500;600;700;800&family=Noto+Sans+Thai:wght@400;500;600;700&display=swap");

:root {
  --red: #ee2737;
  --red-strong: #c81627;
  --red-deep: #8f0f1c;
  --red-soft: rgba(238, 39, 55, 0.09);
  --cream: #fff4ea;
  --cream-deep: #ffe8d4;
  --ink: #1c1712;
  --ink-soft: #6b6058;
  --bg: #fffbf6;
  --surface: #ffffff;
  --border: rgba(28, 23, 18, 0.09);
  --radius-lg: 26px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow: 0 16px 40px rgba(143, 15, 28, 0.12);
  --shadow-soft: 0 2px 10px rgba(28, 23, 18, 0.05);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Noto Sans Thai", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

.section-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; position: relative; }
.eyebrow {
  display: inline-block;
  font-family: "Kanit", "Noto Sans Thai", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-strong);
  margin-bottom: 14px;
}

h1, h2, h3, h4 {
  margin: 0 0 16px;
  font-family: "Kanit", "Noto Sans Thai", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: clamp(32px, 4.6vw, 50px); line-height: 1.16; font-weight: 700; }
h2 { font-size: clamp(26px, 3.4vw, 36px); line-height: 1.2; }
h3 { font-size: 20px; }
p { color: var(--ink-soft); margin: 0 0 14px; font-size: 15.5px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: "Kanit", sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: 0.1px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(155deg, var(--red) 0%, var(--red-strong) 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(200, 22, 39, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(200, 22, 39, 0.4); }
.btn-primary::after { content: "→"; transition: transform 0.18s ease; }
.btn-primary:hover::after { transform: translateX(3px); }
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--red); color: var(--red-strong); }

/* Nav — flat, minimal, hamburger-only (no crowded link row) */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--red);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: cover;
}
.footer-brand .brand-mark { box-shadow: none; }
.brand-name { font-family: "Kanit", sans-serif; font-weight: 700; font-size: 16px; color: #fff; }
.brand-name em { display: block; font-style: normal; font-size: 9px; letter-spacing: 3px; color: rgba(255, 255, 255, 0.75); font-weight: 500; }
.nav-toggle {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
}
.nav-toggle svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; }

/* Nav drawer (opens on hamburger click) */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.nav-drawer.open { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drawer-close {
  position: absolute;
  top: 20px; right: 24px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.nav-drawer-close svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; }
.nav-drawer a {
  font-family: "Kanit", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}
.nav-drawer a.active,
.nav-drawer a:hover { color: #fff; }
.nav-drawer .btn-primary { margin-top: 10px; }

/* Full-bleed photo banner — used for the home hero and every inner-page header */
.banner {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(155deg, var(--red-deep), var(--ink) 130%);
}
.banner.banner-tall { min-height: 92vh; }
.banner-photo-slot {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 64px;
  gap: 8px;
  text-align: center;
  border: none;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 14px);
}
.banner-photo-slot svg { width: 34px; height: 34px; stroke: rgba(255,255,255,0.5); fill: none; stroke-width: 1.5; }
.banner-photo-slot strong { font-family: "Kanit", sans-serif; font-size: 14px; color: rgba(255,255,255,0.65); font-weight: 500; }
.banner-photo-slot span { font-size: 12px; color: rgba(255,255,255,0.4); }
.banner-photo-slot code { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); padding: 1px 6px; border-radius: 4px; font-size: 11px; }
.banner-photo-slot .hero-brand-mark { width: 112px; height: 112px; object-fit: cover; border-radius: 28px; box-shadow: 0 20px 60px rgba(0,0,0,0.28); }
.banner-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 24px 64px;
  text-align: center;
}
.banner-content .section-inner { max-width: 900px; }
.banner .eyebrow { color: #fff; opacity: 0.85; }
.poster-heading {
  font-family: "Kanit", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  font-size: clamp(38px, 7vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.35);
}
.banner-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 26px;
}
.banner-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.banner-actions .btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.banner-actions .btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255, 255, 255, 0.1); }
@media (max-width: 760px) { .banner { min-height: 68vh; } }

/* Gradient icon tile (Morphe-style language, in Sixty Sip red/orange) */
.icon-tile {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(145deg, #ff7a3d 0%, var(--red) 55%, var(--red-strong) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(200, 22, 39, 0.28);
}
.icon-tile svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.icon-tile.sm { width: 40px; height: 40px; border-radius: 11px; }
.icon-tile.sm svg { width: 19px; height: 19px; }

/* Segmented tabs (capsule switcher) */
.segmented {
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  margin: 0 auto 36px;
}
.segmented button {
  font-family: "Kanit", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 9px 20px;
  border-radius: 999px;
  border: none;
  background: none;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.segmented button:hover { color: var(--red-strong); }
.segmented button.active {
  background: linear-gradient(145deg, #ff7a3d 0%, var(--red) 55%, var(--red-strong) 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(200, 22, 39, 0.28);
}
.segmented-wrap { display: flex; justify-content: center; }
@media (max-width: 620px) {
  .segmented { flex-wrap: wrap; justify-content: center; border-radius: 20px; }
  .segmented button { padding: 8px 16px; font-size: 13px; }
}

/* Section title (poster-style, used for on-page section headings) */
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  margin-bottom: 40px;
}

/* Teasers (home page section links) — flat editorial list, no cards */
.teasers { padding: 10px 0 100px; }
.teaser-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 26px 4px;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.2s ease, opacity 0.2s ease;
}
.teaser-row:first-child { border-top: 1px solid var(--border); }
.teaser-row:hover { padding-left: 14px; }
.teaser-title {
  font-family: "Kanit", sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 3vw, 32px);
  min-width: 220px;
}
.teaser-sub { color: var(--ink-soft); font-size: 14.5px; flex: 1; }
.teaser-arrow { font-size: 22px; color: var(--red); transition: transform 0.2s ease; }
.teaser-row:hover .teaser-arrow { transform: translateX(6px); }
@media (max-width: 700px) {
  .teaser-row { flex-wrap: wrap; gap: 6px; }
  .teaser-sub { order: 3; width: 100%; }
}

/* CTA strip (inner pages) */
.cta-strip { padding: 10px 0 100px; }
.cta-strip-inner {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-strip-inner h3 { color: #fff; margin: 0; font-family: "Kanit", sans-serif; font-weight: 700; font-size: clamp(22px, 3vw, 30px); }
.cta-strip-inner .btn-primary::after { color: #fff; }

/* Channels — numbered editorial rows, not icon cards */
.channels { padding: 90px 0 60px; }
.channel-list { display: flex; flex-direction: column; }
.channel-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 34px 0;
  border-top: 1px solid var(--border);
  align-items: baseline;
}
.channel-list .channel-row:last-child { border-bottom: 1px solid var(--border); }
.channel-num {
  font-family: "Kanit", sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: var(--red);
  opacity: 0.35;
  line-height: 1;
}
.channel-text h3 { margin-bottom: 8px; font-size: clamp(19px, 2.4vw, 24px); }
.channel-text p { margin: 0; font-size: 15px; max-width: 560px; }
@media (max-width: 700px) { .channel-row { grid-template-columns: 50px 1fr; } .channel-num { font-size: 28px; } }

/* About */
.about { padding: 90px 0; background: var(--surface); }
.about-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 64px; align-items: start; }
.about-copy p { font-size: 17px; }
.story-note { font-size: 12px; color: #a89f96; }
.about-stats { display: flex; flex-direction: column; }
.stat { padding: 22px 0; border-top: 1px solid var(--border); }
.about-stats .stat:last-child { border-bottom: 1px solid var(--border); }
.stat strong { display: block; font-family: "Kanit", sans-serif; font-size: 42px; color: var(--red); font-weight: 800; line-height: 1; margin-bottom: 6px; }
.stat span { font-size: 13.5px; color: var(--ink-soft); }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }

/* Menu */
.menu { padding: 30px 0 100px; }
.section-head { text-align: center; max-width: 560px; margin: 0 auto 50px; }
.menu-note { font-size: 12px; color: #a89f96; }
.menu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px 28px; }
.menu-card { text-align: left; }
.menu-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  margin-bottom: 16px;
  background: linear-gradient(160deg, var(--hue-a, #ffd3d3), var(--hue-b, #ee2737));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.25s ease;
}
.menu-card:hover .menu-thumb { transform: scale(1.03); }
.menu-thumb::after {
  content: "";
  position: absolute;
  width: 140%; height: 60%;
  bottom: -20%; left: -20%;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}
.menu-thumb svg { width: 38%; height: 38%; position: relative; z-index: 1; stroke: #fff; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; opacity: 0.95; }
.menu-thumb-1 { --hue-a: #ffb98f; --hue-b: #c2540c; }
.menu-thumb-2 { --hue-a: #f3c9a6; --hue-b: #8a4a1f; }
.menu-thumb-3 { --hue-a: #e0bfa0; --hue-b: #6b3d20; }
.menu-thumb-4 { --hue-a: #c9a084; --hue-b: #4a2c1a; }
.menu-thumb-5 { --hue-a: #b7dfb0; --hue-b: #2f7d3a; }
.menu-thumb-6 { --hue-a: #ffcf8f; --hue-b: #d9720f; }
.menu-thumb-7 { --hue-a: #f0c48a; --hue-b: #a85f16; }
.menu-thumb-8 { --hue-a: #d9b79a; --hue-b: #3f2313; }
.menu-card-foot { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; padding-top: 10px; border-top: 1px solid var(--border); }
.menu-card h4 { margin: 0; font-size: 15.5px; font-family: "Kanit", sans-serif; font-weight: 600; }
.price { font-family: "Kanit", sans-serif; color: var(--red); font-weight: 700; font-size: 15px; white-space: nowrap; }
@media (max-width: 860px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }

/* Rewards */
.rewards { padding: 20px 0 70px; }
.rewards-grid { display: grid; grid-template-columns: 1fr 0.8fr; gap: 52px; align-items: center; }
.rewards-copy p { font-size: 16px; }
.rewards-list li {
  padding: 11px 0 11px 28px;
  position: relative;
  font-size: 14.5px;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--border);
}
.rewards-list li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* Feature list with gradient icon tiles */
.feature-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 26px; }
.feature-list li { display: flex; align-items: flex-start; gap: 16px; }
.feature-list .feature-text strong { display: block; font-family: "Kanit", sans-serif; font-weight: 600; font-size: 16px; margin-bottom: 2px; }
.feature-list .feature-text span { font-size: 14.5px; color: var(--ink-soft); }
.rewards-card-demo { display: flex; justify-content: center; }
.phone-frame {
  width: 270px;
  background: linear-gradient(165deg, #2a231d, var(--ink));
  border-radius: 38px;
  padding: 14px;
  box-shadow: var(--shadow);
}
.phone-notch { width: 60px; height: 6px; background: #3a3229; border-radius: 4px; margin: 0 auto 10px; }
.phone-screen { background: #fff; border-radius: 26px; padding: 20px; }
.reward-topbar { font-family: "Kanit", sans-serif; font-weight: 600; font-size: 13.5px; margin-bottom: 12px; }
.reward-points {
  background: linear-gradient(150deg, var(--red), var(--red-strong));
  color: #fff;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  margin-bottom: 16px;
}
.reward-points-num { display: block; font-family: "Kanit", sans-serif; font-size: 34px; font-weight: 700; }
.reward-points-label { font-size: 11px; opacity: 0.9; }
.reward-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  padding: 10px 11px;
  border: 1px solid var(--border);
  border-radius: 11px;
  margin-bottom: 8px;
}
.reward-item em { font-style: normal; color: var(--red-strong); font-weight: 700; }
.reward-qr { display: flex; align-items: center; gap: 10px; margin-top: 14px; font-size: 11px; color: var(--ink-soft); }
.qr-box {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: repeating-conic-gradient(var(--ink) 0% 25%, #fff 0% 50%) 0 0 / 10px 10px;
  border: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  flex-shrink: 0;
}
.qr-box.mini { width: 36px; height: 36px; }
@media (max-width: 860px) { .rewards-grid { grid-template-columns: 1fr; } .rewards-card-demo { order: -1; } }

/* Partner */
.partner { padding: 30px 0 90px; }
.partner-grid { display: grid; grid-template-columns: 1fr 0.72fr; gap: 0; align-items: stretch; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.partner-copy { padding: 56px 48px; }
.partner-copy p { font-size: 16.5px; }
.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  font-family: "Kanit", sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  padding: 12px 22px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.partner-points li {
  padding: 9px 0 9px 26px;
  position: relative;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.partner-points li::before { content: "•"; position: absolute; left: 4px; color: var(--red); font-weight: 800; }
.partner-points { margin-bottom: 26px; }
.partner-art {
  background: linear-gradient(165deg, var(--red) 0%, var(--red-deep) 100%);
  padding: 48px 32px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.partner-art-figure {
  font-family: "Kanit", sans-serif;
  font-weight: 800;
  font-size: 96px;
  color: #fff;
  line-height: 1;
  position: relative;
}
.partner-art-figure span { display: block; font-size: 16px; font-weight: 600; letter-spacing: 1px; margin-top: 8px; opacity: 0.85; }
@media (max-width: 860px) {
  .partner-grid { grid-template-columns: 1fr; }
  .partner-copy { padding: 40px 28px; }
  .partner-art { min-height: 200px; align-items: center; }
}

/* Download */
.download { padding: 20px 0 90px; }
.download-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 44px; align-items: center; }
.download-copy p { font-size: 16px; }
.store-badges { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; }
.store-badge {
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--ink);
  color: #fff;
  padding: 11px 20px;
  border-radius: 14px;
  transition: transform 0.18s ease;
}
.store-badge:hover { transform: translateY(-2px); }
.store-badge-icon { width: 24px; height: 24px; flex-shrink: 0; }
.store-badge-icon svg { width: 100%; height: 100%; fill: #fff; }
.store-badge small { display: block; font-size: 10px; opacity: 0.75; }
.store-badge strong { display: block; font-family: "Kanit", sans-serif; font-size: 15.5px; font-weight: 600; }
.download-note { font-size: 12px; color: #a89f96; }
.download-qrs { display: flex; gap: 18px; justify-content: center; }
.qr-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  font-size: 12px;
  color: var(--ink-soft);
  box-shadow: var(--shadow-soft);
}
.qr-panel .qr-box { width: 100px; height: 100px; margin: 0 auto 12px; }
@media (max-width: 860px) { .download-grid { grid-template-columns: 1fr; } .download-qrs { margin-top: 12px; } }

/* Footer */
.site-footer { padding: 56px 0 32px; background: var(--ink); color: rgba(255, 255, 255, 0.72); }
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding-bottom: 28px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-name em { color: rgba(255, 255, 255, 0.55); }
.footer-links { display: flex; gap: 26px; font-size: 13.5px; flex-wrap: wrap; font-family: "Kanit", sans-serif; }
.footer-links a:hover { color: #fff; }
.footer-bottom { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.site-footer p { margin: 0; font-size: 13px; color: rgba(255, 255, 255, 0.5); }

/* ---- Legal / policy pages (terms, privacy, refund, contact) ---------------- */
.legal {
  padding: 48px 0 72px;
}
.legal .section-inner {
  max-width: 780px;
}
.legal h2 {
  font-size: 22px;
  margin: 36px 0 12px;
  line-height: 1.35;
}
.legal h2:first-of-type {
  margin-top: 8px;
}
.legal h3 {
  font-size: 17px;
  margin: 22px 0 8px;
}
.legal p,
.legal li {
  line-height: 1.75;
  color: var(--text-muted, #5b6472);
}
.legal ul,
.legal ol {
  padding-left: 20px;
  margin: 10px 0 16px;
}
.legal li {
  margin-bottom: 8px;
}
.legal strong {
  color: var(--text, #14181f);
}
.legal-updated {
  font-size: 14px;
  color: var(--text-muted, #5b6472);
  margin-bottom: 4px;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 20px;
  font-size: 15px;
}
.legal-table th,
.legal-table td {
  text-align: left;
  padding: 11px 12px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.09);
  vertical-align: top;
}
.legal-table th {
  font-weight: 700;
  color: var(--text, #14181f);
  white-space: nowrap;
}
.legal-callout {
  background: rgba(238, 39, 55, 0.06);
  border: 1px solid rgba(238, 39, 55, 0.2);
  border-radius: 14px;
  padding: 16px 18px;
  margin: 18px 0;
}
.legal-callout p {
  margin: 0;
  color: var(--text, #14181f);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 22px 0 8px;
}
.contact-card {
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 16px;
  padding: 20px;
  background: #fff;
}
.contact-card strong {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
}
.contact-card p {
  margin: 0;
  font-size: 15px;
}
@media (max-width: 620px) {
  .legal-table th,
  .legal-table td { padding: 9px 8px; font-size: 14px; }
}
