

:root {
  --desk: #e9dcc6;
  --paper: #fff7e6;
  --paper-bright: #fffdf8;
  --yellow: #ffe68a;
  --orange: #ff9f1c;
  --coral: #ff6f61;
  --teal: #0caea4;
  --blue: #7db7e8;
  --green: #4e7c59;
  --green-deep: #2f653c;
  --ink: #3a2c24;
  --muted: #755f50;
  --line: rgba(91, 62, 38, 0.18);
  --shadow: 0 18px 50px rgba(92, 53, 18, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Pretendard Variable", Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", "Noto Sans JP", "Noto Sans SC", system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-shell { min-height: 100vh; overflow-x: hidden; overflow-y: visible; }
.container { width: min(1180px, calc(100% - 56px)); margin-inline: auto; }

.topbar {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  height: 82px;
  display: flex;
  align-items: center;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 900; letter-spacing: -0.03em; }
.brand-icon { width: 42px; height: 42px; border-radius: 12px; box-shadow: 0 6px 16px rgba(94, 52, 16, .18); }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 800; }
.nav-links a { opacity: .75; transition: opacity .2s ease, transform .2s ease; }
.nav-links a:hover { opacity: 1; transform: translateY(-1px); }
.nav-pill { padding: 10px 16px; border-radius: 999px; background: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.86); }
.language-menu { position: relative; }
.language-menu summary { display: flex; align-items: center; gap: 7px; padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.86); cursor: pointer; list-style: none; user-select: none; }
.language-menu summary::-webkit-details-marker { display: none; }
.language-menu[open] summary { background: var(--paper-bright); }
.language-options { position: absolute; top: calc(100% + 10px); right: 0; min-width: 156px; padding: 8px; border: 1px solid var(--line); border-radius: 18px; background: var(--paper-bright); box-shadow: var(--shadow); }
.language-options a { display: flex; align-items: center; justify-content: space-between; padding: 9px 11px; border-radius: 11px; color: var(--muted); white-space: nowrap; }
.language-options a:hover { background: #f7f0e5; }
.language-options a.active { color: var(--green-deep); background: #edf4e8; }
.policy-header .language-menu summary { background: #fff; border-color: var(--line); }

.hero {
  position: relative;
  min-height: 760px;
  padding: 108px 0 52px;
  background:
    radial-gradient(circle at 84% 18%, rgba(255,255,255,.9) 0 7%, transparent 27%),
    linear-gradient(145deg, #fff1cd 0%, #f6cb83 56%, #e8a756 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .36;
  background-image: repeating-linear-gradient(90deg, transparent 0 79px, rgba(107,62,26,.06) 80px 81px);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr .78fr; align-items: center; gap: 32px; }
.hero-copy-panel { position: relative; z-index: 5; min-width: 0; align-self: start; padding-top: 48px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(255,255,255,.82);
  color: #6b492f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .07em;
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(12,174,164,.14); }
.hero-logo { width: min(300px, 62%); margin: 8px 0 16px; filter: drop-shadow(0 10px 12px rgba(90,45,8,.12)); }
.hero h1 { width: 680px; max-width: calc(100vw - 56px); margin: 0; font-size: clamp(40px, 3.35vw, 48px); line-height: 1.12; letter-spacing: -.045em; font-weight: 900; }
.headline-line { display: block; }
.hero-copy-panel > .ko .headline-line,
.hero-copy-panel > .zh .headline-line { white-space: nowrap; }
html[data-lang="en"] .hero h1 { font-size: clamp(40px, 4.1vw, 50px); }
html[data-lang="ja"] .hero h1 { font-size: clamp(38px, 3.75vw, 46px); }
html[data-lang="ko"] .hero h1,
html[data-lang="zh"] .hero h1 { font-size: clamp(38px, 3.1vw, 44px); }
.hero h1 .accent { color: var(--green-deep); }
.hero-copy { max-width: 610px; margin: 18px 0 0; color: #6a4c37; font-size: 16px; letter-spacing: -.01em; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 900;
  border: 2px solid rgba(62,45,30,.12);
  box-shadow: 0 8px 0 rgba(77,51,27,.12);
  transition: transform .16s ease, box-shadow .16s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 0 rgba(77,51,27,.10); }
.button-primary { color: white; background: var(--green); border-color: #3d6747; }
.button-secondary { background: rgba(255,253,248,.76); }
.button-arrow { font-size: 20px; line-height: 1; }
.store-buttons { display: flex; align-items: center; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.store-button { min-width: 174px; min-height: 56px; display: flex; align-items: center; justify-content: center; gap: 11px; padding: 0 18px; border: 1px solid rgba(255,255,255,.24); border-radius: 16px; color: white; background: #211b18; box-shadow: 0 12px 28px rgba(77,51,27,.18); cursor: pointer; text-align: left; transition: transform .16s ease, box-shadow .16s ease, background .16s ease; }
.store-button:hover { transform: translateY(-2px); background: #342a25; box-shadow: 0 10px 0 rgba(77,51,27,.12); }
.store-button:focus-visible { outline: 3px solid white; outline-offset: 3px; }
.store-button strong { display: block; color: white; font-size: 17px; line-height: 1; letter-spacing: 0; }
.store-play-icon { width: 27px; height: 27px; display: inline-flex; flex: 0 0 auto; }
.store-play-icon svg { width: 27px; height: 27px; }
.play-blue { fill: #4285f4; } .play-green { fill: #34a853; } .play-yellow { fill: #fbbc04; } .play-red { fill: #ea4335; }
.store-apple-icon { width: 27px; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; color: white; font-family: -apple-system, BlinkMacSystemFont, sans-serif; font-size: 29px; line-height: 1; }
.release-note { margin-top: 17px; color: #765642; font-size: 13px; font-weight: 700; }

.hero-art { position: relative; min-height: 570px; display: grid; place-items: center; transform: translateX(10px); }
.phone {
  position: relative;
  z-index: 2;
  width: min(280px, 70vw);
  padding: 10px;
  border: 4px solid #624329;
  border-radius: 48px;
  background: #2d211b;
  box-shadow: 0 38px 70px rgba(82,45,14,.29), inset 0 0 0 2px rgba(255,255,255,.18);
  transform: rotate(3deg);
}
.phone::before { content: ""; position: absolute; z-index: 3; top: 17px; left: 50%; width: 34%; height: 24px; transform: translateX(-50%); border-radius: 20px; background: #2d211b; }
.phone img { width: 100%; height: auto; aspect-ratio: 862/1824; object-fit: cover; border-radius: 35px; }
.sticky {
  position: absolute;
  z-index: 3;
  width: 154px;
  padding: 22px 18px 20px;
  background: #ffdf66;
  box-shadow: 0 16px 24px rgba(82,45,14,.2);
  font-weight: 900;
  font-size: 20px;
  line-height: 1.28;
  text-align: center;
  transform: rotate(-7deg);
  left: -1%;
  top: 17%;
}
.sticky small { display: block; margin-top: 8px; font-size: 12px; color: #735327; letter-spacing: .08em; }
.hero-animals { position: absolute; z-index: 4; width: 190px; right: 0; bottom: 4%; filter: drop-shadow(0 18px 16px rgba(78,45,15,.2)); transform: rotate(4deg); }
.paperclip { position: absolute; width: 18px; height: 66px; border: 5px solid rgba(44,112,102,.72); border-radius: 12px; right: 3%; top: 16%; transform: rotate(22deg); }

.marquee { background: var(--ink); color: #fff4da; overflow: hidden; }
.marquee-inner { display: flex; justify-content: center; gap: clamp(24px,5vw,70px); padding: 17px 20px; font-size: 13px; font-weight: 900; letter-spacing: .12em; white-space: nowrap; }
.marquee-inner span::before { content: "✦"; color: var(--yellow); margin-right: clamp(14px,3vw,34px); }

.section { padding: 112px 0; }
.section-kicker { margin: 0 0 14px; color: var(--green); font-size: 13px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.section-title { max-width: 740px; margin: 0; font-size: clamp(34px, 5vw, 56px); line-height: 1.15; letter-spacing: -.05em; font-weight: 900; }
.section-lead { max-width: 620px; margin: 20px 0 0; color: var(--muted); font-size: 18px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.step-card { position: relative; min-height: 270px; padding: 28px; border: 1px solid var(--line); border-radius: 30px; background: var(--paper-bright); box-shadow: var(--shadow); overflow: hidden; }
.step-number { color: rgba(58,44,36,.18); font-size: 54px; line-height: 1; font-weight: 900; letter-spacing: -.08em; }
.step-card h3 { margin: 32px 0 9px; font-size: 25px; letter-spacing: -.03em; }
.step-card p { margin: 0; color: var(--muted); }
.token-dot { position: absolute; width: 92px; height: 92px; border-radius: 50%; right: -16px; top: 18px; border: 10px solid rgba(255,255,255,.7); box-shadow: 0 8px 18px rgba(70,45,18,.14); }
.token-orange { background: var(--orange); }
.token-teal { background: var(--teal); }
.token-green { background: #83af3d; }

.gameplay { background: #f3e8d5; }
.mode-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 52px; }
.mode-card { position: relative; min-height: 430px; border-radius: 34px; padding: 38px; overflow: hidden; color: white; box-shadow: 0 24px 50px rgba(56,39,23,.17); }
.mode-normal { background: linear-gradient(145deg, #f2a821, #dd731c); }
.mode-challenge { background: linear-gradient(145deg, #639d3a, #326b3d); }
.mode-card h3 { margin: 10px 0 12px; font-size: 38px; letter-spacing: -.045em; }
.mode-card p { max-width: 410px; margin: 0; color: rgba(255,255,255,.84); font-size: 16px; }
.mode-tag { font-size: 12px; font-weight: 900; letter-spacing: .14em; opacity: .78; }
.mode-list { display: grid; gap: 9px; margin-top: 25px; font-weight: 800; }
.mode-list span::before { content: "✓"; display: inline-grid; place-items: center; width: 22px; height: 22px; margin-right: 9px; border-radius: 50%; background: rgba(255,255,255,.18); }
.mode-art { position: absolute; right: -5%; bottom: -9%; width: 44%; filter: drop-shadow(0 18px 18px rgba(33,22,10,.22)); }
.mode-challenge .mode-art { width: 36%; right: 4%; bottom: 2%; }

.principles-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 72px; }
.principles-art { position: relative; min-height: 520px; display: grid; place-items: center; }
.icon-card { width: min(380px, 86vw); padding: 18px; border-radius: 42px; background: #fff; box-shadow: 0 28px 70px rgba(78,45,15,.2); transform: rotate(-3deg); }
.icon-card img { border-radius: 30px; }
.note-card { position: absolute; right: 0; bottom: 3%; width: 235px; padding: 25px; background: var(--yellow); box-shadow: 0 16px 34px rgba(74,43,17,.18); transform: rotate(5deg); font-weight: 900; }
.principle-list { display: grid; gap: 14px; margin-top: 34px; }
.principle { display: grid; grid-template-columns: 42px 1fr; gap: 15px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.principle-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: #e8f3df; color: var(--green); font-weight: 900; }
.principle h3 { margin: 0 0 4px; font-size: 18px; }
.principle p { margin: 0; color: var(--muted); font-size: 14px; }

.faq-section { background: var(--paper-bright); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 76px; align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--line); border-radius: 20px; background: var(--paper); overflow: hidden; }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 22px; font-size: 17px; font-weight: 900; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--green); font-size: 24px; font-weight: 500; transition: transform .18s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 22px 21px; color: var(--muted); }

.contact-section { padding: 72px 0; background: #f3e8d5; }
.contact-card { display: flex; align-items: center; justify-content: space-between; gap: 38px; padding: 48px 52px; border: 1px solid var(--line); border-radius: 32px; background: var(--yellow); box-shadow: var(--shadow); }
.contact-card h2 { margin: 0; font-size: clamp(32px, 4vw, 48px); letter-spacing: -.045em; }
.contact-card p:not(.section-kicker) { margin: 10px 0 0; color: #6d5329; }
.contact-status { flex: 0 0 auto; min-width: 240px; padding: 19px 21px; border-radius: 18px; background: rgba(255,255,255,.68); border: 1px solid rgba(255,255,255,.82); }
.contact-status span, .contact-status strong { display: block; }
.contact-status span { color: var(--muted); font-size: 12px; font-weight: 800; }
.contact-status strong { margin-top: 3px; font-size: 17px; }

.cta { position: relative; padding: 100px 0; background: var(--green-deep); color: white; overflow: hidden; }
.cta::after { content: ""; position: absolute; width: 420px; height: 420px; border: 88px solid rgba(255,255,255,.05); border-radius: 50%; right: -100px; top: -130px; }
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 44px; }
.cta h2 { margin: 0; max-width: 650px; font-size: clamp(36px,5vw,60px); line-height: 1.12; letter-spacing: -.05em; }
.cta p { margin: 18px 0 0; color: rgba(255,255,255,.72); }
.cta-badge { flex: 0 0 auto; padding: 15px 22px; border-radius: 18px; color: var(--ink); background: var(--yellow); font-weight: 900; transform: rotate(-3deg); box-shadow: 0 9px 0 rgba(0,0,0,.12); }

.footer { padding: 54px 0 36px; background: #2a211d; color: rgba(255,255,255,.78); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 42px; }
.footer .brand { color: white; }
.footer-copy { max-width: 420px; margin: 16px 0 0; font-size: 14px; color: rgba(255,255,255,.55); }
.footer-links { display: flex; justify-content: flex-end; align-items: flex-start; gap: 13px 24px; flex-wrap: wrap; font-size: 14px; font-weight: 800; }
.footer-links a:hover { color: white; }
.copyright { margin-top: 38px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; color: rgba(255,255,255,.42); }

.policy-page { min-height: 100vh; background: #f4ead9; }
.policy-header { padding: 28px 0; background: rgba(255,247,230,.9); border-bottom: 1px solid var(--line); }
.policy-header .nav { min-height: 42px; }
.back-link { font-size: 14px; font-weight: 900; color: var(--green); }
.policy-main { padding: 72px 0 100px; }
.doc-main { padding: 80px 0 112px; }
.doc-hero { max-width: 820px; margin: 0 auto 34px; }
.doc-hero h1 { margin: 10px 0 12px; font-size: clamp(42px, 6vw, 66px); line-height: 1.1; letter-spacing: -.055em; }
.doc-hero > p:last-child { margin: 0; color: var(--muted); font-size: 18px; }
.doc-faq-list { max-width: 820px; margin-inline: auto; }
.contact-doc-card .contact-mail { display: inline-block; color: var(--green-deep); font-size: clamp(21px, 4vw, 30px); font-weight: 900; letter-spacing: -.025em; border-bottom: 3px solid var(--yellow); }
.policy-hero { max-width: 820px; margin: 0 auto 28px; }
.policy-hero h1 { margin: 18px 0 12px; font-size: clamp(38px,6vw,62px); line-height: 1.12; letter-spacing: -.055em; }
.policy-hero p { color: var(--muted); }
.draft-badge { display: inline-flex; padding: 7px 11px; border-radius: 999px; color: #825b11; background: var(--yellow); font-size: 12px; font-weight: 900; }
.policy-notice { max-width: 820px; margin: 0 auto 22px; padding: 20px 22px; border: 1px solid #e5bd59; border-radius: 18px; background: #fff8d9; color: #674f20; font-size: 14px; }
.policy-card { max-width: 820px; margin: 0 auto; padding: 42px; border: 1px solid var(--line); border-radius: 28px; background: var(--paper-bright); box-shadow: var(--shadow); }
.policy-card section + section { margin-top: 38px; padding-top: 34px; border-top: 1px solid var(--line); }
.policy-card h2 { margin: 0 0 13px; font-size: 23px; letter-spacing: -.03em; }
.policy-card h3 { margin: 24px 0 8px; font-size: 17px; }
.policy-card p, .policy-card li { color: #665448; font-size: 15px; }
.policy-card ul { margin: 10px 0 0; padding-left: 20px; }
.policy-card li + li { margin-top: 7px; }
.policy-table { width: 100%; border-collapse: collapse; margin-top: 14px; font-size: 14px; }
.policy-table th, .policy-table td { padding: 14px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.policy-table th { background: #f7ead5; }
.placeholder { color: #b15345; font-weight: 900; }
.terms-card section { scroll-margin-top: 30px; }

@media (max-width: 900px) {
  .hero { min-height: auto; padding-top: 125px; }
  .hero-grid, .principles-grid { grid-template-columns: 1fr; }
  .hero-art { transform: none; }
  .hero-copy { max-width: 640px; }
  .hero-copy-panel { padding-top: 0; }
  .hero-art { min-height: 560px; }
  .sticky { left: 6%; }
  .hero-animals { right: 4%; }
  .steps { grid-template-columns: 1fr; }
  .step-card { min-height: 230px; }
  .mode-grid { grid-template-columns: 1fr; }
  .principles-grid { gap: 38px; }
  .principles-art { order: 2; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-card { align-items: flex-start; flex-direction: column; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }
  .topbar { height: 70px; }
  .brand > span { display: none; }
  .nav-links { gap: 12px; font-size: 13px; }
  .language-menu summary { padding: 8px 10px; }
  .hero { padding: 104px 0 66px; }
  .hero-logo { width: min(270px, 74%); margin-top: 10px; }
  .hero h1 { width: auto; max-width: 100%; font-size: clamp(34px, 10.5vw, 44px); line-height: 1.13; }
  .hero-copy-panel > .ko .headline-line,
  .hero-copy-panel > .zh .headline-line { white-space: normal; }
  .hero-copy { font-size: 16px; }
  .button { width: 100%; }
  .store-buttons { align-items: stretch; flex-direction: column; }
  .store-button { width: 100%; }
  .hero-art { min-height: 500px; margin-top: 10px; }
  .phone { width: 240px; }
  .sticky { width: 122px; padding: 16px 12px; font-size: 16px; left: -2%; top: 18%; }
  .hero-animals { width: 150px; right: -2%; bottom: 6%; }
  .marquee-inner { justify-content: flex-start; overflow: hidden; }
  .section { padding: 82px 0; }
  .steps, .mode-grid { margin-top: 38px; }
  .mode-card { min-height: 440px; padding: 30px 25px; }
  .mode-card h3 { font-size: 32px; }
  .mode-art { width: 52%; }
  .mode-challenge .mode-art { width: 45%; }
  .principles-art { min-height: 430px; }
  .note-card { width: 190px; right: -3%; }
  .contact-card { padding: 34px 25px; }
  .contact-status { width: 100%; min-width: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; flex-wrap: wrap; }
  .policy-main { padding-top: 48px; }
  .policy-card { padding: 26px 20px; border-radius: 22px; }
  .policy-table, .policy-table tbody, .policy-table tr, .policy-table th, .policy-table td { display: block; }
  .policy-table tr + tr { margin-top: 12px; }
  .policy-table th { border-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* Static Vinnigom Studio integration */
.tdd-page .topbar{position:relative;background:rgba(255,247,230,.94);border-bottom:1px solid var(--line)}
.tdd-page.site-shell .topbar{position:absolute;background:transparent;border:0}
.language-trigger{display:flex;align-items:center;gap:7px;padding:10px 14px;border-radius:999px;background:rgba(255,255,255,.72);border:1px solid rgba(255,255,255,.9);color:inherit;font:inherit;font-weight:800;cursor:pointer}
.language-options{display:none}.language-options.open{display:block}.language-options .lang-option{display:flex;align-items:center;justify-content:space-between;width:100%;padding:9px 11px;border:0;border-radius:11px;background:transparent;color:var(--muted);font:inherit;text-align:left;cursor:pointer}.language-options .lang-option:hover{background:#f7f0e5}.language-options .lang-option.active{color:var(--green-deep);background:#edf4e8}.language-options .lang-option b{display:none}.language-options .lang-option.active b{display:block}
.tdd-page .ko,.tdd-page .ja,.tdd-page .zh{display:none}
html[data-lang="ko"] .tdd-page .en,html[data-lang="ja"] .tdd-page .en,html[data-lang="zh"] .tdd-page .en{display:none}
html[data-lang="ko"] .tdd-page .ko,html[data-lang="ja"] .tdd-page .ja,html[data-lang="zh"] .tdd-page .zh{display:revert}
.note-card>span{display:none}html[data-lang="en"] .note-card>.en,html[data-lang="ko"] .note-card>.ko,html[data-lang="ja"] .note-card>.ja,html[data-lang="zh"] .note-card>.zh{display:inline}
.cta-local{width:100%;align-items:center;justify-content:space-between;gap:44px}.cta-local.en{display:flex}html[data-lang="ko"] .cta-local.ko,html[data-lang="ja"] .cta-local.ja,html[data-lang="zh"] .cta-local.zh{display:flex}html[data-lang="ko"] .cta-local.en,html[data-lang="ja"] .cta-local.en,html[data-lang="zh"] .cta-local.en{display:none}
.policy-table-wrap{overflow-x:auto}
@media(max-width:900px){.cta-local{align-items:flex-start;flex-direction:column}}
@media(max-width:620px){.nav-links{gap:9px;font-size:12px}.nav-links>.nav-anchor{display:inline}.language-trigger{padding:8px 9px}.language-options{right:0}.brand>span{display:none}}
