/* Solara — Landing Page UI Kit
   Pure CSS, no JS. Imports the canonical token sheet. */
/* =====================================================
   Solara Design System — Colors & Type
   Travel landing system, terracotta-led, editorial-feel.
   ===================================================== */

@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap");

:root {
  /* ----- Brand colors ----- */
  --terracotta:        #E35336;   /* primary action */
  --terracotta-deep:   #8A2B0E;   /* heading ground / press */
  --peach:             #FFD3AC;   /* surface, highlight */
  --peach-soft:        #FFE9D4;   /* tinted bg, ico badge */
  --lavender:          #9988A1;   /* secondary, quiet */
  --lavender-soft:     #E7E1EA;   /* surface tint */

  /* ----- Warm neutrals (subtly toward terracotta) ----- */
  --ink:               #1F1A1C;   /* fg1 — primary text */
  --ink-2:             #3A2F33;   /* fg2 — body */
  --ink-3:             #6B5E63;   /* fg3 — meta, lede */
  --ink-4:             #9A8F94;   /* fg4 — placeholder, captions */
  --line:              #EEE7E3;   /* hairlines, dividers */
  --bg:                #FBF7F3;   /* warm off-white page */
  --paper:             #FFFFFF;   /* surface */

  /* ----- Semantic ----- */
  --success:           #6F8F5E;
  --warning:           #E0A24A;
  --danger:            #B5432C;

  /* ----- Radius scale ----- */
  --r-xs:   6px;       /* tags, tight chips */
  --r-sm:  10px;       /* small inputs */
  --r-md:  14px;       /* inline cards */
  --r-lg:  22px;       /* cards, surfaces */
  --r-xl:  32px;       /* hero containers, newsletter */
  --r-pill: 999px;     /* buttons, badges, pill inputs */

  /* ----- Shadow system (warm — tints toward terracotta, never neutral gray) ----- */
  --sh-1: 0 1px 2px rgba(31,26,28,.04), 0 1px 1px rgba(31,26,28,.03);
  --sh-2: 0 8px 20px -8px rgba(31,26,28,.10), 0 2px 4px rgba(31,26,28,.04);
  --sh-3: 0 24px 48px -20px rgba(138,43,14,.18), 0 4px 12px rgba(31,26,28,.06);
  --sh-glow: 0 18px 40px -16px rgba(227,83,54,.45);

  /* ----- Spacing scale ----- */
  --s-1:  4px;
  --s-2:  8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;

  /* ----- Font families ----- */
  --serif: "DM Serif Display", "Times New Roman", Georgia, serif;
  --sans:  "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, Menlo, monospace;

  /* ----- Semantic type ramp ----- */
  --t-display-1-size: 88px; --t-display-1-line: .95;  --t-display-1-track: -.025em;
  --t-display-2-size: 56px; --t-display-2-line: 1.02; --t-display-2-track: -.02em;
  --t-h1-size:        40px; --t-h1-line:        1.10; --t-h1-track:        -.015em;
  --t-h2-size:        28px; --t-h2-line:        1.15; --t-h2-track:        -.01em;
  --t-lead-size:      20px; --t-lead-line:      1.40;
  --t-body-size:      16px; --t-body-line:      1.55;
  --t-small-size:     13px; --t-small-line:     1.50;
  --t-eyebrow-size:   11px; --t-eyebrow-track:  .20em;
  --t-mono-size:      13px;
}

/* ----- Base ----- */
html, body {
  margin: 0;
  padding: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

/* ----- Semantic helpers ----- */
.t-display-1 {
  font-family: var(--serif);
  font-size: var(--t-display-1-size);
  line-height: var(--t-display-1-line);
  letter-spacing: var(--t-display-1-track);
  color: var(--ink);
}
.t-display-2 {
  font-family: var(--serif);
  font-size: var(--t-display-2-size);
  line-height: var(--t-display-2-line);
  letter-spacing: var(--t-display-2-track);
  color: var(--ink);
}
.t-h1 {
  font-family: var(--serif);
  font-size: var(--t-h1-size);
  line-height: var(--t-h1-line);
  letter-spacing: var(--t-h1-track);
  color: var(--ink);
}
.t-h2 {
  font-family: var(--serif);
  font-size: var(--t-h2-size);
  line-height: var(--t-h2-line);
  letter-spacing: var(--t-h2-track);
  color: var(--ink);
}
.t-lead {
  font-family: var(--sans);
  font-size: var(--t-lead-size);
  line-height: var(--t-lead-line);
  font-weight: 400;
  color: var(--ink-2);
}
.t-body {
  font-family: var(--sans);
  font-size: var(--t-body-size);
  line-height: var(--t-body-line);
  color: var(--ink-2);
}
.t-small {
  font-family: var(--sans);
  font-size: var(--t-small-size);
  line-height: var(--t-small-line);
  color: var(--ink-3);
}
.t-eyebrow {
  font-family: var(--sans);
  font-size: var(--t-eyebrow-size);
  font-weight: 700;
  letter-spacing: var(--t-eyebrow-track);
  text-transform: uppercase;
  color: var(--terracotta);
}
.t-mono {
  font-family: var(--mono);
  font-size: var(--t-mono-size);
  color: var(--ink-2);
}

/* Italic emotion-word inside serif headings */
.t-display-1 em, .t-display-2 em, .t-h1 em, .t-h2 em {
  font-style: italic;
  color: var(--terracotta);
}


* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
.page {
  max-width: 1320px;
  margin: 0 auto;
  padding: 32px 56px 96px;
}

/* ---------- Eyebrow + section head ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--terracotta);
}
.h-section {
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 8px 0 0;
  max-width: 18ch;
  text-wrap: balance;
}
.h-section em {
  font-style: italic;
  color: var(--terracotta);
  position: relative;
  z-index: 0;
}
.h-section em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 8px;
  background: var(--peach);
  z-index: -1;
  border-radius: 4px;
}
.lede {
  color: var(--ink-3);
  font-size: 16px;
  max-width: 56ch;
  margin-top: 10px;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
}
section + section { margin-top: 96px; }

/* ---------- Brand ---------- */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--terracotta);
  display: grid; place-items: center;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-glow);
  flex: none;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: -20% -20% auto auto;
  width: 70%; height: 70%;
  background: var(--peach);
  border-radius: 50%;
  opacity: .45;
}
.brand-mark svg { position: relative; z-index: 1; }
.brand-name {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -.01em;
  line-height: 1;
  color: var(--ink);
}
.brand-name em {
  font-style: italic;
  color: var(--terracotta);
}

/* ---------- Top Nav ---------- */
.topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 28px;
}
.topnav-links { display: flex; gap: 30px; }
.topnav-links a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .15s ease;
}
.topnav-links a:hover { color: var(--terracotta); }
.topnav-links a.is-active {
  color: var(--terracotta);
  font-weight: 700;
}
.topnav-auth {
  display: flex;
  gap: 12px;
  align-items: center;
}
.topnav-auth a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

/* ---------- Buttons (pill) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-weight: 600; font-size: 15px; line-height: 1;
  padding: 16px 26px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--terracotta); color: white; box-shadow: var(--sh-glow); }
.btn--primary:hover { background: var(--terracotta-deep); }
.btn--peach { background: var(--peach); color: var(--terracotta-deep); }
.btn--peach:hover { background: #FFC289; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: white; }
.btn--text { background: transparent; color: var(--terracotta); padding: 0; border: none; }
.btn--text:hover { color: var(--terracotta-deep); }
.btn--lg { padding: 20px 32px; font-size: 16px; }
.btn--sm { padding: 10px 18px; font-size: 13px; }

/* Play */
.btn-play {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  color: var(--ink); cursor: pointer;
  background: none; border: none; padding: 0;
}
.btn-play-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--terracotta);
  display: grid; place-items: center;
  color: white;
  box-shadow: 0 0 0 8px rgba(227,83,54,.12);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--paper);
  border-radius: var(--r-xl);
  overflow: hidden;
  padding: 64px 64px 72px;
  border: 1px solid var(--line);
  isolation: isolate;
  margin-top: 24px;
}
.hero::before {
  content: "";
  position: absolute;
  right: -120px; top: -80px;
  width: 720px; height: 720px;
  background: var(--peach);
  border-radius: 50%;
  z-index: -1;
  opacity: .55;
}
.hero::after {
  content: "";
  position: absolute;
  left: -160px; bottom: -180px;
  width: 360px; height: 360px;
  background: var(--lavender-soft);
  border-radius: 50%;
  z-index: -1;
  opacity: .9;
}
.hero-dots {
  position: absolute;
  right: 24px; top: 24px;
  color: var(--terracotta);
  opacity: .6;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-family: var(--serif);
  font-size: 76px;
  line-height: 1.02;
  letter-spacing: -.025em;
  margin: 14px 0 18px;
  color: var(--ink);
}
.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
  position: relative;
  z-index: 0;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px; bottom: 8px;
  height: 8px;
  background: var(--terracotta);
  opacity: .25;
  border-radius: 4px;
  z-index: -1;
}
.hero p {
  color: var(--ink-3);
  max-width: 46ch;
  font-size: 16px;
  margin: 0 0 28px;
}
.hero-actions { display: flex; align-items: center; gap: 24px; }
.hero-art {
  aspect-ratio: 1 / 1;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.2) 0 16px, transparent 16px 32px),
    linear-gradient(160deg, var(--peach), var(--terracotta) 70%);
  position: relative;
  display: grid; place-items: center;
  color: rgba(255,255,255,.92);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
}
.hero-art .plane {
  position: absolute;
  top: 12%; right: 8%;
  color: var(--lavender);
  transform: rotate(-18deg);
}
.hero-art .plane-2 {
  position: absolute;
  bottom: 22%; left: 6%;
  color: var(--terracotta-deep);
  transform: rotate(12deg);
  opacity: .8;
}

/* ---------- Search bar ---------- */
.search-wrap {
  margin-top: -40px;
  position: relative;
  z-index: 5;
  padding: 0 56px;
}
.search-bar {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr auto;
  background: var(--paper);
  border-radius: var(--r-pill);
  padding: 10px 10px 10px 28px;
  box-shadow: var(--sh-3);
  align-items: center;
}
.search-field {
  padding: 8px 20px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.search-field:nth-last-of-type(2) { border-right: none; }
.search-field label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink-4);
}
.search-field .val {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.search-submit {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--terracotta);
  color: white;
  border: none;
  cursor: pointer;
  display: grid; place-items: center;
  box-shadow: var(--sh-glow);
  transition: background .2s ease, transform .15s ease;
}
.search-submit:hover {
  background: var(--terracotta-deep);
  transform: translateY(-1px);
}

/* ---------- Feature cards ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px 26px;
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-3);
  border-color: transparent;
}
.feature.is-active {
  box-shadow: var(--sh-3);
  border-color: transparent;
}
.feature-ico {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--peach-soft);
  display: grid; place-items: center;
  color: var(--terracotta);
  margin-bottom: 18px;
  position: relative;
}
.feature-ico::after {
  content: "";
  position: absolute;
  width: 60%; height: 60%;
  background: var(--peach);
  border-radius: 12px;
  bottom: -8px; right: -8px;
  z-index: -1;
  opacity: .55;
}
.feature--lav .feature-ico {
  background: var(--lavender-soft);
  color: var(--lavender);
}
.feature--lav .feature-ico::after {
  background: var(--lavender);
  opacity: .25;
}
.feature--deep .feature-ico {
  background: #FFE2D7;
  color: var(--terracotta-deep);
}
.feature--deep .feature-ico::after {
  background: var(--terracotta);
  opacity: .3;
}
.feature h4 {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: -.01em;
  margin: 0 0 6px;
  line-height: 1.15;
}
.feature p {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.55;
  margin: 0;
}

/* ---------- Destination cards ---------- */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dest-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-2);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
}
.dest-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-3);
}
.dest-img {
  aspect-ratio: 4 / 3.4;
  position: relative;
  overflow: hidden;
}
.dest-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,.92);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--terracotta-deep);
}
.dest-tag--lavender {
  background: var(--lavender);
  color: white;
}
.dest-heart {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(6px);
  display: grid; place-items: center;
  color: var(--terracotta);
  border: none;
  cursor: pointer;
}
.dest-body { padding: 20px 22px 24px; }
.dest-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.dest-name {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -.01em;
  line-height: 1;
  margin: 0;
}
.dest-price {
  font-family: var(--sans);
  font-weight: 700;
  color: var(--terracotta);
  font-size: 16px;
}
.dest-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 600;
}
.dest-rating .star { color: var(--terracotta); }
.dest-rating .reviews {
  color: var(--ink-4);
  font-weight: 400;
  margin-left: 4px;
}
.dest-meta {
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 12px;
}
.dest-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Photo placeholders ---------- */
.photo-ph {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.18) 0 14px, transparent 14px 28px),
    linear-gradient(135deg, var(--peach), var(--terracotta));
  display: grid; place-items: center;
  color: rgba(138,43,14,.7);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase;
  text-align: center;
}
.photo-ph--lav {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.18) 0 14px, transparent 14px 28px),
    linear-gradient(135deg, var(--lavender), #6E5C77);
  color: rgba(255,255,255,.85);
}
.photo-ph--soft {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.18) 0 14px, transparent 14px 28px),
    linear-gradient(135deg, #FFE9D4, #C8B6CC);
  color: rgba(31,26,28,.55);
}

/* ---------- Step sequence ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.step {
  display: flex;
  gap: 18px;
  padding: 18px 0;
}
.step + .step { border-top: 1px dashed var(--line); }
.step-ico {
  flex: 0 0 56px;
  height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  color: white;
}
.step--1 .step-ico { background: var(--warning); }
.step--2 .step-ico { background: var(--terracotta); }
.step--3 .step-ico { background: var(--lavender); }
.step-body h5 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  margin: 4px 0 4px;
  color: var(--ink);
}
.step-body p {
  margin: 0;
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.5;
}

/* itinerary card */
.itinerary-wrap { position: relative; }
.itinerary {
  background: var(--paper);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3);
  padding: 18px;
  max-width: 340px;
  margin-left: auto;
}
.itinerary-photo {
  aspect-ratio: 5 / 3;
  border-radius: var(--r-md);
  overflow: hidden;
}
.itinerary-body { padding: 16px 4px 4px; }
.itinerary h4 {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -.01em;
  margin: 0 0 4px;
}
.itinerary-meta {
  font-size: 13px;
  color: var(--ink-3);
}
.itinerary-icons {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.itinerary-icons span {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid; place-items: center;
}
.itinerary-icons .ico--peach { background: var(--peach-soft); color: var(--terracotta); }
.itinerary-icons .ico--lav   { background: var(--lavender-soft); color: var(--lavender); }
.itinerary-icons .ico--deep  { background: #FFE2D7; color: var(--terracotta-deep); }
.itinerary-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-3);
}
.itinerary-foot .heart { color: var(--terracotta); }

.itinerary-mini {
  position: absolute;
  right: -18px;
  bottom: -32px;
  background: var(--paper);
  box-shadow: var(--sh-3);
  border-radius: var(--r-md);
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 200px;
}
.itinerary-mini-thumb {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--peach), var(--terracotta));
}
.itinerary-mini-body { flex: 1; }
.itinerary-mini-eyebrow {
  font-size: 11px;
  color: var(--ink-4);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.itinerary-mini-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.itinerary-mini-bar {
  height: 4px;
  background: var(--lavender-soft);
  border-radius: 2px;
  margin-top: 6px;
  overflow: hidden;
}
.itinerary-mini-bar > span {
  display: block;
  width: 40%;
  height: 100%;
  background: var(--terracotta);
  border-radius: 2px;
}
.itinerary-mini-pct {
  font-size: 11px;
  color: var(--ink-4);
  margin-top: 4px;
}

/* ---------- Testimonial ---------- */
.testimonial {
  background: var(--paper);
  border-radius: var(--r-xl);
  padding: 40px 44px;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: center;
}
.testimonial-portrait {
  width: 220px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.2) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, var(--lavender), #6E5C77);
  position: relative;
  display: grid; place-items: center;
  color: rgba(255,255,255,.8);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  box-shadow: var(--sh-2);
}
.testimonial-portrait::after {
  content: "";
  position: absolute;
  right: -8px; bottom: 18px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--terracotta);
  border: 6px solid var(--paper);
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -.01em;
  margin: 0 0 22px;
  color: var(--ink);
  text-wrap: pretty;
}
.testimonial cite {
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-3);
}
.testimonial cite b {
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
}
.testimonial cite .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
}

/* ---------- Newsletter ---------- */
.newsletter {
  position: relative;
  background: linear-gradient(135deg, var(--peach-soft), var(--lavender-soft));
  border-radius: var(--r-xl);
  padding: 64px 56px;
  text-align: center;
  overflow: hidden;
}
.newsletter::before,
.newsletter::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(138,43,14,.12);
  border-radius: 50%;
}
.newsletter::before {
  width: 380px; height: 380px;
  right: -120px; bottom: -160px;
}
.newsletter::after {
  width: 260px; height: 260px;
  right: -40px; bottom: -100px;
}
.newsletter-pin {
  position: absolute;
  top: 28px; right: 28px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--terracotta);
  color: white;
  display: grid; place-items: center;
  box-shadow: var(--sh-glow);
}
.newsletter h3 {
  font-family: var(--serif);
  font-size: 36px;
  letter-spacing: -.01em;
  line-height: 1.2;
  margin: 0 auto 28px;
  max-width: 22ch;
  color: var(--ink);
  text-wrap: balance;
}
.newsletter-form {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  border-radius: var(--r-pill);
  padding: 8px 8px 8px 24px;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: var(--sh-1);
  position: relative;
  z-index: 1;
}
.newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 14px 12px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
}
.newsletter-form input::placeholder { color: var(--ink-4); }

/* ---------- Footer ---------- */
.footer {
  margin-top: 96px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink-4);
  font-size: 13px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  color: var(--ink-3);
  text-decoration: none;
}
.footer-links a:hover { color: var(--terracotta); }
.footer-mono {
  margin-top: 4px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
}
