/* Geocoding explainer — page-specific styles on top of ../site.css.
   Marketing-leaning, but stays in the warm-beige limestone palette
   and the Instrument Serif italic display. */

.geo-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px 96px;
}

/* ── HERO ─────────────────────────────────────────────────────── */

.geo-hero {
  padding: 96px 0 64px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 64px;
}
.geo-hero-inner {
  max-width: 820px;
}

.geo-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.geo-hero h1 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  color: var(--ink);
}
.geo-hero h1 .geo-italic {
  display: block;
  color: var(--accent);
}

.geo-lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 700px;
  margin: 0 0 40px;
}
.geo-lede em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
}
.geo-lede strong {
  color: var(--ink);
  font-weight: 600;
}

.geo-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.geo-btn {
  padding: 13px 28px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.15s ease;
}
.geo-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--paper);
}
.geo-btn-ghost {
  padding: 13px 28px;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.15s ease;
}
.geo-btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── SECTION FRAME ────────────────────────────────────────────── */

.geo-section {
  position: relative;
  padding: 56px 0 28px;
  border-bottom: 1px solid var(--rule-soft);
}
.geo-section:last-of-type { border-bottom: 0; }

.geo-section-num {
  position: absolute;
  top: 56px;
  left: -56px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}
@media (max-width: 1100px) {
  .geo-section-num {
    position: static;
    margin-bottom: 8px;
    color: var(--accent);
  }
}

.geo-section h2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--ink);
}
.geo-section h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.005em;
  margin: 0 0 10px;
  color: var(--ink);
}
.geo-section p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 760px;
  margin: 0 0 16px;
}
.geo-section .section-lede {
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink-2);
  border-left: 3px solid var(--accent);
  padding-left: 18px;
  margin: 0 0 36px;
  max-width: 800px;
}
.geo-section em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
}
.geo-section code {
  font-family: var(--mono);
  font-size: 13px;
  background: var(--rule-soft);
  padding: 1px 6px;
  border-radius: 3px;
  color: var(--ink);
}
.geo-section a {
  color: var(--accent);
  border-bottom: 1px dashed var(--accent-soft);
}
.geo-section a:hover { border-bottom-style: solid; }
.geo-section strong { color: var(--ink); font-weight: 600; }

/* ── FLAVORS GRID (Section 1) ─────────────────────────────────── */

.geo-flavors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 28px 0 32px;
}
.flavor {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 22px 24px;
}
.flavor-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.flavor h3 {
  font-size: 17px;
  margin: 0 0 10px;
}
.flavor p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}

/* ── INDUSTRY GRID (Section 2) ────────────────────────────────── */

.geo-industries {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.industry {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 24px 26px 22px;
  transition: all 0.2s ease;
}
.industry:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(42, 37, 32, 0.06);
}
.industry-icon {
  font-size: 26px;
  margin-bottom: 10px;
}
.industry h3 {
  font-size: 17px;
  margin: 0 0 10px;
}
.industry p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}

/* ── COSTS DARK SECTION (Section 3) ───────────────────────────── */

.geo-section-dark {
  background: var(--code-bg);
  color: var(--code-ink);
  margin: 56px -32px 0;
  padding: 64px 32px 40px;
  border-radius: 0;
  border-top: 0;
  border-bottom: 0;
}
.geo-section-dark .geo-section-num { color: var(--accent); }
.geo-section-dark h2 { color: var(--code-ink); }
.geo-section-dark h3 { color: var(--code-ink); }
.geo-section-dark p {
  color: rgba(232, 223, 208, 0.78);
}
.geo-section-dark code {
  background: rgba(255, 255, 255, 0.08);
  color: var(--code-ink);
}
.geo-section-dark a {
  color: var(--accent);
  border-bottom-color: rgba(201, 100, 66, 0.5);
}

.cost-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.cost {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 24px 26px 22px;
}
.cost h3 {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.4;
}
.cost p {
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 10px;
}
.cost-meta {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 12px;
  margin-top: 14px;
}
.cost-meta strong { color: var(--code-ink); }

/* ── OFFER GRID (Section 4) ───────────────────────────────────── */

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.offer {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: start;
  gap: 8px;
  padding: 20px 22px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 10px;
}
.offer-bullet {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  line-height: 0.7;
  color: var(--accent);
  text-align: center;
}
.offer h3 {
  margin: 0 0 6px;
  font-size: 16px;
  grid-column: 2;
}
.offer p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  grid-column: 2;
}

/* ── FIT TABLE (Section 5) ────────────────────────────────────── */

.geo-fit {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 16px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 10px;
  overflow: hidden;
}
.geo-fit thead th {
  text-align: left;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
  padding: 14px 18px;
  border-bottom: 1px solid var(--rule);
}
.geo-fit tbody th {
  text-align: left;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  padding: 14px 18px;
  border-bottom: 1px solid var(--rule-soft);
  vertical-align: top;
  width: 32%;
  white-space: nowrap;
}
.geo-fit tbody td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--rule-soft);
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.55;
  vertical-align: top;
}
.geo-fit tbody tr:last-child th,
.geo-fit tbody tr:last-child td { border-bottom: none; }
.geo-fit tbody tr:hover { background: rgba(201, 100, 66, 0.025); }

/* ── START TILES (Section 6) ──────────────────────────────────── */

.start-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.start-tile {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 28px 22px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 10px;
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  transition: all 0.2s ease;
}
.start-tile:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(42, 37, 32, 0.08);
}
.start-tile .start-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--accent);
  line-height: 1;
}
.start-tile h3 {
  font-size: 18px;
  margin: 0;
  color: var(--ink);
}
.start-tile p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  flex: 1;
}
.start-tile .start-arrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-top: 8px;
}

/* ── FOOT ─────────────────────────────────────────────────────── */

.geo-foot {
  margin-top: 80px;
  padding: 36px 0 24px;
  border-top: 1px solid var(--rule);
}
.geo-foot-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  color: var(--ink-2);
}
.geo-foot strong { color: var(--ink); font-weight: 600; }
.foot-links {
  display: flex;
  gap: 22px;
  font-family: var(--mono);
  font-size: 13px;
}
.foot-links a {
  color: var(--ink-2);
  border-bottom: 1px dashed var(--rule);
  padding-bottom: 1px;
}
.foot-links a:hover {
  color: var(--accent);
  border-color: var(--accent);
}
