/* GuideAway — guideaway.app
   Tokens lifted verbatim from the GuideAway Design System. Do not invent values. */

@font-face { font-family: 'Plus Jakarta Sans'; src: url('../assets/fonts/PlusJakartaSans-Regular.ttf') format('truetype');  font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Plus Jakarta Sans'; src: url('../assets/fonts/PlusJakartaSans-Medium.ttf') format('truetype');   font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Plus Jakarta Sans'; src: url('../assets/fonts/PlusJakartaSans-SemiBold.ttf') format('truetype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Plus Jakarta Sans'; src: url('../assets/fonts/PlusJakartaSans-Bold.ttf') format('truetype');     font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Plus Jakarta Sans'; src: url('../assets/fonts/PlusJakartaSans-ExtraBold.ttf') format('truetype');font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'JetBrains Mono';    src: url('../assets/fonts/JetBrainsMono-Medium.ttf') format('truetype');     font-weight: 400 600; font-style: normal; font-display: swap; }

:root {
  --brand-gradient: linear-gradient(45deg, #12D5D7 0%, #88E591 50%, #EBF94E 100%);
  --navy-900: #002033;
  --navy-800: #002A41;
  --navy-700: #053951;
  --navy-100: #E5ECEF;
  --pink: #E91561;
  --ink-1: #002A41;
  --ink-2: #2F4654;
  --ink-3: #5A6B75;
  --ink-4: #8FA0AA;
  --ink-5: #C9D3D8;
  --surface-1: #FFFFFF;
  --success: #1FAE6B;
  --surface-2: #F4F8F9;
  --surface-3: #E9EFF1;
  --border: #E0E8EB;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;
  --r-md: 14px;
  --r-lg: 20px;
  --r-pill: 999px;
  --sh-1: 0 1px 2px rgba(0,42,65,.06), 0 1px 3px rgba(0,42,65,.04);
  --sh-2: 0 4px 12px rgba(0,42,65,.08), 0 2px 4px rgba(0,42,65,.04);
  --sh-3: 0 12px 28px rgba(0,42,65,.12), 0 4px 10px rgba(0,42,65,.05);
  --sh-pop: 0 20px 50px rgba(0,42,65,.18);
  --warning: #E89324;
  --ease: cubic-bezier(.2,.8,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
html.i18n-pending body { visibility: hidden; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--surface-2);
  color: var(--ink-2);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
main { flex: 1 0 auto; }
h1, h2, h3 { color: var(--ink-1); margin: 0; font-weight: 800; line-height: 1.15; }
p { margin: 0; }
a { color: var(--navy-800); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1.5px; transition: color 150ms var(--ease); }
a:hover { color: var(--navy-700); }
:focus-visible { outline: 3px solid var(--navy-800); outline-offset: 3px; border-radius: 4px; }
.mono { font-family: var(--font-mono); font-weight: 500; font-variant-numeric: tabular-nums; }
.overline { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }

.wrap { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 20;
  background: var(--navy-800); color: #fff; padding: 12px 18px;
  border-radius: var(--r-md); text-decoration: none; font-weight: 600;
  transition: top 150ms var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; }

/* ── Header ───────────────────────────────────────────── */
.site-header { background: rgba(255,255,255,.94); backdrop-filter: blur(20px); box-shadow: var(--sh-1); position: relative; z-index: 5; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink-1); }
.brand img { width: 36px; height: 36px; border-radius: 10px; }
.brand span { font-size: 19px; font-weight: 800; letter-spacing: -.02em; }

/* ── Language menu (scales to any number of languages) ── */
.langmenu { position: relative; }
.langmenu > summary {
  list-style: none; display: flex; align-items: center; gap: 8px;
  min-height: 44px; padding: 0 16px; border-radius: var(--r-pill);
  background: var(--surface-3); color: var(--ink-1);
  font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; user-select: none;
  transition: background 150ms var(--ease), color 150ms var(--ease);
}
.langmenu > summary::-webkit-details-marker { display: none; }
.langmenu > summary::marker { content: ''; }
.langmenu > summary:hover { background: var(--navy-100); }
.langmenu[open] > summary { background: var(--navy-800); color: #fff; }
.langmenu svg { width: 16px; height: 16px; flex: none; transition: transform 150ms var(--ease); }
.langmenu[open] svg { transform: rotate(180deg); }
.langmenu-list {
  position: absolute; right: 0; top: calc(100% + 8px); z-index: 30;
  min-width: 200px; max-height: 60vh; overflow-y: auto;
  margin: 0; padding: 6px; list-style: none;
  background: var(--surface-1); border-radius: var(--r-md); box-shadow: var(--sh-3);
  display: grid; gap: 2px;
}
.langmenu-list a {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  min-height: 44px; padding: 0 14px; border-radius: 10px;
  text-decoration: none; font-size: 15px; font-weight: 600; color: var(--ink-2);
}
.langmenu-list a:hover { background: var(--surface-2); color: var(--ink-1); }
.langmenu-list a[aria-current="true"] { background: var(--navy-100); color: var(--navy-800); }
.langmenu--on-glass > summary { background: rgba(255,255,255,.72); backdrop-filter: blur(12px); }
.langmenu--on-glass > summary:hover { background: #fff; }

/* ── Hero ─────────────────────────────────────────────── */
.hero { background: var(--brand-gradient); padding: 72px 0 76px; }
.hero .wrap { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); gap: 48px; align-items: center; }
.hero .overline { color: var(--navy-800); opacity: .78; font-size: 15px; letter-spacing: .14em; }
.hero h1 { font-size: clamp(44px, 7vw, 64px); letter-spacing: -.02em; margin: 14px 0 18px; }
.hero-lead { font-size: clamp(17px, 2vw, 19px); color: var(--ink-1); max-width: 34ch; }
.hero-art { justify-self: end; width: 100%; max-width: 420px; }
.hero-art img { width: 100%; height: auto; filter: drop-shadow(0 18px 40px rgba(0,42,65,.18)); }

/* ── Store badges ─────────────────────────────────────── */
.stores { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.store {
  display: flex; align-items: center; gap: 12px;
  min-height: 60px; padding: 10px 22px 10px 18px;
  background: var(--navy-800); color: #fff; border-radius: var(--r-md);
  box-shadow: var(--sh-2); text-decoration: none;
  transition: transform 80ms var(--ease), background 150ms var(--ease);
}
.store:hover { background: var(--navy-700); color: #fff; }
.store:active { transform: translateY(1px); }
.store[aria-disabled="true"] { cursor: default; }
.store img { width: 24px; height: 24px; }
.store .store-icon--apple { filter: brightness(0) invert(1); }
.store b { display: block; font-size: 16px; font-weight: 700; letter-spacing: -.01em; }
.store small { display: block; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.66); }
.store--muted { background: rgba(255,255,255,.82); backdrop-filter: blur(12px); color: var(--ink-1); box-shadow: var(--sh-1); }
.store--muted:hover { background: #fff; color: var(--ink-1); }
.store--muted small { color: var(--ink-3); }
.store--muted .store-icon--apple { filter: none; }
.store--muted .store-icon--google { filter: none; }

/* ── Sections ─────────────────────────────────────────── */
.section { padding: 72px 0; }
.section--tight { padding: 0 0 88px; }
.section-head { max-width: 44ch; margin-bottom: 32px; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 34px); letter-spacing: -.015em; }

.benefits { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.card { background: var(--surface-1); border-radius: var(--r-lg); box-shadow: var(--sh-2); padding: 26px 24px; }
.card h3 { font-size: 18px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 8px; }
.card p { font-size: 15px; color: var(--ink-3); }

/* ── Route block ──────────────────────────────────────── */
.route { background: var(--surface-1); border-radius: var(--r-lg); box-shadow: var(--sh-2); overflow: hidden; }
.route-body { padding: 32px; display: grid; grid-template-columns: minmax(0,1.2fr) minmax(0,1fr); gap: 40px; align-items: start; }
.route-body h2 { font-size: clamp(24px, 3vw, 30px); letter-spacing: -.015em; margin: 10px 0 14px; }
.route-body p { color: var(--ink-3); max-width: 46ch; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.chip { background: var(--surface-3); color: var(--ink-2); border-radius: var(--r-pill); padding: 7px 14px; font-size: 13px; font-weight: 600; }
.stats { display: grid; gap: 2px; }
.stat { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.stat:last-child { border-bottom: 0; }
.stat dt { font-size: 14px; color: var(--ink-3); }
.stat dd { margin: 0; font-family: var(--font-mono); font-size: 17px; font-weight: 600; color: var(--ink-1); font-variant-numeric: tabular-nums; text-align: right; }

/* ── Legal / prose pages ──────────────────────────────── */
.prose-wrap > .overline { margin: 0 0 18px; color: var(--navy-800); opacity: .8; font-size: 12px; letter-spacing: .14em; }
body:has(.prose-wrap) .site-header .wrap, body:has(.prose-wrap) .site-footer .wrap { max-width: 868px; }
.page-hero { background: var(--brand-gradient); padding: 56px 0; }
.page-hero h1 { font-size: clamp(32px, 5vw, 44px); letter-spacing: -.02em; }
.page-hero .overline { color: var(--navy-800); opacity: .78; }
.page-hero p { margin-top: 12px; color: var(--ink-1); max-width: 52ch; }
.prose-wrap { max-width: 868px; padding: 56px 24px 88px; }
.prose { background: var(--surface-1); border-radius: var(--r-lg); box-shadow: var(--sh-2); padding: 48px; max-width: 820px; }
.prose > *:first-child { margin-top: 0; }
.prose h1 { font-size: clamp(28px, 4vw, 34px); letter-spacing: -.02em; margin: 0 0 20px; }
.prose h2 { font-size: 22px; letter-spacing: -.015em; margin: 40px 0 12px; }
.prose h3 { font-size: 18px; font-weight: 700; margin: 28px 0 10px; }
.prose h4, .prose h5, .prose h6 { font-size: 16px; font-weight: 700; color: var(--ink-1); margin: 22px 0 8px; }
.prose p, .prose li { font-size: 16px; color: var(--ink-2); }
.prose p { margin: 0 0 14px; }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose li::marker { color: var(--ink-4); }
.prose strong { font-weight: 700; color: var(--ink-1); }
.prose code { font-family: var(--font-mono); font-size: 14px; background: var(--surface-2); padding: 2px 6px; border-radius: 6px; }
.prose hr { border: 0; border-top: 1px solid var(--border); margin: 32px 0; }
.prose blockquote { margin: 0 0 18px; padding: 4px 0 4px 18px; border-left: 3px solid var(--ink-5); color: var(--ink-3); }
.prose table { width: 100%; border-collapse: collapse; margin: 0 0 20px; font-size: 15px; }
.prose th, .prose td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
.prose th { font-weight: 700; color: var(--ink-1); }
.prose .placeholder { color: var(--ink-4); font-size: 15px; }

.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.steps li { counter-increment: step; position: relative; background: var(--surface-2); border-radius: var(--r-md); padding: 18px 20px 18px 60px; font-size: 16px; color: var(--ink-2); }
.steps li::before {
  content: counter(step); position: absolute; left: 18px; top: 16px;
  width: 28px; height: 28px; border-radius: var(--r-pill);
  background: var(--navy-800); color: #fff;
  font-family: var(--font-mono); font-size: 13px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.callout { background: var(--surface-2); border-radius: var(--r-md); padding: 20px 22px; margin: 0 0 18px; }
.callout p { margin: 0; font-size: 15px; color: var(--ink-3); }
.mailto-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.btn {
  display: inline-flex; align-items: center; min-height: 48px; padding: 0 22px;
  background: var(--navy-800); color: #fff; border-radius: var(--r-md);
  box-shadow: var(--sh-2); text-decoration: none; font-weight: 700; font-size: 15px;
  transition: transform 80ms var(--ease), background 150ms var(--ease);
}
.btn:hover { background: var(--navy-700); color: #fff; }
.btn:active { transform: translateY(1px); }

/* ── Footer ───────────────────────────────────────────── */
.site-footer { background: var(--navy-800); color: rgba(255,255,255,.72); padding: 48px 0 40px; font-size: 14px; }
.site-footer .wrap { display: grid; gap: 28px; }
.footer-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.footer-brand { display: flex; align-items: center; gap: 12px; color: #fff; font-weight: 700; font-size: 16px; }
.footer-brand img { width: 32px; height: 32px; border-radius: 9px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.site-footer a { color: #fff; text-decoration: none; font-weight: 600; }
.footer-brand:hover { text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-meta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; border-top: 1px solid rgba(255,255,255,.14); padding-top: 24px; }
.footer-meta p { margin: 0; }
.footer-owner { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.site-footer :focus-visible { outline-color: #fff; }

/* ── Hero phone mockups (map + route details, styled after the app) ── */
.phones { position: relative; width: 100%; max-width: 460px; height: 600px; justify-self: end; }
.phone { position: absolute; border-radius: 46px; background: #0B1A24; padding: 6px; box-shadow: 0 34px 64px rgba(0,42,65,.32); }
.phone--back { width: 226px; height: 489px; left: -12px; top: 56px; transform: rotate(-8deg); }
.phone--front { width: 252px; height: 545px; right: 8px; top: 8px; transform: rotate(4deg); }
.phone-screen { position: relative; width: 100%; height: 100%; border-radius: 40px; overflow: hidden; background: #EAF2F5; -webkit-text-size-adjust: none; text-size-adjust: none; }
.phone-cam { position: absolute; top: 9px; left: 50%; transform: translateX(-50%); width: 8px; height: 8px; border-radius: var(--r-pill); background: #0B1A24; z-index: 6; }
.phone-home { position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%); width: 74px; height: 3px; border-radius: var(--r-pill); background: rgba(0,42,65,.35); z-index: 6; }

.m-map { position: absolute; inset: 0; }
.m-map svg { display: block; width: 100%; height: 100%; }

.m-top { position: absolute; top: 26px; left: 9px; right: 9px; display: flex; align-items: center; gap: 6px; z-index: 4; }
.m-round { width: 28px; height: 28px; flex: none; border-radius: var(--r-pill); background: #fff; box-shadow: var(--sh-2); display: grid; place-items: center; color: var(--ink-1); }
.m-title { flex: 1; min-width: 0; display: flex; align-items: center; gap: 6px; background: #fff; border-radius: 12px; box-shadow: var(--sh-2); padding: 6px 9px; }
.m-title div { flex: 1; min-width: 0; }
.m-title b { display: block; font-size: 11px; font-weight: 800; color: var(--ink-1); letter-spacing: -.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.m-title small { display: block; font-size: 8px; font-weight: 600; color: var(--ink-4); }
.m-star { display: flex; align-items: center; gap: 3px; flex: none; background: #fff; border-radius: 11px; box-shadow: var(--sh-2); padding: 7px 9px; font-size: 11px; font-weight: 800; color: var(--ink-1); }
.m-top svg { width: 13px; height: 13px; }
.m-star svg { width: 11px; height: 11px; color: var(--warning); }

.pin { position: absolute; transform: translate(-50%, -100%); z-index: 3; }
.pin i { position: relative; display: flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: var(--r-pill); background: var(--pink); border: 2.5px solid #fff; color: #fff; font-size: 11px; font-weight: 800; font-style: normal; box-shadow: 0 3px 8px rgba(0,42,65,.26); }
.pin i::after { content: ''; position: absolute; left: 50%; bottom: -7px; transform: translateX(-50%); border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 8px solid #fff; }
.pin--lg i { width: 34px; height: 34px; font-size: 13px; box-shadow: 0 0 0 6px rgba(233,21,97,.16), 0 8px 16px rgba(233,21,97,.36); }
.pin--dark i { background: var(--navy-800); }


.m-sheet { position: absolute; left: 8px; right: 8px; bottom: 10px; background: #fff; border-radius: 20px; box-shadow: var(--sh-pop); padding: 13px 13px 14px; z-index: 5; }
.m-sheet .ov { font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--pink); }
.m-sheet b { display: block; font-size: 15px; font-weight: 800; color: var(--ink-1); letter-spacing: -.02em; margin: 4px 0 11px; }
.m-actions { display: flex; gap: 6px; }
.m-answer { flex: 1; height: 32px; border-radius: 10px; background: var(--navy-800); color: #fff; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 6px; }
.m-nav { width: 32px; height: 32px; flex: none; border-radius: 10px; background: var(--navy-800); color: #fff; display: grid; place-items: center; }
.m-answer svg, .m-nav svg { width: 12px; height: 12px; }

.r-hero { position: absolute; top: 0; left: 0; right: 0; height: 172px; background: linear-gradient(135deg, #F6B25E 0%, #E3705A 42%, #1F6E8C 100%); }
.r-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,42,65,0) 55%, rgba(0,42,65,.22) 100%); }
.r-chip { position: absolute; top: 14px; right: 12px; z-index: 2; background: #DEF7EA; color: #0E7A4A; border-radius: 10px; padding: 5px 9px; font-size: 9px; font-weight: 800; letter-spacing: .04em; }
.r-back { position: absolute; top: 14px; left: 12px; z-index: 2; width: 26px; height: 26px; border-radius: 9px; background: rgba(255,255,255,.92); display: grid; place-items: center; color: var(--ink-1); }
.r-back svg { width: 12px; height: 12px; }
.r-sheet { position: absolute; left: 0; right: 0; top: 156px; bottom: 0; overflow: hidden; background: var(--surface-2); border-radius: 22px 22px 0 0; padding: 15px 12px 58px; }
.r-sheet h4 { margin: 0; font-size: 16px; font-weight: 800; letter-spacing: -.02em; color: var(--ink-1); }
.r-loc { display: flex; align-items: center; gap: 5px; height: 13px; margin: 5px 0 12px; font-family: var(--font-mono); font-size: 8px; letter-spacing: -.02em; white-space: nowrap; color: var(--ink-3); }
.r-loc svg { width: 10px; height: 10px; color: var(--pink); flex: none; }
.r-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.r-stat { display: flex; align-items: center; gap: 7px; background: #fff; border-radius: 12px; padding: 8px; box-shadow: var(--sh-1); }
.r-ico { width: 20px; height: 20px; flex: none; border-radius: 7px; background: #D9F5F5; display: grid; place-items: center; color: #0F9FA1; }
.r-ico svg { width: 11px; height: 11px; }
.r-stat b { display: block; font-size: 11px; font-weight: 800; color: var(--ink-1); line-height: 1.2; }
.r-stat small { display: block; font-size: 8px; color: var(--ink-4); }
.r-about { height: 48px; margin: 13px 0 0; font-size: 9px; line-height: 1.6; color: var(--ink-3); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.r-about strong { display: block; font-size: 10px; color: var(--ink-1); margin-bottom: 3px; }
.r-cta { position: absolute; left: 12px; right: 12px; bottom: 14px; height: 34px; border-radius: 12px; background: var(--navy-800); color: #fff; display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 11px; font-weight: 700; }
.r-cta svg { width: 12px; height: 12px; }

/* ── Variant A: full-bleed gradient page ──────────────── */
.theme-gradient { background: var(--brand-gradient); background-attachment: fixed; }
.theme-gradient .site-header { background: rgba(255,255,255,.72); box-shadow: none; }
.site-header--bare { background: none; box-shadow: none; backdrop-filter: none; }
.site-header--bare .wrap { justify-content: flex-end; min-height: 0; padding-top: 20px; }
.theme-gradient .site-header--bare { background: none; }
.theme-gradient .hero { background: none; padding: 88px 0 64px; }
.theme-gradient .hero h1 { font-size: clamp(48px, 8vw, 84px); }
.theme-gradient .section { padding: 0 0 64px; }
.theme-gradient .prose-wrap { padding-top: 24px; }
.theme-gradient .section-head h2 { color: var(--navy-800); }

/* ── Variant B: tall gradient hero + gradient CTA band ── */
.hero--tall { padding: 96px 0 104px; }
.hero--tall h1 { font-size: clamp(46px, 7.5vw, 76px); }
.hero--tall .wrap { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 40px; }
.hero--tall .stores { justify-content: center; }
.hero--tall p { max-width: 46ch; }
.hero--tall .hero-art { justify-self: center; max-width: 460px; }
.cta-band { background: var(--brand-gradient); padding: 72px 0; text-align: center; }
.cta-band h2 { font-size: clamp(28px, 4vw, 40px); letter-spacing: -.02em; }
.cta-band p { margin: 14px auto 0; max-width: 44ch; color: var(--ink-1); font-size: 17px; }
.cta-band .stores { justify-content: center; }

@media (max-width: 1000px) {
  .benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .phones { justify-self: center; max-width: 380px; height: 500px; }
  .phone--front { width: 214px; height: 463px; right: 12px; }
  .phone--back { width: 192px; height: 415px; top: 46px; }
  .hero { padding: 56px 0 60px; }
  .hero .wrap { grid-template-columns: 1fr; gap: 36px; }
  .hero-art { justify-self: start; max-width: 340px; }
  .route-body { grid-template-columns: 1fr; gap: 28px; padding: 26px; }
  .prose { padding: 30px 24px; }
  .section { padding: 56px 0; }
}
@media (max-width: 560px) {
  .site-header .wrap { min-height: 64px; padding: 12px 20px; }
  .brand span { font-size: 17px; }
  .wrap { padding: 0 20px; }
  .prose-wrap { padding: 40px 20px 64px; }
  .phones { max-width: 320px; height: 440px; }
  .phone--front { width: 186px; height: 402px; right: 0; }
  .phone--back { width: 166px; height: 359px; top: 40px; }
  .store { flex: 1 1 100%; }
  .benefits { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0ms !important; }
}
