/* Northbound — unified stylesheet. Auto-generated. */
/* Source priority: reinebringen → lago-di-braies → index → other guides → guides_index. */
/* Per-page image URLs remain inline. */

:root {
    --ink: #1A1F2E;
    --ink-mid: #2F3548;
    --body: #5A5E72;
    --muted: #8F8B85;
    --line: #E8E2D8;
    --paper: #FAF7F2;
    --warm: #F2EDE4;
    --accent: #E85D2F;
    --accent-hover: #CC4A1F;
    --accent-deep: #A33A18;
    --accent-soft: #FCE8DE;
    --highlight: #FFB590;
    --success: #2D7A4A;
  }

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

img { max-width: 100%; display: block; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }

/* --- Top nav --- */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    padding: 16px 0;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  }

.nav.is-visible {
    background: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(12px);
    border-bottom-color: var(--line);
  }

.nav .nav-right {
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

.nav.is-visible .nav-right {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

.nav .nav-links {
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

.nav.is-visible .nav-links {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
  }

.wordmark {
    display: flex; align-items: center; gap: 4px;
    color: var(--ink); text-decoration: none;
    font-weight: 800; font-size: 18px; letter-spacing: -0.015em;
  }

.wordmark-icon { width: 22px; height: 22px; color: var(--accent); }

.nav-links { display: flex; gap: 32px; align-items: center; }

.nav-links a {
    color: var(--ink-mid); text-decoration: none;
    font-size: 14px; font-weight: 500;
    transition: color 0.15s ease;
  }

.nav-links a:hover { color: var(--accent); }

.nav-cta {
    background: var(--accent);
    color: #fff !important;
    padding: 9px 20px;
    border-radius: 100px;
    font-weight: 600 !important;
    text-decoration: none;
    transition: background 0.15s ease, transform 0.12s ease;
  }

.nav-cta:hover { background: var(--accent-hover) !important; color: #fff !important; transform: translateY(-1px); }

/* --- Hero – split layout (preview) --- */
  .hero {
    position: relative;
    background: var(--paper);
    padding: 100px 0 80px;
    overflow: hidden;
  }

.hero::after { display: none; }

.hero-content {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center;
    max-width: var(--container-w, 1200px);
    margin: 0 auto;
    padding: 0 24px;
  }

.hero-copy { max-width: 580px; }

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent-soft);
    color: var(--accent-deep);
    padding: 7px 14px;
    border-radius: 100px;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.04em; text-transform: uppercase;
    margin-bottom: 22px;
    border: none;
  }

.hero-eyebrow-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px rgba(232, 93, 47, 0.6);
  }

.hero h1 {
    font-size: clamp(38px, 4.6vw, 64px);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 22px;
    color: var(--ink);
  }

.hero h1 em {
    font-style: normal;
    color: var(--accent);
  }

.hero-sub {
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.55;
    color: var(--body);
    max-width: 540px;
    margin-bottom: 28px;
  }

.hero-proof {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--muted);
    font-size: 13px; font-weight: 500;
  }

.hero-proof svg { width: 16px; height: 16px; color: var(--accent); }

.hero-image-credit {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.02em;
    padding: 8px 14px;
    background: rgba(26, 31, 46, 0.45);
    backdrop-filter: blur(10px);
    border-radius: 100px;
  }

@media (max-width: 900px) {
    .hero { padding: 80px 0 60px; }
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-image { aspect-ratio: 4/3; max-width: 480px; }
  }

/* --- Quick facts strip --- */
  .quick-facts {
    background: var(--ink);
    color: #fff;
    padding: 32px 0;
  }

.quick-facts-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    text-align: center;
  }

.qf-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

.qf-label {
    order: 2;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.55);
  }

.qf-value {
    order: 1;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: #fff;
  }

/* --- Section base --- */
  section { padding: 80px 0; }

.section-heading {
    max-width: 720px;
    margin-bottom: 40px;
  }

.section-eyebrow {
    display: inline-block;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
  }

.section-heading h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: var(--ink);
  }

.section-heading p {
    font-size: 17px;
    color: var(--body);
    line-height: 1.55;
  }

/* --- Prose --- */
  .prose p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-mid);
    margin-bottom: 18px;
  }

.prose p strong {
    color: var(--ink);
    font-weight: 600;
  }

.prose a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
  }

.prose a:hover { color: var(--accent-hover); }

/* --- Camera settings card --- */
  .exif-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 32px;
    margin-top: 24px;
  }

.exif-card-header {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
  }

.exif-card-header svg { width: 22px; height: 22px; color: var(--accent); }

.exif-card-header h3 {
    font-size: 16px; font-weight: 700;
    color: var(--ink);
  }

.exif-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 28px;
  }

.exif-item .exif-label {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
  }

.exif-item .exif-value {
    font-size: 16px; font-weight: 600;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
  }

.exif-placeholder {
    display: inline-block;
    background: var(--accent-soft);
    color: var(--accent-deep);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
  }

/* --- Before / after slider (matches shop) --- */
  .ba-block {
    margin-top: 48px;
  }

.ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    box-shadow: 0 20px 60px rgba(26,31,46,0.18);
  }

.ba-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
  }

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: rgba(255,255,255,0.95);
    transform: translateX(-50%);
    box-shadow: 0 0 12px rgba(0,0,0,0.4);
    pointer-events: none;
    will-change: left;
  }

.ba-handle-grip {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
  }

.ba-handle-grip svg {
    width: 22px; height: 22px;
    color: var(--ink);
  }

.ba-label {
    position: absolute;
    top: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    padding: 6px 12px;
    background: rgba(26,31,46,0.65);
    backdrop-filter: blur(8px);
    border-radius: 4px;
    pointer-events: none;
  }

.ba-label-before { left: 16px; }

.ba-label-after { right: 16px; }

.ba-caption {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    color: var(--muted);
    font-style: italic;
  }

/* --- When-to-go table --- */
  .month-table {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
  }

.month-row {
    display: grid;
    grid-template-columns: 100px 140px 1fr;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
    gap: 24px;
  }

.month-row:last-child { border-bottom: 0; }

.month-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
  }

.month-rating {
    display: inline-flex; align-items: center; gap: 6px;
    justify-self: center;
    padding: 3px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

.month-rating::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
  }

.rating-best { background: #EAF3DE; color: #27500A; }

.rating-best::before { background: #639922; }

.rating-okay { background: #FAEEDA; color: #633806; }

.rating-okay::before { background: #BA7517; }

.rating-skip { background: var(--warm); color: var(--muted); }

.rating-skip::before { background: var(--muted); }

.month-note {
    font-size: 14px;
    color: var(--body);
    line-height: 1.5;
  }

/* --- Map --- */
  .map-frame {
    position: relative;
    z-index: 1;
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
  }

#braiesMap { height: 100%; width: 100%; }

#braiesOverview { height: 100%; width: 100%; }

.map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

.map-grid .map-frame {
    height: 420px;
  }

.map-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
  }

@media (max-width: 720px) {
    .map-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .map-grid .map-frame {
      height: 320px;
    }
  }

.map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
  }

.legend-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px;
    color: var(--body);
  }

.legend-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
  }

/* Override Leaflet popup styling to match brand */
  .leaflet-popup-content-wrapper {
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  }

.leaflet-popup-content {
    margin: 14px 18px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--ink-mid);
  }

.leaflet-popup-content strong {
    color: var(--ink);
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
  }

.leaflet-popup-tip { background: #fff; }

/* --- Getting there callout --- */
  .info-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 20px;
  }

.info-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
    display: flex; align-items: center; gap: 10px;
  }

.info-card h3 svg { width: 20px; height: 20px; color: var(--accent); }

.info-card p {
    font-size: 15px;
    color: var(--body);
    line-height: 1.6;
    margin-bottom: 10px;
  }

.info-card p:last-child { margin-bottom: 0; }

.info-card .alert {
    background: var(--accent-soft);
    border-left: 3px solid var(--accent);
    padding: 12px 16px;
    border-radius: 6px;
    margin-top: 14px;
    font-size: 14px;
    color: var(--accent-deep);
    font-weight: 500;
  }

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

/* --- Gear list --- */
  .gear-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

.gear-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 22px;
  }

.gear-item h4 {
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
  }

.gear-item .gear-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
  }

.gear-item p {
    font-size: 13px;
    color: var(--body);
    line-height: 1.5;
  }

/* --- Soft preset mention --- */
  .preset-mention {
    background: var(--ink);
    color: #fff;
    border-radius: 20px;
    padding: 48px 56px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
  }

.preset-mention h2 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
  }

.preset-mention h2 em {
    font-style: normal;
    color: var(--highlight);
  }

.preset-mention p {
    font-size: 15px;
    color: rgba(255,255,255,0.78);
    line-height: 1.6;
    max-width: 560px;
  }

.preset-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent);
    color: #fff !important;
    padding: 14px 26px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    transition: background 0.15s ease, transform 0.12s ease;
  }

.preset-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }

/* --- Other spots grid --- */
  .roadmap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

.roadmap-tile {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px 24px;
    text-decoration: none;
    color: var(--ink);
    transition: border-color 0.15s ease, transform 0.15s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
  }

.roadmap-tile:hover {
    border-color: var(--accent);
  }

.roadmap-tile h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
  }

.roadmap-tile p {
    font-size: 13px;
    color: var(--body);
  }

.roadmap-tag {
    display: inline-block;
    background: var(--warm);
    color: var(--muted);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

/* --- Footer --- */
  footer {
    background: var(--ink);
    color: rgba(255,255,255,0.7);
    padding: 56px 0 32px;
  }

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
  }

.footer-brand .wordmark { color: #fff; margin-bottom: 14px; }

.footer-brand .wordmark-icon { color: var(--accent); }

.footer-brand p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    max-width: 280px;
  }

.footer-col h4 {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    padding: 5px 0;
    transition: color 0.15s ease;
  }

.footer-col a:hover { color: var(--highlight); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 24px;
    display: flex; justify-content: space-between;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
  }

/* --- Responsive --- */
  @media (max-width: 900px) {
    .container, .container-narrow { padding: 0 20px; }
    .quick-facts-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .exif-grid { grid-template-columns: repeat(2, 1fr); }
    .month-row { grid-template-columns: 80px 110px 1fr; padding: 14px 18px; gap: 14px; }
    .month-note { font-size: 13px; }
    .info-grid { grid-template-columns: 1fr; gap: 14px; }
    .info-card { padding: 22px; }
    .gear-list { grid-template-columns: 1fr; }
    .preset-mention { grid-template-columns: 1fr; padding: 32px; gap: 24px; }
    .roadmap-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .nav-links a:not(.nav-cta) { display: none; }
    section { padding: 56px 0; }
    .hero { min-height: 70vh; padding-bottom: 40px; }
  }

@media (max-width: 560px) {
    .roadmap-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
  }

/* Body prose links use brand orange, not default blue.
     Scoped to known prose containers and explicitly excludes button-classed anchors. */
  .prose a:not([class*="btn"]):not([class*="cta"]):not([class*="lemonsqueezy"]),
  .info-card a:not([class*="btn"]):not([class*="cta"]):not([class*="lemonsqueezy"]),
  .access-body a:not([class*="btn"]):not([class*="cta"]):not([class*="lemonsqueezy"]),
  .month-note a:not([class*="btn"]):not([class*="cta"]):not([class*="lemonsqueezy"]) {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: var(--accent-soft);
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
    transition: color 0.15s ease, text-decoration-color 0.15s ease;
  }

.prose a:not([class*="btn"]):not([class*="cta"]):not([class*="lemonsqueezy"]):hover,
  .info-card a:not([class*="btn"]):not([class*="cta"]):not([class*="lemonsqueezy"]):hover,
  .access-body a:not([class*="btn"]):not([class*="cta"]):not([class*="lemonsqueezy"]):hover,
  .month-note a:not([class*="btn"]):not([class*="cta"]):not([class*="lemonsqueezy"]):hover {
    color: var(--accent-hover);
    text-decoration-color: var(--accent);
  }

.nav-right {
    display: flex;
    align-items: center;
    gap: 6px;
  }

/* --- Mobile burger menu --- */
  .nav-burger {
    display: none;
    background: none;
    border: 0;
    padding: 8px;
    margin-right: 4px;
    cursor: pointer;
    color: var(--ink);
    -webkit-tap-highlight-color: transparent;
  }

.nav-burger svg { display: block; width: 22px; height: 22px; }

.nav-burger:hover { color: var(--accent); }

.nav-sheet-backdrop {
    display: none;
    position: fixed;
    inset: 64px 0 0 0;
    background: rgba(26, 31, 46, 0.35);
    z-index: 40;
    opacity: 0;
    transition: opacity 0.2s ease;
  }

.nav-sheet-backdrop.is-open { display: block; opacity: 1; }

.nav-sheet {
    display: none;
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 18px 0 22px;
    z-index: 45;
    transform: translateY(-12px);
    opacity: 0;
    transition: transform 0.22s ease, opacity 0.18s ease;
    box-shadow: 0 16px 32px rgba(26, 31, 46, 0.10);
  }

.nav-sheet.is-open {
    display: block;
    transform: translateY(0);
    opacity: 1;
  }

.nav-sheet-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
  }

.nav-sheet-links a {
    color: var(--ink);
    text-decoration: none;
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.01em;
  }

.nav-sheet-links a:last-child { border-bottom: 0; }

.nav-sheet-links a:hover { color: var(--accent); }

body.nav-locked { overflow: hidden; }

@media (max-width: 768px) {
    .nav-burger { display: inline-flex; align-items: center; }
    .nav-links { display: none; }
    .nav-cta-mobile { display: inline-flex !important; align-items: center; }
  }

@media (min-width: 769px) {
    .nav-cta-mobile { display: none; }
  }

/* --- Map pin tooltips (Northbound styled) --- */
  .leaflet-tooltip.map-tooltip {
    background: var(--paper);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px 14px;
    box-shadow: 0 8px 24px rgba(26, 31, 46, 0.15);
    font-family: inherit;
    font-size: 13px;
    line-height: 1.45;
    max-width: 260px;
    white-space: normal;
    opacity: 1 !important;
  }

.leaflet-tooltip.map-tooltip strong {
    display: block;
    color: var(--ink);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
    letter-spacing: -0.005em;
  }

.leaflet-tooltip.map-tooltip .tooltip-desc {
    color: var(--body);
    font-size: 13px;
  }

/* Tooltip arrow tints */
  .leaflet-tooltip.map-tooltip.leaflet-tooltip-right::before { border-right-color: var(--paper); }

.leaflet-tooltip.map-tooltip.leaflet-tooltip-left::before { border-left-color: var(--paper); }

.leaflet-tooltip.map-tooltip.leaflet-tooltip-top::before { border-top-color: var(--paper); }

.leaflet-tooltip.map-tooltip.leaflet-tooltip-bottom::before { border-bottom-color: var(--paper); }

.leaflet-tooltip.map-tooltip.leaflet-tooltip-right::before { border-right-color: var(--paper); }

/* --- Hero – split layout --- */
  .hero {
    position: relative;
    background: var(--paper);
    padding: 100px 0;
    overflow: hidden;
  }

.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center;
  }

.hero-proof-pill {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--accent-deep);
    padding: 7px 14px;
    background: var(--accent-soft);
    border-radius: 100px;
    margin-bottom: 24px;
  }

.hero-proof-pill::before {
    content: "";
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(232, 93, 47, 0.6);
  }

.hero-cta-row { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }

.hero-secondary-link {
    color: var(--ink-mid);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid var(--line);
    padding-bottom: 2px;
    transition: color 0.15s ease, border-color 0.15s ease;
  }

.hero-secondary-link:hover { color: var(--accent); border-color: var(--accent); }

.hero-trust-row {
    display: flex;
    gap: 22px;
    margin-top: 28px;
    font-size: 13px;
    color: var(--muted);
    flex-wrap: wrap;
  }

.hero-trust-row span {
    display: flex; align-items: center; gap: 6px;
  }

.hero-trust-row svg {
    width: 14px; height: 14px;
    color: var(--accent);
    flex-shrink: 0;
  }

/* Hero Editor's Picks callout – sits below trust badges with breathing room */
  .hero-editors {
    margin-top: 36px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px 14px 16px;
    background: var(--accent-soft);
    border: 1px solid rgba(232, 93, 47, 0.18);
    border-radius: 14px;
    max-width: 100%;
  }

.hero-editors-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
  }

.hero-editors-icon svg {
    width: 100%;
    height: 100%;
  }

.hero-editors-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

.hero-editors-num {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.005em;
    line-height: 1.25;
  }

.hero-editors-num strong { color: var(--accent); font-weight: 800; }

.hero-editors-label {
    font-size: 12px;
    color: var(--body);
    line-height: 1.3;
  }

/* --- Buttons --- */
  .btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 28px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.12s ease, background 0.15s ease, box-shadow 0.15s ease;
    white-space: nowrap;
  }

.btn-primary {
    background: var(--accent);
    color: #fff;
  }

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
  }

.btn-dark {
    background: var(--ink);
    color: #fff;
  }

.btn-dark:hover { background: var(--ink-mid); transform: translateY(-1px); }

.btn-lg { padding: 16px 32px; font-size: 16px; }

/* --- Proof strip --- */
  .proof {
    background: var(--ink);
    color: #fff;
    padding: 32px 0;
  }

.proof-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
  }

.proof-stat-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto 12px;
    color: var(--accent);
    opacity: 0.85;
  }

.proof-stat-icon svg {
    width: 100%;
    height: 100%;
  }

.proof-stat-num {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #fff;
  }

.proof-stat-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-top: 10px;
  }

/* Section eyebrow icon – sits next to eyebrow text */
  .section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: var(--accent);
    margin-bottom: 12px;
  }

.section-icon svg {
    width: 100%;
    height: 100%;
  }

/* --- Customer voice --- */
  .customer-voice {
    padding: 100px 0 40px;
    text-align: center;
  }

.customer-voice-quote {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.015em;
    color: var(--ink);
    max-width: 760px;
    margin: 0 auto 20px;
  }

.customer-voice-quote::before { content: "\201C"; color: var(--accent); }

.customer-voice-quote::after { content: "\201D"; color: var(--accent); }

.customer-voice-attr {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0.05em;
  }

/* --- Intro --- */
  .intro {
    padding: 30px 0 60px;
  }

.intro h2 {
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 20px;
    max-width: 720px;
  }

.intro p {
    font-size: 17px;
    line-height: 1.65;
    color: var(--body);
    max-width: 680px;
  }

.intro p + p { margin-top: 16px; }

/* --- Before/After --- */
  .ba-section {
    padding: 60px 0 100px;
    background: var(--warm);
  }

.ba-header {
    text-align: center;
    margin-bottom: 50px;
  }

.ba-header h2 {
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
  }

.ba-header p {
    font-size: 17px;
    color: var(--body);
    max-width: 580px;
    margin: 0 auto;
  }

.ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }

.ba-small {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--line);
  }

.ba-small-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--ink);
  }

.ba-small-img {
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    position: relative;
  }

.ba-small-img-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    padding: 3px 8px;
    background: rgba(26,31,46,0.7);
    backdrop-filter: blur(4px);
    border-radius: 3px;
  }

.ba-small-body {
    padding: 14px 16px;
    font-size: 13px;
    color: var(--body);
    line-height: 1.5;
  }

.ba-small-body strong { color: var(--ink); }

/* --- Packs --- */
  .packs {
    padding: 100px 0 80px;
  }

.packs-header {
    text-align: center;
    margin-bottom: 50px;
  }

.packs-header h2 {
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
  }

.packs-header p {
    font-size: 17px;
    color: var(--body);
    max-width: 580px;
    margin: 0 auto;
  }

.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-deep);
    background: var(--accent-soft);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
  }

.launch-badge::before {
    content: "";
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
  }

.pack-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

.pack {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
  }

.pack:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(26,31,46,0.10);
    border-color: var(--accent);
  }

.pack-image {
    aspect-ratio: 16/10;
    background-size: cover;
    background-position: center;
    position: relative;
  }

.pack-label {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    padding: 6px 12px;
    background: rgba(26,31,46,0.7);
    backdrop-filter: blur(8px);
    border-radius: 4px;
  }

.pack-body { padding: 32px 28px 28px; flex: 1; display: flex; flex-direction: column; }

.pack h3 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 10px;
  }

.pack-outcome {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.55;
    color: var(--ink-mid);
    margin-bottom: 18px;
  }

.pack-context {
    font-size: 14px;
    line-height: 1.6;
    color: var(--body);
    margin-bottom: 22px;
  }

.pack-details {
    list-style: none;
    margin-bottom: 24px;
    border-top: 1px solid var(--line);
    padding-top: 18px;
  }

.pack-details li {
    font-size: 13px;
    color: var(--ink-mid);
    padding: 5px 0;
    display: flex;
    align-items: baseline;
  }

.pack-details li::before {
    content: "✓";
    color: var(--accent);
    margin-right: 10px;
    font-weight: 700;
  }

.pack-buy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
  }

.pack-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1;
  }

.pack-price-sub {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
    margin-top: 4px;
  }

.pack-trust {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 12px;
    color: var(--muted);
  }

.pack-trust span {
    display: flex; align-items: center; gap: 5px;
  }

.pack-trust svg {
    width: 12px; height: 12px;
    color: var(--accent);
    flex-shrink: 0;
  }

/* --- Bundle --- */
  .bundle {
    background: var(--ink);
    color: #fff;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
  }

.bundle::before {
    content: "";
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(232, 93, 47, 0.25), transparent 70%);
    pointer-events: none;
  }

.bundle-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
  }

.bundle .section-eyebrow { color: var(--highlight); }

.bundle h2 {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
  }

.bundle p {
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255,255,255,0.78);
    margin-bottom: 28px;
    max-width: 480px;
  }

.bundle-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
    margin-bottom: 32px;
    max-width: 460px;
  }

.bundle-features span {
    font-size: 14px;
    color: rgba(255,255,255,0.88);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
  }

.bundle-features svg {
    width: 14px; height: 14px;
    color: var(--highlight);
    flex-shrink: 0;
  }

.bundle-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 12px;
    padding: 36px 32px;
    text-align: center;
    position: relative;
  }

.bundle-card-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
    padding: 5px 14px;
    background: var(--highlight);
    border-radius: 100px;
  }

.bundle-card-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--highlight);
    margin-bottom: 12px;
  }

.bundle-card-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
  }

.bundle-card-price {
    font-size: 60px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 6px;
  }

.bundle-card-was {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
  }

.bundle-card-was s { text-decoration: line-through; }

.bundle-card-was strong { color: var(--highlight); font-weight: 600; }

/* --- About --- */
  .about {
    background: var(--warm);
    padding: 100px 0;
  }

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
    align-items: start;
  }

.about h2 {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 20px;
  }

.about p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--body);
    margin-bottom: 16px;
  }

.about-sig {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    margin-top: 28px;
  }

.about-sig small {
    display: block;
    font-weight: 400;
    color: var(--muted);
    margin-top: 2px;
  }

/* --- PHOTO STRIP --- */
  .photo-strip-section {
    padding: 80px 0 100px;
    background: var(--paper);
  }

.photo-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px 28px;
    padding: 24px 8px;
  }

.scatter-frame {
    background: #fff;
    padding: 12px;
    box-shadow: 0 4px 14px rgba(26, 31, 46, 0.18), 0 1px 4px rgba(26, 31, 46, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

.scatter-frame:nth-child(4n+1) { transform: rotate(-2.5deg); }

.scatter-frame:nth-child(4n+2) { transform: rotate(1.8deg); }

.scatter-frame:nth-child(4n+3) { transform: rotate(-1deg); }

.scatter-frame:nth-child(4n+4) { transform: rotate(2.2deg); }

.scatter-frame:hover {
    transform: rotate(0deg) scale(1.04);
    box-shadow: 0 8px 24px rgba(26, 31, 46, 0.25), 0 2px 6px rgba(26, 31, 46, 0.1);
    z-index: 5;
  }

.scatter-frame img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }

/* --- FAQ --- */
  .faq {
    padding: 100px 0;
  }

.faq h2 {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
    text-align: center;
  }

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
  }

.faq-item summary {
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0;
  }

.faq-item summary::after {
    content: "";
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8,10l4,4l4,-4' stroke='%238F8B85' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.2s ease;
  }

.faq-item[open] summary::after { transform: rotate(180deg); }

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--body);
    padding: 14px 0 4px;
  }

/* --- Final CTA --- */
  .final-cta {
    padding: 100px 0;
    background: var(--ink);
    color: #fff;
    text-align: center;
  }

.final-cta h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
  }

.final-cta p {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }

.final-cta .hero-trust-row {
    justify-content: center;
    margin-top: 24px;
    color: rgba(255,255,255,0.55);
  }

.final-cta .hero-trust-row svg { color: var(--highlight); }

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
  }

.guide-card {
    text-decoration: none;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
    display: flex;
    flex-direction: column;
  }

.guide-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
    box-shadow: 0 12px 32px rgba(26,31,46,0.10);
  }

.guide-card-image {
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center 30%;
    background-color: var(--warm);
  }

.guide-card-body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

.guide-card-region {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
  }

.guide-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.015em;
    line-height: 1.2;
    margin: 0;
  }

.guide-card-tagline {
    font-size: 14px;
    color: var(--body);
    line-height: 1.45;
    margin-top: 2px;
  }

.guide-card-pack {
    font-size: 13px;
    color: var(--accent-deep);
    font-weight: 600;
    margin-top: 4px;
    display: inline-flex;
    align-items: center;
  }

/* ─────────────────────────────────────────────────────────────
   Pre-launch notify card (added 2026-05-25)
   Used on index.html while LS approval is pending.
   Remove when LAUNCH_MODE flips to "live" and shop is fully open.
   ───────────────────────────────────────────────────────────── */
.notify-card {
  background: var(--ink);
  color: #fff;
  border-radius: 20px;
  padding: 36px 44px;
  margin: 0 auto 40px;
  max-width: 720px;
  position: relative;
  box-shadow: 0 12px 40px rgba(26, 31, 46, 0.15), 0 0 0 1px rgba(232, 93, 47, 0.2);
  overflow: hidden;
}
.notify-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--highlight) 100%);
}
.notify-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--highlight);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.notify-eyebrow svg { width: 14px; height: 14px; }
.notify-card h3 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: #fff;
}
.notify-card h3 em {
  font-style: normal;
  color: var(--highlight);
}
.notify-body {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin-bottom: 22px;
  max-width: 540px;
}
.notify-body strong { color: #fff; font-weight: 600; }
.notify-form {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.notify-form input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 13px 16px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.notify-form input::placeholder { color: rgba(255,255,255,0.4); }
.notify-form input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.12);
}
.notify-form button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 13px 22px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.notify-form button:hover { background: var(--accent-hover); }
.notify-form button:disabled { opacity: 0.55; cursor: wait; }
.notify-form button svg { width: 14px; height: 14px; }
.notify-foot {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 6px;
}
.notify-foot svg { width: 12px; height: 12px; color: var(--success); }
.notify-error {
  font-size: 13px;
  color: var(--highlight);
  margin-top: 10px;
}
.notify-card.is-success { text-align: center; }
.notify-card.is-success .notify-form,
.notify-card.is-success .notify-foot,
.notify-card.is-success .notify-eyebrow { display: none; }
.notify-card .success-icon {
  width: 56px; height: 56px;
  background: rgba(45, 122, 74, 0.2);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.notify-card.is-success .success-icon { display: inline-flex; }
.notify-card .success-icon svg { width: 28px; height: 28px; color: var(--success); }
.notify-card.is-success .notify-body { margin: 0 auto; }
.notify-sig {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  display: none;
}
.notify-card.is-success .notify-sig { display: block; }
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}
@keyframes notify-pulse {
  0%   { box-shadow: 0 12px 40px rgba(26, 31, 46, 0.15), 0 0 0 1px rgba(232, 93, 47, 0.2); }
  50%  { box-shadow: 0 12px 40px rgba(26, 31, 46, 0.25), 0 0 0 3px rgba(232, 93, 47, 0.5); }
  100% { box-shadow: 0 12px 40px rgba(26, 31, 46, 0.15), 0 0 0 1px rgba(232, 93, 47, 0.2); }
}
.notify-card.is-pulsing { animation: notify-pulse 1.2s ease-in-out 1; }
@media (max-width: 768px) {
  .notify-card { padding: 26px 22px; }
  .notify-card h3 { font-size: 20px; }
  .notify-body { font-size: 14px; margin-bottom: 18px; }
  .notify-form { flex-direction: column; gap: 10px; }
  .notify-form input, .notify-form button { width: 100%; }
  .notify-form button { justify-content: center; }
}

/* ─────────────────────────────────────────────────────────────
   Mobile layout fixes (added 2026-05-25)
   Adds missing mobile breakpoints for sections that were stuck
   at desktop column counts: hero, packs, bundle, about, photo strip,
   quick facts. Existing 900px hero rule targets dead .hero-content
   class (HTML uses .hero-inner) – fixed below.
   ───────────────────────────────────────────────────────────── */

/* Tablet and below – stack hero, tighten quick facts */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-image {
    aspect-ratio: 4/3;
    max-width: 100%;
  }
  .quick-facts-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 16px;
  }
  .bundle-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Phone – stack everything, reduce padding */
@media (max-width: 640px) {
  section { padding: 56px 0; }

  /* Hero – smaller padding than desktop, but enough to clear the 64px fixed nav with breathing room */
  .hero { padding: 96px 0 48px; }
  .hero-cta-row { gap: 14px; }
  .hero-cta-row .btn-lg { width: 100%; justify-content: center; }
  .hero-secondary-link { width: 100%; text-align: center; }
  .hero-trust-row {
    flex-wrap: wrap;
    gap: 10px 18px;
  }
  .hero-trust-row span { font-size: 13px; }

  /* Quick facts – 2 columns on phone */
  .quick-facts { padding: 24px 0; }
  .quick-facts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
  }
  .qf-value { font-size: 16px; }

  /* Pack grid – single column on phone */
  .pack-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Bundle features – single column on phone */
  .bundle-features {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 100%;
  }
  .bundle { padding: 64px 0; }

  /* About – tighter spacing, image scales naturally */
  .about-img {
    max-width: 360px;
    margin: 0 auto;
  }

  /* Photo strip – 2 columns on phone instead of 4 */
  .photo-strip-section { padding: 56px 0 72px; }
  .photo-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
    padding: 16px 4px;
  }
  /* Tone down the scatter rotation on mobile so frames don't clip */
  .scatter-frame:nth-child(4n+1) { transform: rotate(-1.5deg); }
  .scatter-frame:nth-child(4n+2) { transform: rotate(1deg); }
  .scatter-frame:nth-child(4n+3) { transform: rotate(-0.5deg); }
  .scatter-frame:nth-child(4n+4) { transform: rotate(1.2deg); }

  /* Final CTA stacked trust row */
  .final-cta .hero-trust-row { justify-content: center; }
}

/* Very narrow phones – tighten further */
@media (max-width: 380px) {
  .quick-facts-grid { grid-template-columns: 1fr 1fr; }
  .qf-value { font-size: 15px; }
  .qf-label { font-size: 10px; }
}

/* --- Persistent wordmark (added 02 Jun 2026, nav consolidation) ---
   The nav is transparent at the top of the page and only reveals its
   background + links after 100px of scroll. The wordmark sits outside the
   reveal wrappers so it stays visible the whole time, including before
   scroll. No backing chip — it reads directly on the paper hero. */
.nav .wordmark {
  opacity: 1 !important;
  pointer-events: auto;
}
