/* TrailQuest — main stylesheet */
/* Extracted from index.html — edit styles here, not in index.html */

/* ─── VARIABLES ──────────────────────────────────────────────── */
:root {
  --orange:        #EA8012;
  --orange-dark:   #D63E15;
  --green-xdark:   #12381F;
  --green-dark:    #2A4D2A;
  --green-mid:     #3a5c3a;
  --green-light:   #527054;
  --bg:            #ffffff;
  --bg-alt:        #f4f8f5;
  --text:          #12381F;
  --text-muted:    #527054;
  --card-bg:       #eaf2eb;
  --card-border:   #c8deca;
  --nav-bg:        rgba(255,255,255,0.92);
  --footer-bg:     #12381F;
  --footer-text:   rgba(255,255,255,0.7);
  --footer-link:   rgba(255,255,255,0.55);
}

/* ─── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

/* ─── NAV ──────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 32px;
}
nav .nav-logo img { height: 36px; display: block; }
nav .nav-links { display: flex; gap: 28px; list-style: none; }
nav .nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
nav .nav-links a:hover { color: var(--green-xdark); }
nav .nav-links a.nav-blog { color: var(--orange); font-weight: 600; }
nav .nav-links a.nav-blog:hover { color: var(--orange-dark); }
.nav-blog-badge {
  font-size: 0.65rem; background: var(--orange); color: #fff;
  border-radius: 50px; padding: 1px 6px; margin-left: 4px;
  font-weight: 700; vertical-align: middle; letter-spacing: 0.02em;
}
nav .nav-cta {
  background: linear-gradient(45deg, var(--orange), var(--orange-dark));
  color: #fff; text-decoration: none; padding: 9px 20px;
  border-radius: 50px; font-size: 0.88rem; font-weight: 600; transition: opacity 0.2s;
}
nav .nav-cta:hover { opacity: 0.88; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--green-xdark); margin: 5px 0; border-radius: 2px; }

/* ─── HERO ───────────────────────────────────────────────────── */
#hero {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 30px 24px 28px; background: var(--bg);
}
#hero img.hero-logo { width: min(280px, 70vw); margin-bottom: 0; }
#hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.18;
  background: linear-gradient(45deg, var(--orange), var(--orange-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 14px; max-width: 720px;
}
#hero p.sub { font-size: clamp(1rem, 2.5vw, 1.2rem); line-height: 1.7; color: var(--text-muted); max-width: 640px; margin-bottom: 24px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ─── BUTTONS ──────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(45deg, var(--orange), var(--orange-dark));
  color: #fff; text-decoration: none; padding: 14px 28px;
  border-radius: 50px; font-size: 1rem; font-weight: 700; transition: transform 0.25s, opacity 0.25s;
}
.btn-primary:hover { transform: scale(1.04); opacity: 0.92; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--card-bg); border: 1px solid var(--card-border);
  color: var(--text-muted); text-decoration: none; padding: 14px 28px;
  border-radius: 50px; font-size: 1rem; font-weight: 600; cursor: default;
}
.btn-secondary-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--card-bg); border: 1px solid var(--card-border);
  color: var(--text-muted); text-decoration: none; padding: 11px 24px;
  border-radius: 50px; font-size: 0.92rem; font-weight: 600; transition: all 0.2s;
}
.btn-secondary-link:hover { border-color: var(--orange); color: var(--orange); }

/* ─── SCROLL HINT ──────────────────────────────────────────────── */
.scroll-hint { margin-top: 24px; color: var(--text-muted); font-size: 0.82rem; animation: bounce 2s infinite; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ─── ABOUT ──────────────────────────────────────────────────── */
#about { background: var(--bg); scroll-margin-top: 62px; }
.trust-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 18px 32px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 28px;
  width: 100%;
}
.trust-bar span { font-size: 0.83rem; color: var(--text-muted); display: flex; align-items: center; gap: 7px; }
.trust-bar span em { color: var(--orange); font-style: normal; font-weight: 600; }
.about-inner { max-width: 860px; margin: 0 auto; padding: 80px 24px 64px; text-align: center; }
.about-quote {
  position: relative; background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 24px; padding: 48px 52px;
}
.about-quote::before {
  content: '\201C'; position: absolute; top: -18px; left: 36px;
  font-size: 5rem; line-height: 1;
  background: linear-gradient(45deg, var(--orange), var(--orange-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-family: Georgia, serif;
}
.about-quote::after {
  content: '\201D'; position: absolute; bottom: -42px; right: 36px;
  font-size: 5rem; line-height: 1;
  background: linear-gradient(45deg, var(--orange), var(--orange-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-family: Georgia, serif;
}
.about-quote p { font-size: clamp(1rem, 2vw, 1.12rem); line-height: 1.85; color: var(--green-dark); text-align: left; }
.about-quote p + p { margin-top: 20px; }
.about-quote strong { color: var(--green-xdark); }

/* ─── SECTIONS (shared) ────────────────────────────────────────────── */
section { padding: 80px 24px; max-width: 1080px; margin: 0 auto; }
section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  background: linear-gradient(45deg, var(--orange), var(--orange-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 12px;
}
section .section-sub { color: var(--text-muted); font-size: 1rem; line-height: 1.65; max-width: 640px; margin-bottom: 48px; }

/* ─── HOW IT WORKS ───────────────────────────────────────────────── */
#how .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 20px; padding: 32px 28px; display: flex; flex-direction: column; gap: 14px;
}
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(45deg, var(--orange), var(--orange-dark));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; color: #fff; flex-shrink: 0;
}
.step-card h3 { font-size: 1.1rem; color: var(--green-xdark); }
.step-card p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.6; }

/* ─── FEATURES ───────────────────────────────────────────────────── */
#features { background: var(--bg-alt); max-width: none; padding: 0; }
#features .inner { max-width: 1080px; margin: 0 auto; padding: 80px 24px; }
#features .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feat-card { background: #fff; border: 1px solid var(--card-border); border-radius: 18px; padding: 28px 24px; box-shadow: 0 2px 8px rgba(42,77,42,0.06); }
.feat-icon { font-size: 2rem; margin-bottom: 14px; }
.feat-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--green-xdark); }
.feat-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }

/* ─── HEALTH / HEALTHSPAN ────────────────────────────────────────────── */
#health { padding: 80px 24px; max-width: 1080px; margin: 0 auto; }
#health .health-inner { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 24px; padding: 52px 48px; }
.health-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 36px; }
.stat-card { background: #fff; border: 1px solid var(--card-border); border-radius: 16px; padding: 28px 20px; text-align: center; box-shadow: 0 2px 8px rgba(42,77,42,0.06); }
.stat-val {
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800;
  background: linear-gradient(45deg, var(--orange), var(--orange-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1.1; margin-bottom: 8px;
}
.stat-label { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; }
.healthspan-intro { margin-bottom: 32px; padding: 28px; background: #fff; border: 1px solid var(--card-border); border-radius: 18px; }
.healthspan-intro h3 { color: var(--green-xdark); margin-bottom: 12px; font-size: 1.1rem; }
.healthspan-intro p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.7; }
.zone-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 20px; }
.zone-card { text-align: center; padding: 16px; background: var(--bg-alt); border-radius: 12px; }
.zone-name { font-size: 1.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 6px; }
.zone-range { font-size: 0.78rem; color: var(--text-muted); }
.health-bar-wrap { margin-bottom: 20px; }
.health-bar-wrap h3 { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 12px; }
.health-bar { display: flex; border-radius: 50px; overflow: hidden; height: 18px; width: 100%; }
.health-bar .seg { flex: 1; }
.health-bar .seg-red { background: #c0392b; }
.health-bar .seg-orange { background: #e67e22; }
.health-bar .seg-green { background: #27ae60; }
.health-bar .seg-lgreen { background: #82e0aa; }
.hb-labels { display: flex; justify-content: space-between; margin-top: 7px; font-size: 0.75rem; color: var(--text-muted); }
.health-bar-legend { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 16px; }
.hbl-item { display: flex; align-items: center; gap: 7px; font-size: 0.8rem; color: var(--text-muted); }
.hbl-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.health-note { margin-top: 28px; padding: 18px 20px; background: #fff; border: 1px solid var(--card-border); border-radius: 12px; font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

/* ─── BLOG PREVIEW ─────────────────────────────────────────────────── */
#blog-preview { background: var(--bg); max-width: none; padding: 0; border-top: 1px solid var(--card-border); }
#blog-preview .inner { max-width: 1080px; margin: 0 auto; padding: 80px 24px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 36px; }
.blog-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 20px; padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
  text-decoration: none; color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(42,77,42,0.1); }
.blog-card.featured {
  grid-column: span 3;
  background: linear-gradient(135deg, #1a3a22 0%, #2A4D2A 100%);
  border-color: var(--orange);
  color: #fff;
  flex-direction: row; align-items: stretch; gap: 0;
  padding: 0; overflow: hidden;
}
.blog-card.featured:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(18,56,31,0.22); }
.blog-card.featured h3 { color: #fff; font-size: 1.25rem; line-height: 1.35; }
.blog-card.featured p { color: rgba(255,255,255,0.72); font-size: 0.93rem; line-height: 1.65; }
.blog-card.featured .blog-meta { color: rgba(255,255,255,0.5); }
.blog-card.featured .blog-read { color: var(--orange); font-size: 0.95rem; }

/* featured-left: content area (text), used when image is on the LEFT (default) */
.featured-left { flex: 1; display: flex; flex-direction: column; gap: 12px; padding: 32px 32px; }

/* featured-right: content area (text), used when image is on the RIGHT */
.featured-right { flex: 1; display: flex; flex-direction: column; gap: 12px; padding: 32px 32px; order: -1; }

/* featured-img: the image container, 227px wide on desktop (portrait-friendly) */
.featured-img { width: 227px; flex-shrink: 0; overflow: hidden; }
.featured-img img { width: 100%; display: block; }

.featured-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  background: var(--orange); color: #fff;
  padding: 4px 12px; border-radius: 50px; width: fit-content;
}
.blog-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 600;
  background: #fff; border: 1px solid var(--card-border);
  padding: 4px 12px; border-radius: 50px; color: var(--text-muted);
  width: fit-content;
}
.blog-meta { font-size: 0.78rem; color: var(--text-muted); display: flex; gap: 12px; }
.blog-card h3 { font-size: 1.05rem; color: var(--green-xdark); line-height: 1.4; }
.blog-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; flex: 1; }
.blog-read { font-size: 0.88rem; font-weight: 600; color: var(--orange); margin-top: 4px; }
.blog-all { text-align: center; }

/* ─── FOR WHO / PERSONAS ──────────────────────────────────────────────── */
#forwho { background: var(--bg-alt); max-width: none; padding: 0; }
#forwho .inner { max-width: 1080px; margin: 0 auto; padding: 80px 24px; }
.persona-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; margin-bottom: 32px; }
.ptab {
  background: #fff; border: 1px solid var(--card-border);
  padding: 8px 16px; border-radius: 50px; cursor: pointer;
  font-size: 0.88rem; color: var(--text-muted); transition: all 0.2s; user-select: none;
}
.ptab.active {
  background: linear-gradient(45deg, var(--orange), var(--orange-dark));
  border-color: transparent; color: #fff; font-weight: 600;
}
.persona-content { display: none; }
.persona-content.active { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.persona-card { background: #fff; border: 1px solid var(--card-border); border-radius: 18px; padding: 28px; box-shadow: 0 2px 8px rgba(42,77,42,0.06); }
.persona-card .pname { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; color: var(--green-xdark); }
.persona-card .ptitle { color: var(--orange); font-size: 0.82rem; margin-bottom: 16px; }
.persona-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

/* ─── DOWNLOAD ───────────────────────────────────────────────────── */
#download { text-align: center; padding: 80px 24px; max-width: 600px; margin: 0 auto; }
#download h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 12px; color: var(--green-xdark); }
#download p { color: var(--text-muted); margin-bottom: 36px; line-height: 1.65; }
.dl-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 36px; }
.qr-wrap { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.qr-wrap img { width: 164px; height: 164px; border-radius: 12px; padding: 8px; background: #fff; border: 3px solid var(--card-border); }
.qr-wrap span { font-size: 0.78rem; color: var(--text-muted); }
.ios-notify { margin-top: 36px; }
.ios-notify p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 14px; }
.ios-form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.ios-form input[type="email"] { flex: 1 1 220px; max-width: 300px; background: var(--card-bg); border: 1px solid var(--card-border); color: var(--text); padding: 12px 18px; border-radius: 50px; font-size: 0.9rem; outline: none; }
.ios-form input[type="email"]::placeholder { color: var(--text-muted); }
.ios-form input[type="email"]:focus { border-color: var(--orange); }
.ios-form button { background: linear-gradient(45deg, var(--orange), var(--orange-dark)); color: #fff; border: none; padding: 12px 24px; border-radius: 50px; font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: opacity 0.2s; }
.ios-form button:hover { opacity: 0.88; }
.ios-form button:disabled { opacity: 0.65; cursor: not-allowed; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
#notify-thanks { display: none; color: var(--orange); font-size: 0.9rem; margin-top: 10px; }
#notify-error { display: none; color: #b23a20; font-size: 0.9rem; margin-top: 10px; }

/* ─── FOOTER ───────────────────────────────────────────────────── */
footer { background: var(--footer-bg); border-top: 3px solid var(--orange); padding: 40px 32px 28px; display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
footer img { height: 32px; }
.footer-social { display: flex; gap: 12px; justify-content: center; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.65); text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer-social a:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; display: block; }
.footer-social .fs-at { font-size: 1.25rem; font-weight: 700; line-height: 1; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.footer-links a { color: var(--footer-link); text-decoration: none; font-size: 0.82rem; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 1px; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
footer .copy { color: var(--footer-link); font-size: 0.78rem; }
footer .support-email { color: var(--orange); font-size: 0.82rem; text-decoration: none; }
footer .support-email:hover { text-decoration: underline; }

/* ─── NEWSLETTER MODAL ─────────────────────────────────────────────── */
.nl-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: rgba(10, 28, 14, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
  padding: 20px;
}
.nl-overlay.open { display: flex; }
.nl-modal {
  background: var(--bg);
  border-radius: 24px;
  padding: 40px 36px 32px;
  max-width: 460px; width: 100%;
  position: relative;
  box-shadow: 0 24px 64px rgba(10,28,14,0.28);
  animation: modal-in 0.22s ease;
}
@keyframes modal-in { from { opacity: 0; transform: translateY(18px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
.nl-close {
  position: absolute; top: 14px; right: 18px;
  background: none; border: none; cursor: pointer;
  font-size: 1.4rem; color: var(--text-muted); line-height: 1;
  transition: color 0.2s;
}
.nl-close:hover { color: var(--green-xdark); }
.nl-modal h3 { font-size: 1.4rem; color: var(--green-xdark); margin-bottom: 8px; }
.nl-modal .nl-sub { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; }
.nl-modal input[type="email"] {
  width: 100%; background: var(--card-bg); border: 1px solid var(--card-border);
  color: var(--text); padding: 13px 18px; border-radius: 50px;
  font-size: 0.95rem; outline: none; margin-bottom: 16px;
}
.nl-modal input[type="email"]::placeholder { color: var(--text-muted); }
.nl-modal input[type="email"]:focus { border-color: var(--orange); }
.nl-consents { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.nl-consent-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.82rem; color: var(--text-muted); line-height: 1.5;
}
.nl-consent-row input[type="checkbox"] {
  margin-top: 2px; flex-shrink: 0;
  width: 16px; height: 16px; accent-color: var(--orange); cursor: pointer;
}
.nl-consent-row a { color: var(--orange); text-decoration: none; }
.nl-consent-row a:hover { text-decoration: underline; }
.nl-consent-row .req { color: var(--orange-dark); font-weight: 700; margin-left: 2px; }
.nl-submit {
  width: 100%;
  background: linear-gradient(45deg, var(--orange), var(--orange-dark));
  color: #fff; border: none; padding: 14px 24px;
  border-radius: 50px; font-size: 0.98rem; font-weight: 700;
  cursor: pointer; transition: opacity 0.2s;
}
.nl-submit:hover { opacity: 0.88; }
.nl-submit:disabled { opacity: 0.55; cursor: not-allowed; }
#nl-thanks { display: none; text-align: center; padding: 12px 0 4px; }
#nl-thanks p { color: var(--green-xdark); font-weight: 600; font-size: 1rem; margin-bottom: 6px; }
#nl-thanks span { color: var(--text-muted); font-size: 0.85rem; }
#nl-error { display: none; color: #b23a20; font-size: 0.85rem; margin-top: 8px; text-align: center; }
.nl-gdpr-note { margin-top: 16px; font-size: 0.75rem; color: var(--text-muted); text-align: center; line-height: 1.5; }

/* ─── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  nav .nav-links, nav .nav-cta { display: none; }
  .nav-hamburger { display: block; }
  nav.open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 62px; left: 0; right: 0;
    background: rgba(255,255,255,0.97); border-bottom: 1px solid var(--card-border);
    padding: 20px 32px; gap: 18px;
  }
  nav.open .nav-cta { display: block; margin-top: 8px; text-align: center; }
  nav.open .nav-links a { font-size: 1rem; color: var(--green-dark); }
  #how .steps { grid-template-columns: 1fr; }
  #features .grid { grid-template-columns: 1fr 1fr; }
  .health-stats { grid-template-columns: 1fr; }
  .zone-grid { grid-template-columns: 1fr 1fr; }
  #health .health-inner { padding: 32px 24px; }
  .persona-content.active { grid-template-columns: 1fr; }
  .persona-tabs { justify-content: flex-start; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card.featured { flex-direction: column; grid-column: span 1; }
  .featured-img { width: 100%; height: 200px; }
  /* na mobile sa order resetuje — obá varianty (left/right) sa zobrazia rovnako: obrázok hore */
  .featured-left,
  .featured-right { order: 0; padding: 24px 20px; }
  .featured-img { order: -1; }
  .nl-modal { padding: 32px 22px 26px; }
}

@media (max-width: 480px) {
  nav { padding: 12px 20px; }
  section { padding: 60px 18px; }
  #features .grid { grid-template-columns: 1fr; }
  .zone-grid { grid-template-columns: 1fr; }
  .about-quote { padding: 36px 24px; }
  .about-quote::before { top: -14px; left: 20px; font-size: 3.5rem; }
  .about-quote::after { bottom: -34px; right: 20px; font-size: 3.5rem; }
  footer { padding: 32px 20px 24px; }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .blog-card.featured { grid-column: span 3; }
  .featured-img { width: 200px; }
}
