/*
Theme Name: SUP Surf Moscow
Theme URI: https://supsurfmoscow.ru
Author: SUP Surf Moscow
Description: Современная тема для проката SUP-бордов и каяков в Москве. Адаптивный дизайн с анимациями в водной тематике.
Version: 1.0.0
Requires at least: 5.9
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: supsurf
*/

/* ============================================================
   0. RESET & VARIABLES
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body {
	margin: 0;
	background: var(--fog);
	color: var(--ink);
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
	font-family: 'Montserrat', sans-serif;
	margin: 0 0 .5em;
	line-height: 1.2;
	color: var(--navy-900);
	font-weight: 700;
}
p { margin: 0 0 1em; }
details summary { cursor: pointer; }
details summary::-webkit-details-marker { display: none; }

:root {
	--navy-900: #062430;
	--navy-800: #0a3140;
	--teal-700: #0b5568;
	--teal-600: #0e7086;
	--teal-500: #14899e;
	--cyan-400: #35c2d6;
	--cyan-300: #8ee8ef;
	--accent: #ff7a48;
	--accent-dark: #e85f2c;
	--sand: #fff3e6;
	--sand-deep: #ffe3c4;
	--fog: #f3f9fb;
	--white: #ffffff;
	--ink: #163542;
	--text-soft: #4d6b76;
	--text-on-dark: #d8ecf0;
	--shadow-soft: 0 20px 45px -20px rgba(6, 36, 48, .35);
	--shadow-card: 0 14px 34px -18px rgba(6, 36, 48, .28);
	--radius-lg: 26px;
	--radius-md: 18px;
	--container: 1180px;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ============================================================
   1. BACKGROUND TEXTURE
   ============================================================ */
.water-noise {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	opacity: .5;
	background-image:
		radial-gradient(circle at 15% 20%, rgba(53,194,214,.06), transparent 40%),
		radial-gradient(circle at 85% 60%, rgba(255,122,72,.05), transparent 45%);
}

/* ============================================================
   2. BUTTONS
   ============================================================ */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5em;
	padding: .95em 1.9em;
	border-radius: 100px;
	font-weight: 700;
	font-size: .95rem;
	letter-spacing: .02em;
	border: 2px solid transparent;
	transition: transform .35s cubic-bezier(.2,.9,.3,1.3), box-shadow .35s ease, background .35s ease, color .35s ease;
	white-space: nowrap;
}
.btn--lg { padding: 1.1em 2.3em; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--accent {
	background: linear-gradient(135deg, var(--accent), var(--accent-dark));
	color: var(--white);
	box-shadow: 0 14px 30px -12px rgba(232,95,44,.55);
}
.btn--accent:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 20px 36px -14px rgba(232,95,44,.65); }
.btn--ghost {
	border-color: rgba(255,255,255,.7);
	color: var(--white);
	background: rgba(255,255,255,.06);
	backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255,255,255,.18); transform: translateY(-3px); }
.btn--ghost-light {
	border-color: transparent;
	color: var(--white);
	padding: .6em 1em;
	font-size: .9rem;
}
.btn--ghost-light:hover { color: var(--cyan-300); }
.btn--dark {
	background: var(--navy-900);
	color: var(--white);
	box-shadow: var(--shadow-card);
}
.btn--dark:hover { transform: translateY(-3px); background: var(--teal-700); }

/* ============================================================
   3. HEADER / NAV
   ============================================================ */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 200;
	padding: 18px 0;
	transition: background .4s ease, padding .4s ease, box-shadow .4s ease;
}
.site-header.is-scrolled {
	background: rgba(6,36,48,.82);
	backdrop-filter: blur(14px);
	padding: 10px 0;
	box-shadow: 0 10px 30px -18px rgba(0,0,0,.5);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.site-logo { display: flex; align-items: center; gap: 12px; max-height: 44px; }
.site-logo__mark { border-radius: 10px; }
/* the_custom_logo() (Customizer) and any theme-mod logo aren't under our
   markup control, so clamp them defensively — an uploaded logo can be
   arbitrarily large and would otherwise inflate the fixed header's height. */
.site-logo img,
.site-logo .custom-logo,
.site-header .custom-logo-link {
	max-height: 44px;
	width: auto;
	height: auto;
	display: block;
}
.site-logo--footer { max-height: none; }
.site-logo--footer img { max-height: 44px; }
.site-logo__text {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	letter-spacing: .03em;
	color: var(--white);
	font-size: 1.05rem;
	line-height: 1.1;
}
.site-logo__text b { display: block; font-size: .68rem; font-weight: 600; color: var(--cyan-300); letter-spacing: .18em; }

.main-nav__list { display: flex; gap: 30px; }
.main-nav__list a {
	color: var(--white);
	font-weight: 600;
	font-size: .92rem;
	letter-spacing: .01em;
	position: relative;
	padding-bottom: 4px;
}
.main-nav__list a::after {
	content: '';
	position: absolute; left: 0; right: 100%; bottom: 0;
	height: 2px; background: var(--cyan-300);
	transition: right .3s ease;
}
.main-nav__list a:hover::after { right: 0; }

.site-header__actions { display: flex; align-items: center; gap: 14px; }
.header-phone { display: none; }

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px; height: 40px;
	background: rgba(255,255,255,.12);
	border: none;
	border-radius: 10px;
	cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 0 auto; background: #fff; transition: transform .3s ease, opacity .3s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
	position: fixed; inset: 0; z-index: 150;
	background: rgba(4,20,26,.55);
	backdrop-filter: blur(2px);
	opacity: 0; visibility: hidden;
	transition: opacity .35s ease, visibility .35s ease;
}
.nav-overlay.is-active { opacity: 1; visibility: visible; }

/* ============================================================
   4. HERO
   ============================================================ */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	isolation: isolate;
}
.hero::before {
	content: '';
	position: absolute; inset: -5%;
	background: inherit;
	background-size: cover;
	background-position: center;
	animation: heroZoom 28s ease-in-out infinite alternate;
	z-index: -2;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.12); } }

.hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(190deg, rgba(4,20,28,.35) 0%, rgba(5,34,45,.72) 55%, rgba(6,24,32,.92) 100%);
	z-index: -1;
}
.hero__inner { position: relative; padding: 160px 0 120px; color: var(--white); }
.eyebrow {
	text-transform: uppercase;
	letter-spacing: .22em;
	font-size: .78rem;
	font-weight: 700;
	color: var(--cyan-300);
	margin-bottom: 18px;
}
.hero__title {
	font-size: clamp(2.4rem, 5.6vw, 4.4rem);
	color: var(--white);
	max-width: 15ch;
	margin-bottom: 24px;
}
.hero__subtitle {
	font-size: 1.15rem;
	max-width: 46ch;
	color: rgba(255,255,255,.88);
	margin-bottom: 38px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 60px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 40px; }
.hero__stats li { display: flex; flex-direction: column; gap: 2px; }
.hero__stats strong { font-family: 'Montserrat', sans-serif; font-size: 1.3rem; color: var(--white); }
.hero__stats span { font-size: .85rem; color: rgba(255,255,255,.7); }

.floating-bits { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.floating-bits span {
	position: absolute;
	bottom: -60px;
	width: var(--s, 14px); height: var(--s, 14px);
	background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.85), rgba(255,255,255,0) 70%);
	border-radius: 50%;
	animation: floatUp var(--d, 14s) linear infinite;
	animation-delay: var(--delay, 0s);
	left: var(--x, 10%);
	opacity: .6;
}
.floating-bits span:nth-child(1) { --x:8%;  --s:10px; --d:16s; --delay:0s; }
.floating-bits span:nth-child(2) { --x:22%; --s:18px; --d:22s; --delay:3s; }
.floating-bits span:nth-child(3) { --x:41%; --s:8px;  --d:13s; --delay:6s; }
.floating-bits span:nth-child(4) { --x:63%; --s:16px; --d:19s; --delay:1s; }
.floating-bits span:nth-child(5) { --x:78%; --s:11px; --d:15s; --delay:8s; }
.floating-bits span:nth-child(6) { --x:90%; --s:20px; --d:24s; --delay:4s; }
@keyframes floatUp {
	0% { transform: translateY(0) translateX(0); opacity: 0; }
	10% { opacity: .7; }
	90% { opacity: .4; }
	100% { transform: translateY(-115vh) translateX(30px); opacity: 0; }
}

.scroll-cue {
	position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
	width: 30px; height: 48px; border: 2px solid rgba(255,255,255,.7); border-radius: 20px;
	z-index: 2;
}
.scroll-cue span {
	position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
	width: 5px; height: 9px; background: var(--white); border-radius: 3px;
	animation: cueDrop 1.8s ease-in-out infinite;
}
@keyframes cueDrop { 0%,100% { opacity: 1; top: 8px; } 50% { opacity: 0; top: 22px; } }

.wave-divider { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; z-index: 1; }
.wave-divider svg { width: 100%; height: 90px; display: block; }
.wave-divider--light svg path { fill: var(--fog); }
.wave-divider--dark svg path { fill: var(--navy-900); }
.wave-divider--deep svg path { fill: var(--navy-900); }

/* ============================================================
   5. QUICK NAV STRIP
   ============================================================ */
.quicknav { background: var(--white); padding: 46px 0; position: relative; z-index: 2; box-shadow: var(--shadow-card); }
.quicknav__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.quicknav__item {
	display: flex; flex-direction: column; align-items: center; gap: 10px;
	text-align: center; font-weight: 700; font-size: .88rem; color: var(--navy-800);
	padding: 18px 10px; border-radius: var(--radius-md);
	transition: background .3s ease, transform .3s ease;
}
.quicknav__item:hover { background: var(--fog); transform: translateY(-4px); }
.quicknav__icon { font-size: 1.8rem; }

/* ============================================================
   6. SECTIONS (generic)
   ============================================================ */
.section { position: relative; padding: 110px 0; z-index: 1; }
.section--light { background: var(--fog); }
.section--sand { background: linear-gradient(180deg, var(--sand), var(--sand-deep)); }
.section--deep {
	background: radial-gradient(120% 140% at 10% 0%, var(--teal-700) 0%, var(--navy-800) 45%, var(--navy-900) 100%);
	color: var(--text-on-dark);
}
.on-dark { color: var(--white) !important; }

.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.section-lead { color: var(--text-soft); font-size: 1.08rem; }
.section-cta { text-align: center; margin-top: 48px; }
.fine-print { font-size: .88rem; color: var(--text-soft); text-align: center; max-width: 620px; margin: 0 auto; }

/* ============================================================
   7. RENTAL
   ============================================================ */
.rental-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; margin-bottom: 48px; }
.rental-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.price-cards { display: flex; flex-direction: column; gap: 20px; }
.price-card {
	background: var(--white);
	border-radius: var(--radius-md);
	padding: 28px 30px;
	box-shadow: var(--shadow-card);
	position: relative;
	transition: transform .35s ease, box-shadow .35s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.price-card--accent { background: linear-gradient(135deg, var(--teal-600), var(--teal-700)); color: var(--white); }
.price-card--accent h3 { color: var(--white); }
.price-card__badge {
	position: absolute; top: -12px; right: 24px;
	background: var(--accent); color: #fff; font-size: .72rem; font-weight: 700;
	padding: 5px 14px; border-radius: 100px; letter-spacing: .04em;
}
.price-card__row { display: flex; justify-content: space-between; align-items: baseline; padding: 8px 0; border-top: 1px solid rgba(0,0,0,.06); }
.price-card--accent .price-card__row { border-top-color: rgba(255,255,255,.18); }
.price-card__row:first-of-type { border-top: none; }
.price-card__row span { color: var(--text-soft); font-size: .92rem; }
.price-card--accent .price-card__row span { color: rgba(255,255,255,.8); }
.price-card__row strong { font-family: 'Montserrat', sans-serif; font-size: 1.15rem; }
.price-card__row strong i { font-style: normal; font-size: .7rem; font-weight: 500; opacity: .7; }

.tick-list {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
	max-width: 900px; margin: 0 auto 8px;
}
.tick-list li {
	background: var(--white);
	border-radius: 100px;
	padding: 12px 20px;
	text-align: center;
	font-size: .88rem;
	font-weight: 600;
	color: var(--navy-800);
	box-shadow: var(--shadow-card);
}
.section--sand .tick-list { grid-template-columns: 1fr; max-width: 420px; margin: 24px 0; }
.section--sand .tick-list li { text-align: left; background: rgba(255,255,255,.6); }

/* ============================================================
   8. GROUP ROUTES
   ============================================================ */
.route-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-bottom: 40px; }
.route-card {
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: var(--radius-lg);
	overflow: hidden;
	backdrop-filter: blur(6px);
	transition: transform .4s cubic-bezier(.2,.9,.3,1.2), box-shadow .4s ease, border-color .4s ease;
}
.route-card:hover { transform: translateY(-8px); border-color: var(--cyan-300); box-shadow: 0 24px 50px -20px rgba(0,0,0,.5); }
.route-card__media {
	height: 190px;
	background-size: cover;
	background-position: center;
	position: relative;
	transition: transform .6s ease;
}
.route-card:hover .route-card__media { transform: scale(1.06); }
.route-card__tag {
	position: absolute; top: 14px; left: 14px;
	background: rgba(6,36,48,.75);
	color: var(--cyan-300);
	font-size: .72rem; font-weight: 700; letter-spacing: .03em;
	padding: 6px 14px; border-radius: 100px;
	backdrop-filter: blur(4px);
}
.route-card__tag--limited { background: var(--accent); color: #fff; }
.route-card__body { padding: 26px 24px 28px; }
.route-card__body h3 { color: var(--white); font-size: 1.2rem; }
.route-card__meta { margin-bottom: 16px; }
.route-card__meta li { font-size: .86rem; color: var(--text-on-dark); opacity: .85; padding: 2px 0; }
.route-card__price { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--cyan-300); margin-bottom: 18px; }

/* ============================================================
   9. TRAINING
   ============================================================ */
.training-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 54px; align-items: center; }
.training-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.training-prices { display: flex; flex-direction: column; gap: 14px; margin: 30px 0 20px; }
.training-price {
	display: flex; justify-content: space-between; align-items: center;
	background: var(--white); padding: 18px 24px; border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
}
.training-price span { font-weight: 600; color: var(--navy-800); }
.training-price strong { font-family: 'Montserrat', sans-serif; font-size: 1.2rem; color: var(--accent-dark); }
.training-price strong i { font-style: normal; font-size: .7rem; opacity: .6; }
.training-price--muted { background: transparent; box-shadow: none; border: 1.5px dashed rgba(11,85,104,.25); }

/* ============================================================
   10. CORPORATE
   ============================================================ */
.corporate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.corporate-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.corporate-content .tick-list { display: flex; flex-direction: column; gap: 12px; margin: 26px 0 32px; max-width: none; }

/* ============================================================
   11. ACCORDION (rules)
   ============================================================ */
.accordion { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.accordion__item {
	background: var(--white); border-radius: var(--radius-md);
	box-shadow: var(--shadow-card); overflow: hidden;
}
.accordion__item summary {
	list-style: none;
	display: flex; align-items: center; justify-content: space-between;
	padding: 20px 26px; font-weight: 700; color: var(--navy-800);
	font-family: 'Montserrat', sans-serif; font-size: 1rem;
}
.accordion__item summary::after {
	content: '+';
	font-size: 1.4rem; color: var(--accent); transition: transform .3s ease;
}
.accordion__item[open] summary::after { transform: rotate(45deg); }
.accordion__body { padding: 0 26px 24px; color: var(--text-soft); }
.accordion__body ul { display: flex; flex-direction: column; gap: 8px; }
.accordion__body li::before { content: '— '; color: var(--accent); font-weight: 700; }

/* ============================================================
   12. DIRECTIONS
   ============================================================ */
.directions-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 54px; align-items: center; }
.directions-media img { border-radius: var(--radius-lg); box-shadow: 0 30px 60px -20px rgba(0,0,0,.6); }
.info-list { display: flex; flex-direction: column; gap: 20px; margin: 30px 0 36px; }
.info-list__item { display: flex; gap: 18px; align-items: flex-start; }
.info-list__icon {
	flex: none; width: 46px; height: 46px; border-radius: 14px;
	background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
	display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.info-list__item strong { display: block; color: var(--white); margin-bottom: 4px; font-family: 'Montserrat', sans-serif; }
.info-list__item p { margin: 0; color: var(--text-on-dark); opacity: .85; font-size: .95rem; }

/* ============================================================
   13. GIFT CERTIFICATES
   ============================================================ */
.gift-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-bottom: 8px; }
.gift-card {
	background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
	box-shadow: var(--shadow-card); transition: transform .35s ease, box-shadow .35s ease;
}
.gift-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.gift-card img { height: 190px; object-fit: cover; }
.gift-card__body { padding: 24px 26px 28px; }
.gift-card--accent { outline: 2px solid var(--accent); }
.gift-card__price { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--accent-dark); margin: 8px 0; }

/* ============================================================
   14. FOOTER
   ============================================================ */
.site-footer { position: relative; background: var(--navy-900); color: var(--text-on-dark); padding: 90px 0 30px; }
.footer-wave { position: absolute; top: -1px; left: 0; right: 0; line-height: 0; transform: translateY(-100%); }
.footer-wave svg { width: 100%; height: 90px; }
.footer-wave path { fill: var(--navy-900); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-col h4 { color: var(--white); font-size: .95rem; letter-spacing: .04em; margin-bottom: 18px; }
.site-logo--footer { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.site-logo--footer .site-logo__text { color: var(--white); }
.footer-col--brand p { max-width: 32ch; opacity: .8; }
.social-link { color: var(--cyan-300); font-weight: 700; }
.footer-list li { margin-bottom: 10px; opacity: .85; }
.footer-list a:hover { color: var(--cyan-300); }
.footer-bottom { padding-top: 26px; font-size: .85rem; opacity: .6; text-align: center; }

.back-to-top {
	position: fixed; right: 26px; bottom: 26px; z-index: 120;
	width: 48px; height: 48px; border-radius: 50%;
	background: var(--accent); color: #fff;
	display: flex; align-items: center; justify-content: center;
	font-size: 1.2rem; box-shadow: 0 14px 30px -10px rgba(232,95,44,.6);
	opacity: 0; transform: translateY(20px); pointer-events: none;
	transition: opacity .3s ease, transform .3s ease;
}
.back-to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* ============================================================
   15. GENERIC FALLBACK PAGES
   ============================================================ */
.generic-content { padding-top: 160px; min-height: 50vh; }
.generic-page-title { font-size: 2.2rem; margin-bottom: 30px; }
.generic-post { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(0,0,0,.08); }
.generic-post__meta { color: var(--text-soft); font-size: .85rem; margin-bottom: 10px; }

/* ============================================================
   16. SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.3,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   17. RESPONSIVE
   ============================================================ */
.rental-grid, .training-grid, .corporate-grid, .directions-grid,
.route-grid, .gift-grid, .price-cards {
	min-width: 0;
}
.rental-grid > *, .training-grid > *, .corporate-grid > *, .directions-grid > *,
.route-grid > *, .gift-grid > *, .price-cards > * {
	min-width: 0;
}

@media (max-width: 1024px) {
	.rental-grid, .training-grid, .corporate-grid, .directions-grid { grid-template-columns: 1fr; }
	.rental-media, .training-media, .corporate-media, .directions-media { order: -1; }
	.route-grid { grid-template-columns: repeat(2, 1fr); }
	.gift-grid { grid-template-columns: repeat(2, 1fr); }
	.quicknav__grid { grid-template-columns: repeat(3, 1fr); }
	.tick-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
	.main-nav {
		position: fixed; top: 0; right: 0; bottom: 0;
		width: 300px; max-width: 82vw;
		background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
		padding: 110px 30px 30px;
		transform: translateX(100%);
		transition: transform .4s cubic-bezier(.2,.8,.3,1);
		z-index: 160;
	}
	.main-nav.is-active { transform: translateX(0); }
	.main-nav__list { flex-direction: column; gap: 26px; }
	.header-cta { display: none; }
	.nav-toggle { display: flex; }
	.quicknav__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
	body { font-size: 16px; }
	.section { padding: 76px 0; }
	.hero__inner { padding: 130px 0 100px; }
	.hero__actions { flex-direction: column; align-items: stretch; }
	.hero__stats { gap: 24px; }
	.route-grid, .gift-grid { grid-template-columns: 1fr; }
	.tick-list { grid-template-columns: 1fr; }
	.quicknav__grid { grid-template-columns: repeat(2, 1fr); }
	.footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
	.footer-col--brand { grid-column: 1 / -1; }
	.back-to-top { right: 16px; bottom: 16px; width: 42px; height: 42px; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.hero::before, .floating-bits span, .scroll-cue span { animation: none; }
	.reveal { transition: none; opacity: 1; transform: none; }
}
