/* Fonts loaded via <link> in HTML for non-blocking rendering */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: #1a1a1a; background: #fff; overflow-x: hidden; }

:root {
  --green: #0D2B4E;
  --green2: #1A3A5C;
  --gold: #F0A500;
  --gold2: #C88A00;
  --gold3: #FFB822;
  --white: #ffffff;
  --gray: #666666;
  --light: #F5F5F5;
}

/* Custom scrollbar — desktop (mouse) only. On mobile it would take layout space and make page narrower than fixed header */
@media (pointer: fine) {
  ::-webkit-scrollbar { width: 7px; }
  ::-webkit-scrollbar-track { background: #f1f1f1; }
  ::-webkit-scrollbar-thumb { background: var(--green); border-radius: 4px; }
}

header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--green);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  transition: background .3s;
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.logo { display: flex; align-items: center; gap: 4px; text-decoration: none; touch-action: manipulation; user-select: none; -webkit-user-select: none; }
.logo * { touch-action: manipulation; user-select: none; -webkit-user-select: none; }
header { -webkit-tap-highlight-color: transparent; }
header * { -webkit-tap-highlight-color: transparent; }
.logo-wave { color: var(--gold); font-size: 2rem; font-weight: 900; line-height: 1; }
.logo-text { color: #fff; font-size: 1.2rem; font-weight: 800; letter-spacing: -.5px; }
.logo-by { color: var(--gold); }

nav { display: flex; gap: 24px; align-items: center; }
nav a { color: rgba(255,255,255,.8); text-decoration: none; font-size: .88rem; font-weight: 500; transition: color .2s; }
nav a:hover { color: var(--gold); }

.header-right { display: flex; align-items: center; gap: 12px; }
.header-phone { color: rgba(255,255,255,.9); text-decoration: none; font-size: .85rem; font-weight: 500; transition: color .2s; display: flex; align-items: center; gap: 6px; }
.header-phone:hover { color: var(--gold); }

.btn-gold { background: var(--gold); color: var(--green); font-weight: 800; padding: 10px 22px; border-radius: 50px; text-decoration: none; font-size: .88rem; transition: background .2s, transform .2s; display: inline-block; border: none; cursor: pointer; }
.btn-gold:hover { background: var(--gold2); transform: scale(1.05); }
.btn-outline { border: 2px solid rgba(255,255,255,.35); color: #fff; font-weight: 700; padding: 10px 22px; border-radius: 50px; text-decoration: none; font-size: .88rem; transition: all .2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-green { background: var(--green); color: #fff; font-weight: 700; padding: 10px 22px; border-radius: 50px; text-decoration: none; font-size: .88rem; transition: background .2s; display: inline-block; border: none; cursor: pointer; }
.btn-green:hover { background: var(--green2); }

.burger { display: none; flex-direction: column; justify-content: space-between; width: 44px; height: 44px; padding: 12px 9px; background: none; border: none; border-radius: 8px; cursor: pointer; box-sizing: border-box; }
.burger span { display: block; height: 2.5px; background: #fff; border-radius: 3px; transition: all .3s; }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(6px,6px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); }

.mobile-nav { display: none; background: var(--green); border-top: 1px solid rgba(255,255,255,.1); padding: 8px 24px 16px; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; color: rgba(255,255,255,.8); text-decoration: none; padding: 12px 0; font-size: .95rem; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.08); transition: color .2s; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav a:last-child { border-bottom: none; }

.hero {
  background: linear-gradient(135deg, var(--green) 0%, #1A3A5C 50%, var(--green) 100%);
  padding: 120px 24px 80px;
  position: relative; overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
}
.hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(240,165,0,.18); border: 1px solid rgba(240,165,0,.3); border-radius: 50px; padding: 6px 16px; margin-bottom: 24px; }
.hero-badge-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.hero-badge span { color: var(--gold); font-size: .82rem; font-weight: 600; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 20px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub { color: rgba(255,255,255,.7); font-size: 1.1rem; line-height: 1.6; margin-bottom: 36px; }
.hero-sub strong { color: #fff; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat-val { color: var(--gold); font-size: 1.5rem; font-weight: 900; }
.hero-stat-label { color: rgba(255,255,255,.5); font-size: .8rem; }

.hero-card { background: rgba(255,255,255,.08); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.15); border-radius: 24px; padding: 24px; }
.hero-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.hero-card-icon { width: 52px; height: 52px; background: rgba(240,165,0,.2); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
.hero-card-title { color: #fff; font-weight: 700; font-size: 1.05rem; }
.hero-card-sub { color: rgba(255,255,255,.55); font-size: .82rem; }
.kit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.kit-item { background: rgba(255,255,255,.07); border-radius: 12px; padding: 12px 8px; text-align: center; }
.kit-item-icon { font-size: 1.5rem; margin-bottom: 4px; }
.kit-item-label { color: rgba(255,255,255,.65); font-size: .72rem; }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.price-box { background: rgba(240,165,0,.12); border: 1px solid rgba(240,165,0,.25); border-radius: 14px; padding: 14px 12px; }
.price-box.featured { background: var(--gold); border-color: var(--gold); grid-column: 1/-1; display: flex; justify-content: space-between; align-items: center; }
.price-box-val { color: var(--gold); font-size: 1.8rem; font-weight: 900; }
.price-box.featured .price-box-val, .price-box.featured .price-box-label { color: var(--green); }
.price-box-label { color: rgba(255,255,255,.55); font-size: .75rem; margin-top: 2px; }
.hero-wave { position: absolute; bottom: -2px; left: 0; right: 0; overflow: hidden; line-height: 0; }

section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; color: var(--green); margin-bottom: 12px; }
.section-head p { color: var(--gray); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }

.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 24px; }
.price-card { border: 2px solid #f0f0f0; border-radius: 24px; padding: 32px; background: #fff; transition: all .3s; position: relative; }
.price-card:hover { border-color: rgba(240,165,0,.3); box-shadow: 0 20px 50px rgba(0,0,0,.08); transform: translateY(-4px); }
.price-card.highlight { background: var(--green); border-color: var(--gold); }
.price-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--green); font-size: .75rem; font-weight: 800; padding: 5px 16px; border-radius: 50px; white-space: nowrap; }
.price-period { color: var(--green); font-size: .82rem; font-weight: 600; margin-bottom: 4px; }
.price-name { font-size: 1.15rem; font-weight: 800; color: var(--green); margin-bottom: 16px; }
.price-card.highlight .price-name { color: #fff; }
.price-amount { display: flex; align-items: baseline; gap: 6px; margin-bottom: 24px; }
.price-num { font-size: 3rem; font-weight: 900; color: var(--green); }
.price-card.highlight .price-num { color: var(--gold); }
.price-unit { color: #666; font-size: .85rem; }
.price-card.highlight .price-unit { color: rgba(255,255,255,.85); }
.price-features { list-style: none; margin-bottom: 24px; }
.price-features li { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: #555; padding: 5px 0; }
.price-card.highlight .price-features li { color: rgba(255,255,255,.75); }
.price-features li::before { content: '✓'; color: var(--green2); font-weight: 700; flex-shrink: 0; }
.price-card.highlight .price-features li::before { color: var(--gold); }
.price-cta { display: block; text-align: center; padding: 12px; border-radius: 50px; font-weight: 700; font-size: .9rem; text-decoration: none; transition: all .2s; }
.price-card:not(.highlight) .price-cta { background: var(--green); color: #fff; }
.price-card:not(.highlight) .price-cta:hover { background: var(--green2); }
.price-card.highlight .price-cta { background: var(--gold); color: var(--green); }
.price-card.highlight .price-cta:hover { background: var(--gold3); }

.corp-promo { background: rgba(240,165,0,.1); border: 1px solid rgba(240,165,0,.2); border-radius: 20px; padding: 24px 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.corp-promo-text strong { display: block; color: var(--green); font-size: 1.05rem; font-weight: 800; margin-bottom: 4px; }
.corp-promo-text span { color: var(--gray); font-size: .88rem; }

.kit-bg { background: var(--light); }
.kit-grid-main { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.kit-card { background: #fff; border-radius: 20px; padding: 24px 16px; text-align: center; transition: all .3s; cursor: default; }
.kit-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(13,43,78,.1); }
.kit-icon { width: 64px; height: 64px; background: rgba(13,43,78,.06); border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 14px; }
.kit-name { font-weight: 700; color: var(--green); font-size: .9rem; margin-bottom: 4px; }
.kit-desc { color: #aaa; font-size: .75rem; line-height: 1.4; }
.kit-note { text-align: center; margin-top: 28px; color: var(--gray); font-size: .9rem; }

.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 48px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg, rgba(240,165,0,.15), var(--gold), rgba(240,165,0,.15)); }
.step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.step-circle { position: relative; width: 96px; height: 96px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; margin-bottom: 20px; transition: transform .3s; box-shadow: 0 8px 24px rgba(13,43,78,.25); z-index: 1; }
.step-circle:hover { transform: scale(1.1); }
.step-num { position: absolute; top: -6px; right: -6px; width: 28px; height: 28px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--green); font-size: .7rem; font-weight: 900; }
.step h3 { font-size: 1.05rem; font-weight: 800; color: var(--green); margin-bottom: 8px; }
.step p { color: var(--gray); font-size: .85rem; line-height: 1.6; }
.steps-cta { text-align: center; margin-top: 52px; }

.why-bg { background: var(--green); position: relative; overflow: hidden; }
.why-bg .section-head h2 { color: #fff; }
.why-bg .section-head p { color: rgba(255,255,255,.6); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.why-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 24px; transition: all .3s; }
.why-card:hover { background: rgba(255,255,255,.1); border-color: rgba(240,165,0,.3); transform: scale(1.02); }
.why-icon { width: 48px; height: 48px; background: rgba(240,165,0,.18); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 14px; }
.why-card h3 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { color: rgba(255,255,255,.6); font-size: .83rem; line-height: 1.6; }
.why-wave { position: absolute; bottom: -2px; left: 0; right: 0; overflow: hidden; line-height: 0; }

.audience-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.audience-card { border: 2px solid #f0f0f0; border-radius: 20px; padding: 24px; transition: all .3s; }
.audience-card:hover { border-color: rgba(240,165,0,.25); box-shadow: 0 16px 40px rgba(0,0,0,.08); transform: translateY(-8px); }
.audience-icon { width: 64px; height: 64px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; margin-bottom: 14px; }
.audience-icon.blue { background: rgba(59,130,246,.12); }
.audience-icon.pink { background: rgba(236,72,153,.12); }
.audience-icon.purple { background: rgba(139,92,246,.12); }
.audience-icon.gold { background: rgba(240,165,0,.15); }
.audience-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--green); margin-bottom: 8px; }
.audience-card p { color: var(--gray); font-size: .85rem; line-height: 1.6; }

.lakes-bg { background: var(--light); }
.lakes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.lake-card { border-radius: 24px; overflow: hidden; position: relative; height: 260px; transition: all .3s; }
.lake-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,.18); }
.lake-gradient { position: absolute; inset: 0; }
.lake-content { position: relative; z-index: 1; padding: 28px; height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.lake-emoji { font-size: 2.5rem; margin-bottom: 10px; display: block; }
.lake-content h3 { color: #fff; font-weight: 800; font-size: 1.15rem; margin-bottom: 6px; }
.lake-content p { color: rgba(255,255,255,.7); font-size: .82rem; line-height: 1.5; }
.lake-meta { display: flex; gap: 10px; margin-top: 14px; }
.lake-tag { background: rgba(255,255,255,.12); border-radius: 10px; padding: 6px 12px; text-align: center; }
.lake-tag-val { color: var(--gold); font-weight: 700; font-size: .82rem; }
.lake-tag-label { color: rgba(255,255,255,.45); font-size: .7rem; }

.reviews-head-stars { display: flex; align-items: center; justify-content: center; gap: 4px; margin-bottom: 8px; }
.star { color: var(--gold); font-size: 1.3rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.review-card { border: 1px solid #f0f0f0; border-radius: 20px; padding: 24px; display: flex; flex-direction: column; transition: all .3s; }
.review-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,.07); border-color: rgba(240,165,0,.2); }
.review-stars { display: flex; gap: 2px; margin-bottom: 14px; }
.review-text { color: #555; font-size: .87rem; line-height: 1.65; flex: 1; margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: .82rem; flex-shrink: 0; }
.review-name { font-weight: 600; color: var(--green); font-size: .87rem; }
.review-date { color: #bbb; font-size: .75rem; }

.booking-bg { background: var(--light); }
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.booking-info h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 900; color: var(--green); margin-bottom: 12px; }
.booking-info > p { color: var(--gray); font-size: 1rem; line-height: 1.7; margin-bottom: 28px; }
.booking-perks { list-style: none; margin-bottom: 32px; }
.booking-perks li { display: flex; align-items: center; gap: 12px; padding: 8px 0; color: #333; font-size: .93rem; font-weight: 500; }
.booking-perks li span:first-child { font-size: 1.3rem; }
.booking-contact-box { background: var(--green); border-radius: 20px; padding: 24px; }
.booking-contact-box p { color: rgba(255,255,255,.65); font-size: .82rem; margin-bottom: 10px; }
.booking-contact-box a.phone { display: flex; align-items: center; gap: 10px; color: var(--gold); font-weight: 800; font-size: 1.3rem; text-decoration: none; margin-bottom: 16px; }
.booking-contact-box a.phone:hover { color: var(--gold3); }
.msg-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.msg-btn { display: flex; align-items: center; justify-content: center; gap: 6px; font-weight: 600; font-size: .85rem; padding: 11px; border-radius: 14px; text-decoration: none; transition: opacity .2s; }
.msg-btn:hover { opacity: .85; }
.msg-btn.viber { background: #7360F2; color: #fff; }
.msg-btn.tg { background: #229ED9; color: #fff; }

.form-box { background: #fff; border-radius: 24px; padding: 36px; box-shadow: 0 8px 40px rgba(0,0,0,.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
label { font-size: .83rem; font-weight: 600; color: #444; }
input, select, textarea { width: 100%; padding: 12px 16px; border: 1.5px solid #e5e5e5; border-radius: 12px; font-size: .9rem; font-family: inherit; outline: none; transition: border-color .2s, box-shadow .2s; background: #fff; color: #1a1a1a; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(240,165,0,.12); }
textarea { resize: none; }
.form-submit { width: 100%; background: var(--gold); color: var(--green); border: none; font-weight: 800; font-size: 1.05rem; padding: 16px; border-radius: 14px; cursor: pointer; transition: all .25s; margin-top: 16px; }
.form-submit:hover { background: var(--gold2); transform: scale(1.02); }
.form-note { text-align: center; color: #bbb; font-size: .75rem; margin-top: 10px; }
.form-success { text-align: center; padding: 40px 20px; display: none; }
.form-success.show { display: block; }
.success-icon { width: 64px; height: 64px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.8rem; }
.form-success h3 { font-size: 1.4rem; font-weight: 800; color: var(--green); margin-bottom: 8px; }
.form-success p { color: var(--gray); }

footer { background: var(--green); color: #fff; }
.footer-wave { display: block; width: 100%; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px 48px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: rgba(255,255,255,.55); font-size: .83rem; line-height: 1.7; margin: 12px 0 16px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform .2s; }
.social-btn:hover { transform: scale(1.15); }
.footer-col h4, .footer-col-title { color: var(--gold); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,.55); text-decoration: none; font-size: .85rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col ul li span { color: rgba(255,255,255,.55); font-size: .85rem; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.65); text-decoration: none; font-size: .85rem; transition: color .2s; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-contact-item span { color: rgba(255,255,255,.65); font-size: .85rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .8rem; }

.page-hero { background: var(--green); padding: 120px 24px 0; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: 0; right: 0; width: 320px; height: 320px; border-radius: 50%; background: rgba(240,165,0,.06); transform: translate(30%,-30%); }
.page-hero-inner { max-width: 800px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.page-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(240,165,0,.18); border: 1px solid rgba(240,165,0,.3); border-radius: 50px; padding: 6px 16px; margin-bottom: 20px; color: var(--gold); font-size: .82rem; font-weight: 600; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 16px; }
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero p { color: rgba(255,255,255,.65); font-size: 1.05rem; line-height: 1.7; margin-bottom: 28px; }
.page-hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.page-hero-wave { display: block; width: 100%; }

.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1.5px solid #f0f0f0; border-radius: 18px; overflow: hidden; margin-bottom: 10px; }
.faq-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; background: #fff; border: none; cursor: pointer; text-align: left; transition: background .2s; }
.faq-btn:hover { background: #fafafa; }
.faq-question { font-weight: 600; color: var(--green); font-size: .95rem; }
.faq-icon { width: 28px; height: 28px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--green); font-size: 1.1rem; font-weight: 700; flex-shrink: 0; transition: transform .25s; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .25s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { padding: 0 22px 20px; color: #555; font-size: .88rem; line-height: 1.7; border-top: 1px solid #f5f5f5; padding-top: 14px; }
.faq-cta-box { background: var(--green); border-radius: 24px; padding: 40px; text-align: center; margin-top: 48px; max-width: 760px; margin-left: auto; margin-right: auto; }
.faq-cta-box h3 { color: #fff; font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.faq-cta-box p { color: rgba(255,255,255,.6); margin-bottom: 24px; }
.faq-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.contact-card { display: flex; align-items: flex-start; gap: 16px; background: var(--light); border-radius: 18px; padding: 18px 20px; transition: box-shadow .2s; }
.contact-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.07); }
.contact-card-icon { width: 48px; height: 48px; background: var(--green); border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card-label { color: #aaa; font-size: .73rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; margin-bottom: 2px; }
.contact-card-val { color: var(--green); font-weight: 800; font-size: 1.05rem; text-decoration: none; }
.contact-card-val:hover { color: var(--gold2); }
.contact-card-sub { color: var(--gray); font-size: .8rem; margin-top: 2px; }
.messengers-title { font-weight: 700; color: var(--green); font-size: 1rem; margin-bottom: 12px; }
.messengers-row { display: flex; gap: 10px; flex-wrap: wrap; }
.messenger-btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .88rem; padding: 11px 20px; border-radius: 50px; text-decoration: none; transition: all .25s; }
.messenger-btn:hover { transform: scale(1.05); box-shadow: 0 6px 18px rgba(0,0,0,.15); }
.messenger-btn.viber { background: #7360F2; color: #fff; }
.messenger-btn.tg { background: #229ED9; color: #fff; }
.messenger-btn.ig { background: linear-gradient(135deg,#f6d365,#fd7b45,#e0405d,#9b27af); color: #fff; }
.response-note { background: rgba(240,165,0,.1); border: 1px solid rgba(240,165,0,.2); border-radius: 16px; padding: 16px 20px; margin-top: 24px; }
.response-note strong { display: block; color: var(--green); font-size: .9rem; margin-bottom: 4px; }
.response-note p { color: var(--gray); font-size: .83rem; }
.map-title { font-weight: 700; color: var(--green); font-size: 1.1rem; margin-bottom: 12px; }
.map-wrap { border-radius: 24px; overflow: hidden; border: 1px solid #eee; box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.map-caption { display: flex; align-items: center; gap: 8px; color: var(--gray); font-size: .83rem; margin-top: 10px; }
.map-caption span { color: var(--gold); }
.contacts-cta { background: var(--light); }
.contacts-cta .section-inner { text-align: center; }
.contacts-cta h2 { font-size: 2rem; font-weight: 900; color: var(--green); margin-bottom: 10px; }
.contacts-cta p { color: var(--gray); margin-bottom: 28px; }

.price-highlight-box { background: linear-gradient(135deg, var(--green) 0%, var(--green2) 100%); border-radius: 24px; padding: 32px 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; color: #fff; }
.price-highlight-label { color: var(--gold); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.price-highlight-val { font-size: 2.5rem; font-weight: 900; }
.price-highlight-val span { font-size: 1.1rem; font-weight: 400; color: rgba(255,255,255,.55); }
.price-highlight-sub { color: rgba(255,255,255,.55); font-size: .85rem; margin-top: 2px; }
.price-highlight-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.price-tag { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: 50px; padding: 6px 16px; font-size: .83rem; }
.corp-blocks { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.corp-block { border-radius: 24px; padding: 32px; }
.corp-block.light { background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,.05); }
.corp-block.dark { background: var(--green); }
.corp-block-icon { width: 56px; height: 56px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 18px; }
.corp-block.light .corp-block-icon { background: rgba(13,43,78,.08); }
.corp-block.dark .corp-block-icon { background: rgba(240,165,0,.18); }
.corp-block h2 { font-size: 1.35rem; font-weight: 900; margin-bottom: 10px; }
.corp-block.light h2 { color: var(--green); }
.corp-block.dark h2 { color: #fff; }
.corp-block > p { font-size: .88rem; line-height: 1.7; margin-bottom: 20px; }
.corp-block.light > p { color: var(--gray); }
.corp-block.dark > p { color: rgba(255,255,255,.65); }
.corp-features { list-style: none; margin-bottom: 20px; }
.corp-features li { display: flex; align-items: flex-start; gap: 10px; padding: 6px 0; font-size: .86rem; }
.corp-block.light .corp-features li { color: #444; }
.corp-block.dark .corp-features li { color: rgba(255,255,255,.7); }
.corp-features li span:first-child { font-size: 1.1rem; flex-shrink: 0; }
.corp-stat-box { border-radius: 16px; padding: 14px 18px; }
.corp-block.light .corp-stat-box { background: var(--light); }
.corp-block.dark .corp-stat-box { background: rgba(255,255,255,.1); }
.corp-stat-val { font-weight: 900; font-size: 1.1rem; }
.corp-block.light .corp-stat-val { color: var(--green); }
.corp-block.dark .corp-stat-val { color: var(--gold); }
.corp-stat-sub { font-size: .78rem; }
.corp-block.light .corp-stat-sub { color: var(--gray); }
.corp-block.dark .corp-stat-sub { color: rgba(255,255,255,.45); }

/* ===== WAVE ANIMATIONS ===== */
@keyframes waveScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes waveScrollRev {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
@keyframes waveFloat {
  0%, 100% { transform: translateY(0) scaleY(1); }
  50%       { transform: translateY(-8px) scaleY(0.92); }
}
@keyframes wavePulse {
  0%, 100% { opacity: .18; transform: scaleX(1); }
  50%       { opacity: .28; transform: scaleX(1.04); }
}

/* overflow:hidden clips the 200%-wide animated SVG — NO position:relative to avoid breaking absolute-positioned parents */
.wave-container { overflow: hidden; line-height: 0; }

.wave-scroll      { animation: waveScroll    10s linear infinite; width: 200%; display: block; }
.wave-scroll-slow { animation: waveScroll    18s linear infinite; width: 200%; display: block; }
.wave-scroll-rev  { animation: waveScrollRev 13s linear infinite; width: 200%; display: block; }

/* Decorative background waves inside hero — increased opacity for visibility */
.hero-waves-bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
}
.hero-wave-layer {
  position: absolute; left: 0; right: 0; bottom: 0; overflow: hidden; line-height: 0;
}
.hero-wave-layer svg { display: block; }
.hero-wave-layer.layer1 { bottom: 0;    opacity: .35; animation: waveFloat 6s ease-in-out infinite; }
.hero-wave-layer.layer2 { bottom: 28px; opacity: .22; animation: waveFloat 8s ease-in-out infinite reverse; }
.hero-wave-layer.layer3 { bottom: 56px; opacity: .15; animation: waveFloat 10s ease-in-out infinite 1s; }

/* Section wave divider wrapper */
.wave-divider { line-height: 0; overflow: hidden; }
.wave-divider svg { display: block; }

/* ===== LAKES CATALOG (TAB VERSION) ===== */
.lakes-catalog-bg { background: linear-gradient(160deg, #1A3A5C 0%, #0D2B4E 100%); }
.lakes-catalog-bg .section-head h2 { color: #fff; }
.lakes-catalog-bg .section-head p { color: rgba(255,255,255,.6); }

/* Tab buttons */
.lakes-tabs { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 28px; }
.lake-tab-btn {
  background: rgba(255,255,255,.07); border: 2px solid rgba(255,255,255,.1);
  border-radius: 18px; padding: 16px 10px; text-align: center;
  cursor: pointer; transition: all .25s; color: #fff;
}
.lake-tab-btn:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); }
.lake-tab-btn.active { border-color: var(--gold); background: rgba(240,165,0,.12); }
.lake-tab-dot { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin: 0 auto 8px; }
.lake-tab-dot.green  { background: rgba(34,197,94,.25); }
.lake-tab-dot.yellow { background: rgba(234,179,8,.25); }
.lake-tab-dot.orange { background: rgba(249,115,22,.25); }
.lake-tab-dot.blue   { background: rgba(99,102,241,.25); }
.lake-tab-name { font-weight: 800; font-size: .85rem; margin-bottom: 2px; }
.lake-tab-sub  { color: rgba(255,255,255,.5); font-size: .72rem; line-height: 1.3; }
.lake-tab-price { display: inline-block; background: var(--gold); color: var(--green); font-weight: 800; font-size: .72rem; padding: 2px 10px; border-radius: 50px; margin-top: 6px; }
.lake-tab-btn.active .lake-tab-price { background: var(--gold3); }

/* Tab panels */
.lakes-panel { display: none; }
.lakes-panel.active { display: block; animation: fadeInUp .3s ease; }
@keyframes fadeInUp { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }

/* Lake cards grid inside panel */
.lakes-cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.lake-card-item {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 14px 16px;
  display: flex; align-items: flex-start; gap: 12px;
  transition: all .25s;
}
.lake-card-item:hover { background: rgba(255,255,255,.11); border-color: rgba(240,165,0,.3); }
.lake-card-num {
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: .82rem; color: var(--green);
}
.lake-card-num.c { background: #22c55e; }
.lake-card-num.m { background: var(--gold); }
.lake-card-num.f { background: #f97316; }
.lake-card-num.b { background: #818cf8; }
.lake-card-info { flex: 1; min-width: 0; }
.lake-card-name  { color: #fff; font-weight: 700; font-size: .88rem; }
.lake-card-dist  { color: rgba(255,255,255,.4); font-size: .72rem; margin: 2px 0; }
.lake-card-stars { color: var(--gold); font-size: .75rem; letter-spacing: 1px; }
.lake-card-note  { color: rgba(255,255,255,.5); font-size: .72rem; line-height: 1.35; margin-top: 3px; }

.lakes-delivery-note { background: rgba(240,165,0,.12); border: 1px solid rgba(240,165,0,.25); border-radius: 16px; padding: 14px 20px; text-align: center; margin-top: 20px; }
.lakes-delivery-note strong { color: var(--gold); font-size: .95rem; }
.lakes-delivery-note span { color: rgba(255,255,255,.65); font-size: .83rem; display: block; margin-top: 3px; }

@media (max-width: 1024px) {
  /* Header: switch to mobile mode (burger) at 1024px — ensures phones with wider viewport still get mobile header */
  nav { display: none; }
  .header-phone { display: none; }
  .header-right .btn-gold { display: none !important; }
  .burger { display: flex; background: rgba(255,255,255,0.15); }
  .burger span { box-shadow: none; }
  .header-inner { height: 52px; padding: 0 16px; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid > :last-child { grid-column: 1/-1; max-width: 360px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .corp-blocks { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav { display: none; }
  .header-phone { display: none; }
  /* On mobile hide the CTA button from the header — hero already has it */
  .header-right .btn-gold { display: none !important; }

  /* Burger: crisp white lines on subtle frosted background */
  .burger { display: flex; background: rgba(255,255,255,0.15); }
  .burger span { box-shadow: none; }

  /* Shorter header on mobile */
  .header-inner { height: 52px; padding: 0 16px; }

  /* Hero: full screen height, column layout so hero-inner can use flex:1 */
  .hero {
    padding: 0;
    min-height: 100svh;
    flex-direction: column;
    align-items: stretch;
  }
  /* Hero inner: fills hero height, content top → stats pinned to bottom */
  .hero-inner {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 64px 20px 28px;
    box-sizing: border-box;
  }
  /* hero-left fills hero height so stats can pin to bottom */
  .hero-left {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  /* Stats: all 3 in one row, pinned to bottom of hero */
  .hero-stats {
    display: flex;
    gap: 0;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.15);
    margin-top: auto;
  }
  .hero-stats > div { flex: 1; }
  .hero-stat-val { font-size: 1.15rem; }
  .hero-stat-label { font-size: .68rem; }
  /* Hero badge smaller */
  .hero-badge { margin-bottom: 16px; }
  /* Hero title tighter */
  .hero h1 { margin-bottom: 10px; }
  .hero-sub { margin-bottom: 20px; font-size: .95rem; }
  .hero-btns { gap: 10px; margin-bottom: 0; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .kit-grid-main { grid-template-columns: repeat(3,1fr); }
  .lakes-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid > :last-child { max-width: 100%; }
  .msg-btns { grid-template-columns: 1fr 1fr; }
  .price-highlight-box { flex-direction: column; align-items: flex-start; }
  section { padding: 60px 20px; }
  .lakes-tabs { grid-template-columns: 1fr 1fr; }
  .lakes-cards-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .kit-grid-main { grid-template-columns: repeat(2,1fr); }
  .audience-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .lakes-tabs { grid-template-columns: 1fr 1fr; }
  .lakes-cards-grid { grid-template-columns: 1fr; }
}

/* ─── Accessibility: reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── Mobile: disable heavy continuous animations (save battery/CPU) ─── */
@media (max-width: 768px) {
  .wave-scroll, .wave-scroll-slow, .wave-scroll-rev {
    animation: none;
    width: 100%;
  }
  .hero-wave-layer { display: none; }
}

/* ─── Mobile Performance & Touch ─── */
/* Prevent iOS auto-zoom on input focus */
input, textarea, select { font-size: max(16px, 1rem); }
/* Touch-friendly targets — no double-tap delay */
a, button, [role="button"], .burger, label { touch-action: manipulation; }
/* Minimum tap target 44×44px on mobile */
@media (max-width: 768px) {
  .btn-gold, .btn-green, .btn-outline {
    min-height: 44px;
    padding: 12px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-nav a {
    padding: 14px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}
/* Prevent horizontal scroll everywhere */
img, video, iframe, table { max-width: 100%; height: auto; }
/* Improved body text legibility on phones */
@media (max-width: 380px) {
  body { font-size: 15px; }
  .hero h1 { font-size: 1.8rem; }
}
/* Blog listing cards */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
@media (max-width: 680px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ─── Article Pages — Shared Base Styles ─── */
.article-hero { position: relative; min-height: 560px; padding-bottom: 80px; }
.article-hero-img { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 50%; }
.article-hero-overlay { position: absolute; inset: 0; z-index: 0; }
.article-hero-fade { position: absolute; bottom: 0; left: 0; right: 0; height: 160px; background: linear-gradient(to top, #fff 0%, transparent 100%); z-index: 1; }
.article-hero-inner { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; padding: 96px 24px 48px; }
.article-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: rgba(255,255,255,.65); margin-bottom: 20px; flex-wrap: wrap; }
.article-breadcrumb a { color: rgba(255,255,255,.65); text-decoration: none; }
.article-breadcrumb a:hover { color: var(--gold); }
.article-breadcrumb span { color: rgba(255,255,255,.35); }
.article-cat-badge { display: inline-block; background: rgba(240,165,0,.2); border: 1px solid rgba(240,165,0,.5); color: var(--gold); font-size: .75rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 16px; }
.article-hero-inner h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 20px; text-shadow: 0 2px 16px rgba(0,0,0,.65); }
.article-hero-inner h1 em { color: var(--gold); font-style: normal; }
.article-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .82rem; color: rgba(255,255,255,.6); }
.article-meta-dot { width: 3px; height: 3px; background: rgba(255,255,255,.35); border-radius: 50%; }
.article-body { background: #fff; padding: 0 24px 72px; }
.article-container { max-width: 720px; margin: 0 auto; }
.article-lead { font-size: 1.15rem; color: #334; line-height: 1.75; margin-bottom: 40px; border-top: 3px solid var(--gold); padding-top: 20px; font-style: italic; }
.article-body h2 { font-size: 1.3rem; font-weight: 800; color: #0D2B4E; margin: 44px 0 16px; line-height: 1.3; }
.article-body h2::before { content: ''; display: block; width: 32px; height: 3px; background: var(--gold); margin-bottom: 10px; border-radius: 2px; }
.article-body p { color: #334; font-size: 1rem; line-height: 1.78; margin-bottom: 20px; }
.article-quote { border-left: 4px solid var(--gold); padding: 20px 24px; background: #f8f9fb; border-radius: 0 16px 16px 0; margin: 32px 0; }
.article-quote p { font-size: 1.05rem; font-style: italic; color: #0D2B4E; font-weight: 600; margin: 0; line-height: 1.6; }
.article-fact { background: #f0f5ff; border-radius: 16px; padding: 20px 24px; margin: 28px 0; display: flex; gap: 14px; align-items: flex-start; }
.article-fact-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.article-fact p { margin: 0; color: #334; font-size: .95rem; line-height: 1.65; }
.article-fact strong { color: #0D2B4E; }
.article-stats { background: linear-gradient(135deg, #0a1a0f 0%, #1a2e1a 100%); border-radius: 20px; padding: 32px; margin: 36px 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 20px; }
.stat-item { text-align: center; }
.stat-num { font-size: 1.85rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: .74rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .05em; }
.article-cta { background: linear-gradient(135deg, #0D2B4E 0%, #1A3A5C 100%); border-radius: 24px; padding: 40px 36px; text-align: center; margin: 52px 0 0; }
.article-cta h2 { color: #fff; font-size: 1.4rem; font-weight: 900; margin-bottom: 10px; }
.article-cta h2::before { display: none !important; }
.article-cta p { color: rgba(255,255,255,.65); font-size: .95rem; margin-bottom: 24px; }
.article-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.article-back { display: inline-flex; align-items: center; gap: 8px; color: #667; font-size: .88rem; text-decoration: none; margin: 32px 0; transition: color .2s; touch-action: manipulation; }
.article-back:hover { color: #0D2B4E; }
/* Article pages — mobile */
@media (max-width: 600px) {
  .article-hero { min-height: 380px; }
  .article-hero-inner { padding: 80px 16px 40px; }
  .article-body { padding: 0 16px 48px; }
  .article-lead { font-size: 1rem; }
  .article-stats { grid-template-columns: repeat(2, 1fr) !important; padding: 20px 16px; }
  .article-cta { padding: 28px 16px; }
  .article-cta-btns { flex-direction: column; align-items: center; }
  .article-fact { flex-direction: column; gap: 8px; }
  .article-quote { padding: 14px 16px; }
  .article-body h2 { font-size: 1.15rem; margin-top: 32px; }
}
@media (max-width: 380px) {
  .article-hero-inner h1 { font-size: 1.5rem; }
}

/* ─── Article: Read Also ─── */
.article-also {
  margin: 48px 0 0;
  padding-top: 40px;
  border-top: 2px solid #eaeef5;
}
.article-also-title {
  font-size: .75rem;
  font-weight: 700;
  color: #99a;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}
.article-also-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.article-also-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #f4f7fb;
  border-radius: 14px;
  padding: 16px 18px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.article-also-card:hover { background: #e8eef8; transform: translateY(-2px); }
.article-also-cat {
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.article-also-name {
  font-size: .9rem;
  font-weight: 700;
  color: #0D2B4E;
  line-height: 1.35;
}
.article-also-arrow {
  font-size: .78rem;
  color: #99a;
  margin-top: 4px;
}
@media (max-width: 480px) {
  .article-also-grid { grid-template-columns: 1fr; }
}
