/* =============================================
   CeylonSlow — Shared Stylesheet
   ============================================= */

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

:root {
  --page:       #F5F0E8;
  --surface:    #EDE6D6;
  --white:      #FDFAF5;
  --jungle:     #2D5A3D;
  --jungle-mid: #3D7A55;
  --jungle-lt:  #5A9E72;
  --terra:      #C4522A;
  --terra-lt:   #D9704A;
  --terra-pale: #F5E8E2;
  --sand:       #E8D5B7;
  --sand-dark:  #C9B89A;
  --ink:        #1C1C1A;
  --muted:      #6B6560;
  --radius-sm:  5px;
  --radius-md:  10px;
  --radius-lg:  18px;
  --nav-h:      60px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--page);
  color: var(--ink);
  line-height: 1.7;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 { line-height: 1.2; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--sand);
  padding: 0 5vw;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
}
.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.45rem; color: var(--ink);
  text-decoration: none; display: flex; align-items: baseline;
  letter-spacing: -0.01em;
}
.logo-ceylon { color: var(--jungle); }
.logo-slow   { color: var(--ink); position: relative; display: inline-block; }
.logo-slow::after {
  content: ''; position: absolute; left: 0; bottom: -3px;
  width: 100%; height: 2.5px;
  background: var(--terra); border-radius: 2px;
}
.nav-links { display: flex; gap: 1.75rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 0.875rem; font-weight: 500; transition: color 0.18s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--jungle); }
.nav-cta {
  background: var(--terra) !important; color: var(--white) !important;
  padding: 0.4rem 1.1rem; border-radius: var(--radius-sm);
}
.nav-cta:hover { background: var(--terra-lt) !important; color: var(--white) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; cursor: pointer; background: none; border: none;
  padding: 4px;
}
.hamburger span {
  display: block; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform 0.25s, opacity 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--sand);
  padding: 1.25rem 5vw 1.5rem; z-index: 199;
  flex-direction: column; gap: 0.1rem;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  color: var(--ink); text-decoration: none;
  font-size: 1rem; font-weight: 500; padding: 0.6rem 0;
  border-bottom: 1px solid var(--sand);
  transition: color 0.18s;
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover { color: var(--jungle); }
.nav-drawer .cta-mobile {
  margin-top: 0.75rem; background: var(--terra); color: var(--white) !important;
  text-align: center; padding: 0.75rem; border-radius: var(--radius-sm);
  font-weight: 600; border-bottom: none !important;
}

/* ── BUTTONS ── */
.btn {
  padding: 0.75rem 1.6rem; border-radius: var(--radius-sm);
  text-decoration: none; font-weight: 600; font-size: 0.9rem;
  transition: transform 0.15s, background 0.18s; display: inline-block;
  cursor: pointer; border: none; font-family: inherit;
}
.btn:hover { transform: translateY(-2px); }
.btn-terra         { background: var(--terra); color: var(--white); }
.btn-terra:hover   { background: var(--terra-lt); }
.btn-ghost         { border: 1.5px solid rgba(255,255,255,0.45); color: var(--white); background: transparent; }
.btn-ghost:hover   { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.07); }
.btn-jungle        { background: var(--jungle); color: var(--white); }
.btn-jungle:hover  { background: var(--jungle-mid); }
.btn-outline-jungle { border: 1.5px solid var(--jungle); color: var(--jungle); background: transparent; }
.btn-outline-jungle:hover { background: var(--jungle); color: var(--white); }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.82rem; }

/* ── SECTION RHYTHM ── */
section { padding: 5.5rem 5vw; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--terra); margin-bottom: 0.6rem;
}
.section-eyebrow::before { content: ''; width: 16px; height: 1.5px; background: var(--terra); }
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  color: var(--jungle); line-height: 1.15;
  margin-bottom: 0.8rem; letter-spacing: -0.015em;
}
.section-desc { color: var(--muted); max-width: 50ch; line-height: 1.7; margin-bottom: 3rem; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--jungle); padding: 0.9rem 5vw;
  display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center;
}
.trust-item {
  display: flex; align-items: center; gap: 0.45rem;
  color: rgba(255,255,255,0.72); font-size: 0.82rem; font-weight: 500;
}
.trust-item strong { color: rgba(255,255,255,0.95); }

/* ── EYEBROW (hero) ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--terra-lt); margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: ''; width: 22px; height: 1.5px;
  background: var(--terra-lt); display: inline-block;
}

/* ── NICHE CARDS ── */
.niches { background: var(--white); }
.niches-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.25rem;
}
.niche-card {
  background: var(--page); border: 1px solid var(--sand);
  border-radius: var(--radius-md); padding: 1.6rem;
  text-decoration: none; color: inherit; display: block;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.niche-card:hover {
  transform: translateY(-3px); border-color: var(--jungle-lt);
  box-shadow: 0 6px 20px rgba(45,90,61,0.1);
}
.niche-icon {
  width: 44px; height: 44px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1rem;
}
.ic-terra  { background: var(--terra-pale); }
.ic-jungle { background: #e4f0e9; }
.ic-sand   { background: #f7f0e4; }
.ic-sky    { background: #e4edf7; }
.ic-plum   { background: #ede6f7; }
.niche-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem; color: var(--ink); margin-bottom: 0.4rem; line-height: 1.25;
}
.niche-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
.niche-link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  color: var(--terra); font-size: 0.8rem; font-weight: 600;
  margin-top: 1rem; text-decoration: none; transition: gap 0.15s;
}
.niche-card:hover .niche-link { gap: 0.5rem; }

/* ── FEATURED GRID ── */
.featured { background: var(--page); }
.featured-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 1.25rem;
}
.feat-card {
  border-radius: var(--radius-md); overflow: hidden;
  background: var(--white); border: 1px solid var(--sand);
  text-decoration: none; color: inherit; display: block;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feat-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(28,28,26,0.09); }
.feat-card img { width:100%; aspect-ratio:16/9; object-fit:cover; display:block; }
.feat-card-body { padding: 1.25rem; }
.feat-tag {
  font-size: 0.68rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 0.22rem 0.55rem;
  border-radius: 4px; display: inline-block; margin-bottom: 0.6rem;
}
.tag-transport { background: #e4edf7; color: #1a4a80; }
.tag-nomad     { background: var(--terra-pale); color: #8b3318; }
.tag-gems      { background: #e4f0e9; color: #1a4a2e; }
.tag-safety    { background: #fdf2e9; color: #7a4010; }
.feat-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem; color: var(--ink); margin-bottom: 0.35rem; line-height: 1.3;
}
.feat-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* ── AFFILIATE STRIP ── */
.aff-strip {
  background: var(--jungle); padding: 3.5rem 5vw;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 2rem;
}
.aff-text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem; color: var(--white); margin-bottom: 0.4rem;
}
.aff-text p { color: rgba(255,255,255,0.62); max-width: 40ch; font-size: 0.875rem; }
.aff-links { display: flex; gap: 0.875rem; flex-wrap: wrap; }
.aff-btn {
  padding: 0.6rem 1.25rem; border-radius: var(--radius-sm);
  font-size: 0.875rem; font-weight: 600; text-decoration: none; transition: transform 0.15s;
}
.aff-btn:hover { transform: translateY(-1px); }
.aff-terra   { background: var(--terra); color: var(--white); }
.aff-outline { border: 1.5px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.85); }

/* ── NOMAD HUB ── */
.nomad { background: var(--white); }
.nomad-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.nomad-img-wrap { position: relative; }
.nomad-img-wrap img {
  width: 100%; border-radius: var(--radius-lg); aspect-ratio: 4/3; object-fit: cover; display: block;
}
.nomad-badge {
  position: absolute; bottom: -14px; right: -14px;
  background: var(--terra); color: var(--white);
  padding: 0.75rem 1rem; border-radius: var(--radius-md);
  font-size: 0.8rem; font-weight: 600; line-height: 1.3;
  box-shadow: 0 4px 14px rgba(196,82,42,0.3);
}
.nomad-badge strong { display: block; font-size: 1.4rem; line-height: 1; }
.nomad-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem; margin: 1.75rem 0 2rem; }
.stat-box {
  background: var(--page); border: 1px solid var(--sand);
  border-radius: var(--radius-sm); padding: 1rem;
}
.stat-num { font-family: 'DM Serif Display', serif; font-size: 1.7rem; color: var(--jungle); }
.stat-lbl { font-size: 0.77rem; color: var(--muted); margin-top: 0.1rem; }

/* ── SOLO SAFETY ── */
.solo { background: var(--terra-pale); }
.safety-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem;
}
.safety-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 1.25rem; border-top: 3px solid var(--terra);
}
.safety-card h4 { font-size: 0.92rem; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; }
.safety-card p  { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }

/* ── DIRECTORY CTA ── */
.dir-cta {
  background: var(--page); padding: 5rem 5vw;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.dir-cta-visual {
  background: var(--jungle); border-radius: var(--radius-lg);
  padding: 2.5rem; display: flex; flex-direction: column; gap: 1rem;
}
.dir-listing {
  background: rgba(255,255,255,0.1); border-radius: var(--radius-sm);
  padding: 0.875rem 1rem; display: flex; align-items: center; gap: 0.875rem;
}
.dir-listing-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.dir-listing-info { flex: 1; }
.dir-listing-name { font-size: 0.875rem; font-weight: 600; color: var(--white); }
.dir-listing-sub  { font-size: 0.77rem; color: rgba(255,255,255,0.6); margin-top: 0.1rem; }
.dir-listing-tag  {
  background: var(--terra); color: var(--white);
  font-size: 0.68rem; font-weight: 600; padding: 0.18rem 0.5rem; border-radius: 4px;
}

/* ── NEWSLETTER ── */
.newsletter { background: var(--jungle); padding: 4.5rem 5vw; }
.newsletter-inner { max-width: 500px; margin: 0 auto; text-align: center; }
.newsletter-inner h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem; color: var(--white); margin-bottom: 0.5rem;
}
.newsletter-inner p { color: rgba(255,255,255,0.65); margin-bottom: 1.5rem; font-size: 0.9rem; }
.email-row { display: flex; gap: 0.5rem; }
.email-row input {
  flex: 1; padding: 0.72rem 1rem;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1);
  color: var(--white); font-family: inherit; font-size: 0.875rem;
}
.email-row input::placeholder { color: rgba(255,255,255,0.4); }
.email-row input:focus { outline: none; border-color: var(--terra-lt); }
.email-row button {
  background: var(--terra); color: var(--white);
  border: none; padding: 0.72rem 1.4rem; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.875rem; cursor: pointer;
  font-family: inherit; transition: background 0.18s;
}
.email-row button:hover { background: var(--terra-lt); }
.form-msg {
  margin-top: 0.75rem; font-size: 0.85rem;
  color: rgba(255,255,255,0.8); min-height: 1.2em;
}
.form-msg.success { color: #a8e6be; }
.form-msg.error   { color: #f9a8a8; }

/* ── INNER PAGE HERO ── */
.inner-hero {
  background: var(--jungle); padding: 5rem 5vw 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.inner-hero .eyebrow { color: rgba(255,255,255,0.55); }
.inner-hero .eyebrow::before { background: rgba(255,255,255,0.4); }
.inner-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--white); line-height: 1.1;
  max-width: 18ch; margin-bottom: 1rem; letter-spacing: -0.02em;
}
.inner-hero p {
  font-size: 1.05rem; color: rgba(255,255,255,0.7);
  max-width: 48ch; line-height: 1.65;
}

/* ── CONTENT CARDS (inner pages) ── */
.content-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem;
}
.content-card {
  background: var(--white); border: 1px solid var(--sand);
  border-radius: var(--radius-md); overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column;
}
.content-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(28,28,26,0.09); }
.content-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.content-card-body { padding: 1.35rem; flex: 1; display: flex; flex-direction: column; }
.content-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem; color: var(--ink); margin-bottom: 0.4rem; line-height: 1.3;
}
.content-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; flex: 1; }
.card-meta {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; color: var(--muted); margin-top: 0.875rem;
}
.card-meta span { display: flex; align-items: center; gap: 0.25rem; }

/* ── TABLE (Wi-Fi / route data) ── */
.data-table-wrap { overflow-x: auto; border-radius: var(--radius-md); }
.data-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.875rem; background: var(--white);
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--sand);
}
.data-table th {
  background: var(--jungle); color: rgba(255,255,255,0.9);
  padding: 0.875rem 1rem; text-align: left; font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.04em;
}
.data-table td {
  padding: 0.875rem 1rem; border-bottom: 1px solid var(--sand);
  vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--surface); }
.speed-badge {
  display: inline-block; padding: 0.18rem 0.55rem;
  border-radius: 4px; font-size: 0.75rem; font-weight: 600;
}
.speed-fast { background: #e4f0e9; color: #1a4a2e; }
.speed-mid  { background: #fef9e7; color: #7d6008; }
.speed-slow { background: var(--terra-pale); color: #8b3318; }

/* ── ROUTE CARD ── */
.route-card {
  background: var(--white); border: 1px solid var(--sand);
  border-radius: var(--radius-md); padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.route-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.5rem;
}
.route-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem; color: var(--ink);
}
.route-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.route-tag {
  font-size: 0.68rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 0.2rem 0.5rem;
  border-radius: 4px; background: #e4edf7; color: #1a4a80;
}
.route-stats {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  font-size: 0.82rem; color: var(--muted);
}
.route-stat strong { color: var(--ink); font-weight: 600; }
.route-tip {
  font-size: 0.82rem; color: var(--jungle);
  background: #e4f0e9; border-radius: var(--radius-sm);
  padding: 0.55rem 0.875rem;
}

/* ── DIRECTORY LISTING ── */
.guide-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem;
}
.guide-card {
  background: var(--white); border: 1px solid var(--sand);
  border-radius: var(--radius-md); padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.guide-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--jungle); display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem;
  flex-shrink: 0;
}
.guide-header { display: flex; align-items: center; gap: 1rem; }
.guide-name { font-weight: 600; font-size: 0.95rem; color: var(--ink); }
.guide-role { font-size: 0.8rem; color: var(--muted); margin-top: 0.1rem; }
.guide-location { font-size: 0.8rem; color: var(--jungle); font-weight: 500; }
.guide-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
.guide-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.guide-tag {
  font-size: 0.72rem; padding: 0.2rem 0.55rem; border-radius: 4px;
  background: var(--surface); color: var(--muted); font-weight: 500;
}
.guide-actions { display: flex; gap: 0.5rem; margin-top: 0.25rem; }

/* Filter bar */
.filter-bar {
  display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.filter-btn {
  padding: 0.45rem 1rem; border-radius: 20px; border: 1.5px solid var(--sand);
  background: var(--white); color: var(--muted); font-size: 0.82rem;
  font-weight: 500; cursor: pointer; transition: all 0.18s; font-family: inherit;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--jungle); color: var(--white); border-color: var(--jungle);
}

/* ── CONTACT / LIST FORM ── */
.form-card {
  background: var(--white); border: 1px solid var(--sand);
  border-radius: var(--radius-lg); padding: 2.5rem;
  max-width: 560px;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--ink); margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.72rem 1rem;
  border: 1.5px solid var(--sand); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.875rem; color: var(--ink);
  background: var(--page); transition: border-color 0.18s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--jungle);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 0.75rem 5vw; background: var(--surface);
  font-size: 0.8rem; color: var(--muted);
  display: flex; gap: 0.4rem; align-items: center;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--jungle); }
.breadcrumb span { opacity: 0.5; }

/* ── FOOTER ── */
footer { background: #141814; padding: 3.5rem 5vw 2rem; color: rgba(255,255,255,0.45); font-size: 0.82rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem; color: var(--white);
  text-decoration: none; display: block; margin-bottom: 0.875rem;
}
.footer-logo .lc { color: var(--jungle-lt); }
.footer-logo .ls { color: var(--white); border-bottom: 2px solid var(--terra); padding-bottom: 1px; }
.footer-brand p { line-height: 1.65; max-width: 28ch; }
.footer-col h4 {
  color: rgba(255,255,255,0.8); font-size: 0.82rem; font-weight: 600;
  margin-bottom: 1rem; letter-spacing: 0.04em;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { color: rgba(255,255,255,0.42); text-decoration: none; transition: color 0.18s; }
.footer-col a:hover { color: var(--terra-lt); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-bottom a:hover { color: var(--terra-lt); }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .featured-grid { grid-template-columns: 1fr; }
  .nomad-inner   { grid-template-columns: 1fr; gap: 2rem; }
  .dir-cta       { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top    { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 750px) {
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hamburger    { display: flex; }
  .nav-links    { display: none; }
  .email-row    { flex-direction: column; }
  .nomad-badge  { display: none; }
  .footer-top   { grid-template-columns: 1fr; }
  section       { padding: 3.5rem 5vw; }
  .inner-hero   { padding: 3.5rem 5vw 2.5rem; }
  .aff-strip    { flex-direction: column; }
  .trust-bar    { gap: 1rem; }
}
