:root {
  --page: #fffaf0;
  --surface: #f6ead4;
  --surface-strong: #ead3ad;
  --ink: #2b2118;
  --muted: #766354;
  --brand: #c83b2d;
  --brand-hover: #aa2f24;
  --stone-blue: #2f7180;
  --jade: #36756d;
  --gold: #c88b2c;
  --line: rgba(70, 45, 25, 0.14);
  --white: #fffdf8;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 14px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
button, select { font: inherit; }
button { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }

.language-gate {
  width: min(580px, calc(100% - 36px));
  max-width: 580px;
  max-height: calc(100dvh - 36px);
  margin: auto;
  padding: 30px;
  overflow: auto;
  color: var(--ink);
  background: rgba(255,250,240,.96);
  border: 1px solid rgba(70,45,25,.12);
  border-radius: 28px;
  box-shadow: 0 28px 90px rgba(43,33,24,.24);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.language-gate::backdrop { background: rgba(43,33,24,.32); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.language-gate:not([open]) { display: none; }
.language-gate-panel {
  display: flex;
  flex-direction: column;
}
.language-gate-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 26px; font-size: 15px; font-weight: 650; }
.language-gate-kicker { margin: 0 0 12px; color: var(--brand); font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.language-gate h2 { margin: 0; font-size: clamp(34px, 5vw, 46px); font-weight: 700; line-height: 1.02; letter-spacing: -.045em; }
.language-gate h2 span { color: var(--muted); }
.language-gate-lede { margin: 16px 0 22px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.language-gate-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.language-gate-options button {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 16px;
  color: var(--ink);
  background: rgba(255,253,248,.72);
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}
.language-gate-options button:hover { border-color: rgba(200,59,45,.45); background: var(--white); }
.language-gate-options button:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.language-gate-options button[aria-checked="true"] { color: var(--white); background: var(--ink); border-color: var(--ink); }
.language-gate-continue {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 0 20px;
  color: var(--white);
  background: var(--brand);
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 650;
}
.language-gate-continue:hover { background: var(--brand-hover); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - 1120px) / 2));
  background: rgba(255, 250, 240, 0.86);
  border-bottom: 1px solid rgba(70, 45, 25, 0.08);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--brand);
  font-size: 14px;
  font-weight: 600;
}
nav { display: flex; align-items: center; gap: 26px; font-size: 12px; }
nav a { transition: color .2s ease; }
nav a:not(.nav-cta):hover { color: var(--brand); }
.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: var(--white);
  background: var(--brand);
  border-radius: 999px;
  font-weight: 500;
}
.nav-cta:hover { color: var(--white); background: var(--brand-hover); }
.language-menu { position: relative; }
.language-menu summary {
  min-width: 106px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 12px;
  border-radius: 999px;
  list-style: none;
  cursor: pointer;
  color: var(--ink);
  background: rgba(96, 61, 29, .07);
  font-size: 12px;
  font-weight: 600;
}
.language-flag { font-size: 17px; line-height: 1; }
.language-chevron { margin-left: 1px; color: var(--muted); font-size: 12px; transform: translateY(-1px); }
.language-menu summary::-webkit-details-marker { display: none; }
.language-menu[open] summary { color: var(--white); background: var(--ink); }
.language-menu[open] .language-chevron { color: rgba(255,255,255,.7); }
.language-options {
  position: absolute;
  z-index: 120;
  top: calc(100% + 10px);
  right: 0;
  width: 204px;
  padding: 8px;
  overflow: hidden;
  background: rgba(255,253,248,.97);
  border: 1px solid rgba(70,45,25,.1);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(78,49,24,.16);
  backdrop-filter: blur(24px);
}
.language-options button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 8px 12px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 9px;
  cursor: pointer;
  text-align: left;
  font-size: 13px;
}
.language-options button > span { display: inline-flex; align-items: center; gap: 10px; }
.language-options button[data-lang="zh-CN"] { margin-top: 6px; border-top: 1px solid var(--line); border-radius: 0 0 9px 9px; }
.language-options button::after { content: "✓"; opacity: 0; color: var(--brand); font-weight: 700; }
.language-options button:hover { background: var(--surface); }
.language-options button[aria-checked="true"]::after { opacity: 1; }

main { width: 100%; }
.city-editions {
  width: min(1120px, calc(100% - 48px));
  margin: 34px auto 0;
  padding: 56px;
  color: var(--white);
  background: #211a15;
  border-radius: var(--radius-xl);
}
.city-editions-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 54px; align-items: end; margin-bottom: 38px; }
.city-editions-heading p { margin: 0 0 14px; color: #e8a74a; font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.city-editions-heading h2 { margin: 0; font-size: clamp(38px, 4.8vw, 64px); line-height: .98; }
.city-editions-heading > span { max-width: 340px; padding-bottom: 4px; color: #cdbfb1; font-size: 13px; line-height: 1.6; }
.city-editions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.city-edition { position: relative; min-height: 270px; overflow: hidden; border-radius: 18px; isolation: isolate; }
.city-edition-featured { min-height: 420px; grid-column: span 2; }
.city-edition img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.city-edition::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(20,14,10,.08) 25%, rgba(20,14,10,.8) 100%); }
.city-edition:hover img { transform: scale(1.035); }
.city-issue { position: absolute; top: 18px; left: 18px; padding: 6px 8px; color: var(--white); background: rgba(20,14,10,.36); border: 1px solid rgba(255,255,255,.3); border-radius: 999px; backdrop-filter: blur(10px); font-size: 8px; letter-spacing: .12em; }
.city-edition-copy { position: absolute; right: 18px; bottom: 18px; left: 18px; display: flex; flex-direction: column; gap: 4px; }
.city-edition-copy strong { font-family: Georgia, "Times New Roman", serif; font-size: 29px; font-weight: 400; letter-spacing: -.03em; }
.city-edition-featured .city-edition-copy strong { font-size: 44px; }
.city-edition-copy small { color: rgba(255,255,255,.76); font-size: 10px; }
.city-arrow { position: absolute; right: 18px; top: 18px; display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--ink); font-size: 13px; }
.hero,
.install-guide,
.result-panel,
.how,
.channel-note,
.gift-market,
footer {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}
.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
  padding: 92px 0 104px;
}
.hero-copy { align-self: center; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}
.eyebrow > span:first-child { display: none; }
.eyebrow strong { font: inherit; }
h1, h2 { margin-top: 0; font-family: var(--font); letter-spacing: -0.045em; }
h1 {
  max-width: 680px;
  margin-bottom: 0;
  font-size: clamp(58px, 6.4vw, 88px);
  font-weight: 700;
  line-height: .95;
}
h1 em {
  display: block;
  margin-top: 7px;
  color: transparent;
  background: linear-gradient(90deg, #c83b2d 0%, #d8892f 48%, #2f7180 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
  font-weight: 700;
}
.hero-lede {
  max-width: 610px;
  margin: 30px 0 26px;
  color: var(--muted);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: -0.018em;
}
.trust-row { display: flex; flex-wrap: wrap; gap: 8px; }
.trust-row span {
  padding: 7px 12px;
  color: var(--muted);
  background: linear-gradient(145deg, #f8ead0 0%, #f3dfbe 100%);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
}

.planner {
  position: relative;
  overflow: hidden;
  padding: 30px;
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.planner::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  top: -150px;
  right: -100px;
  background: radial-gradient(circle, rgba(47,113,128,.26), transparent 68%);
  pointer-events: none;
}
.planner-heading { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 22px; }
.step-label { margin: 0 0 5px; color: var(--muted); font-size: 11px; font-weight: 600; }
.planner h2 { margin-bottom: 0; font-size: 34px; font-weight: 650; line-height: 1.05; }
.beta {
  padding: 6px 9px;
  color: #a92f23;
  background: rgba(255,255,255,.78);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em;
}
.field-group { padding: 17px 0; border-top: 1px solid var(--line); }
.field-group label, .field-group legend {
  display: block;
  padding: 0;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
}
fieldset { margin-inline: 0; border: 0; }
.select-wrap { position: relative; }
.select-wrap::after { content: "⌄"; position: absolute; right: 7px; top: 43%; transform: translateY(-50%); pointer-events: none; }
select {
  width: 100%;
  padding: 2px 28px 2px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  appearance: none;
  outline: none;
  font-size: 20px;
  font-weight: 600;
}
.interest-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.choice, .segmented button {
  color: var(--ink);
  background: var(--white);
  border: 0;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.choice { padding: 9px 13px; border-radius: 999px; font-size: 12px; }
.choice:hover { transform: translateY(-1px); }
.choice.active { color: var(--white); background: var(--jade); }
.segmented {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 4px;
  background: rgba(112,74,35,.09);
  border-radius: 12px;
}
.segmented button { padding: 9px; background: transparent; border-radius: 9px; font-size: 12px; }
.segmented button.active { background: var(--white); box-shadow: 0 1px 4px rgba(0,0,0,.12); }
.primary-button {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  padding: 14px 18px;
  color: var(--white);
  background: var(--brand);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: background .2s ease, transform .2s ease;
}
.primary-button:hover { background: var(--brand-hover); transform: translateY(-1px); }
.primary-button:focus-visible, button:focus-visible, a:focus-visible, select:focus-visible { outline: 3px solid rgba(200,59,45,.45); outline-offset: 3px; }
.planner-note { margin: 10px 0 0; color: var(--muted); text-align: center; font-size: 10px; }

.install-guide {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(48px, 7vw, 92px);
  margin-bottom: 24px;
  padding: 92px 64px;
  background: linear-gradient(145deg, #f7ead2 0%, #efe0c5 100%);
  border-radius: var(--radius-xl);
}
.install-intro { align-self: center; }
.install-intro h2 { max-width: 430px; margin-bottom: 0; font-size: clamp(42px, 4.7vw, 64px); font-weight: 650; line-height: 1; }
.install-intro > p:not(.eyebrow) { max-width: 430px; margin: 24px 0; color: var(--muted); font-size: 17px; line-height: 1.5; }
.app-preview {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 28px;
  padding: 11px 16px 11px 11px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(78,49,24,.09);
}
.app-preview img { width: 48px; height: 48px; border-radius: 12px; }
.app-preview div { display: grid; gap: 2px; }
.app-preview strong { font-size: 13px; }
.app-preview span { color: var(--muted); font-size: 10px; }
.install-platforms { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.install-card {
  padding: 26px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px rgba(78,49,24,.07);
}
.install-card.android-card { background: var(--stone-blue); color: var(--white); }
.install-card header { min-height: 76px; display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.android-card header { border-bottom-color: rgba(255,255,255,.18); }
.install-card header div { order: -1; }
.install-card header p { margin: 0 0 5px; color: var(--muted); font-size: 10px; font-weight: 600; }
.android-card header p { color: #d2e4e5; }
.install-card h3 { margin: 0; font-size: 24px; font-weight: 650; letter-spacing: -.025em; }
.platform-badge { padding: 6px 9px; color: var(--brand); background: rgba(200,59,45,.08); border-radius: 999px; font-size: 9px; font-weight: 700; }
.android-card .platform-badge { color: #ffe0a2; background: rgba(255,224,162,.14); }
.install-card ol { padding: 0; margin: 5px 0 0; list-style: none; }
.install-card li { display: grid; grid-template-columns: 28px 1fr; gap: 11px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.android-card li { border-bottom-color: rgba(255,255,255,.16); }
.install-card li:last-child { padding-bottom: 0; border-bottom: 0; }
.install-card li > span { color: var(--brand); font-size: 13px; font-weight: 600; }
.android-card li > span { color: #ffe0a2; }
.install-card li strong { display: block; margin-bottom: 5px; font-size: 13px; }
.install-card li p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.android-card li p { color: #d2e4e5; }

.result-panel {
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 52px;
  color: var(--white);
  background: linear-gradient(145deg, #173f49 0%, #245f68 100%);
  border-radius: var(--radius-xl);
}
.result-panel[hidden] { display: none; }
.result-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.18); }
.result-heading .eyebrow { margin-bottom: 10px; color: #c4dcda; }
.result-heading h2 { margin-bottom: 0; font-size: clamp(40px, 5vw, 64px); font-weight: 650; }
.text-button { padding: 8px 14px; color: var(--white); background: rgba(255,255,255,.12); border: 0; border-radius: 999px; cursor: pointer; }
.route-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 38px; padding-top: 36px; }
.route-number { color: #f4c36b; font-size: 22px; font-weight: 600; }
.route-time { margin: 22px 0 9px; color: #c4dcda; font-size: 10px; font-weight: 700; letter-spacing: .08em; }
.route-grid h3 { margin: 0 0 9px; font-size: 19px; letter-spacing: -.018em; }
.route-grid article > p:last-child { margin: 0; color: #d2e4e5; font-size: 13px; line-height: 1.58; }

.how {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 82px;
  margin-top: 24px;
  padding: 100px 64px;
  background: linear-gradient(145deg, #f5e5c7 0%, #eddbbc 100%);
  border-radius: var(--radius-xl);
}
.section-intro h2 { margin-bottom: 0; font-size: clamp(44px, 5.5vw, 68px); font-weight: 650; line-height: 1; }
.feature-list { display: grid; gap: 12px; }
.feature-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: 18px;
}
.feature-list article > span { color: var(--brand); font-size: 16px; font-weight: 600; }
.feature-list h3 { margin: 1px 0 7px; font-size: 19px; letter-spacing: -.018em; }
.feature-list p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

.channel-note {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 60px;
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 72px 64px;
  background: linear-gradient(135deg, #f5d9a3 0%, #f8ead0 38%, #dceae0 68%, #d7e4eb 100%);
  border-radius: var(--radius-xl);
}
.quote { margin: 0; font-size: clamp(30px, 3.8vw, 46px); font-weight: 650; line-height: 1.08; letter-spacing: -.04em; }
.channel-note div { align-self: end; }
.channel-note div p { margin: 0 0 8px; font-size: 12px; font-weight: 600; }
.channel-note div span { color: var(--muted); font-size: 12px; line-height: 1.55; }

.gift-market {
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 72px 64px 42px;
  overflow: hidden;
  color: var(--white);
  background: #2b2118;
  border-radius: var(--radius-xl);
}
.gift-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 72px;
  align-items: end;
  margin-bottom: 42px;
}
.gift-heading .eyebrow { margin-bottom: 14px; color: #e7cda6; }
.gift-heading h2 { max-width: 620px; margin-bottom: 0; font-size: clamp(46px, 5.4vw, 70px); font-weight: 650; line-height: .96; }
.gift-heading > p { margin: 0; color: #cbbba8; font-size: 16px; line-height: 1.6; }
.gift-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gift-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.gift-craft { background: linear-gradient(145deg, #b74434, #8f2f29); }
.gift-museum { background: linear-gradient(145deg, #3c8176, #245c58); }
.gift-taste { background: linear-gradient(145deg, #cf9134, #a86722); }
.gift-symbol { margin: -14px 0 24px auto; color: rgba(255,255,255,.32); font-size: 82px; font-weight: 700; line-height: 1; }
.gift-category { margin: 0 0 10px; color: rgba(255,255,255,.76); font-size: 10px; font-weight: 700; letter-spacing: .08em; }
.gift-card h3 { margin: 0 0 11px; font-size: 23px; line-height: 1.12; letter-spacing: -.025em; }
.gift-card > p:not(.gift-category) { margin: 0; color: rgba(255,255,255,.76); font-size: 13px; line-height: 1.55; }
.gift-status { width: fit-content; margin-top: auto; padding: 7px 10px; color: var(--white); background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.17); border-radius: 999px; font-size: 10px; }
.gift-promise { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.16); }
.gift-promise span { display: inline-flex; align-items: center; gap: 8px; color: #d9cbbb; font-size: 11px; }
.gift-promise span::before { content: "✓"; color: #f1bd5c; font-weight: 700; }

footer {
  min-height: 128px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  color: var(--muted);
  font-size: 11px;
}
footer p { text-align: center; }
.footer-mark { color: var(--ink); }
.sibling-project { justify-self: end; text-align: right; }
.sibling-project small { display: block; margin-bottom: 3px; color: var(--muted); font-size: 9px; letter-spacing: .04em; text-transform: uppercase; }
.sibling-project span { color: var(--brand); font-size: 12px; font-weight: 600; }
.sibling-project:hover span { text-decoration: underline; }

@media (max-width: 880px) {
  .site-header { padding-inline: 18px; }
  nav a:not(.nav-cta) { display: none; }
  nav { gap: 8px; }
  .city-editions { width: min(100% - 28px, 680px); padding: 42px 28px 28px; }
  .city-editions-heading { grid-template-columns: 1fr; gap: 18px; }
  .city-editions-grid { grid-template-columns: repeat(2, 1fr); }
  .city-edition-featured { min-height: 360px; }
  .hero, .install-guide, .result-panel, .how, .channel-note, .gift-market, footer { width: min(100% - 28px, 680px); }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 46px; padding: 70px 0 72px; }
  h1 { font-size: clamp(54px, 16vw, 82px); }
  .hero-lede { font-size: 18px; }
  .planner { padding: 25px 21px; border-radius: 26px; }
  .install-guide { grid-template-columns: 1fr; gap: 42px; padding: 68px 28px; }
  .install-platforms { grid-template-columns: 1fr; }
  .result-panel { padding: 38px 24px; }
  .result-heading { align-items: flex-start; flex-direction: column; }
  .route-grid { grid-template-columns: 1fr; }
  .route-grid article { padding-bottom: 26px; border-bottom: 1px solid rgba(255,255,255,.16); }
  .route-grid article:last-child { border-bottom: 0; }
  .how { grid-template-columns: 1fr; gap: 42px; padding: 68px 28px; }
  .channel-note { grid-template-columns: 1fr; gap: 34px; padding: 58px 28px; }
  .gift-market { padding: 58px 28px 34px; }
  .gift-heading { grid-template-columns: 1fr; gap: 22px; }
  .gift-grid { grid-template-columns: 1fr; }
  .gift-card { min-height: 300px; }
  footer { grid-template-columns: 1fr auto; gap: 16px; padding: 28px 0; }
  footer p { display: none; }
}

@media (max-width: 430px) {
  .language-gate { width: calc(100% - 24px); max-height: calc(100dvh - 24px); padding: 22px; border-radius: 22px; }
  .language-gate-brand { margin-bottom: 20px; }
  .language-gate h2 { font-size: 34px; }
  .language-gate-lede { margin-block: 14px 18px; }
  .language-gate-options { gap: 7px; }
  .language-gate-options button { min-height: 46px; padding-inline: 12px; }
  .city-editions { padding: 34px 18px 18px; border-radius: 24px; }
  .city-editions-heading h2 { font-size: 38px; }
  .city-editions-heading > span { font-size: 12px; }
  .city-editions-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .city-editions-grid::-webkit-scrollbar { display: none; }
  .city-edition, .city-edition-featured { min-width: 82%; min-height: 360px; scroll-snap-align: start; }
  .city-edition-featured .city-edition-copy strong, .city-edition-copy strong { font-size: 36px; }
  .wordmark > span:last-child { display: none; }
  .language-menu summary { min-width: 100px; padding-inline: 10px; }
  .nav-cta { padding-inline: 11px; }
  h1 { font-size: 52px; }
  .planner h2 { font-size: 30px; }
  .beta { display: none; }
  .install-guide, .how, .channel-note, .gift-market { border-radius: 24px; }
  .install-card { padding: 22px; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy, .planner { animation: rise .65s cubic-bezier(.2,.8,.2,1) both; }
  .planner { animation-delay: .08s; }
  .result-panel { animation: rise .45s ease-out; }
  @keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
}
