/* ============================================================
   FRIENDS WHO SMASH · COUPLES RETREAT
   Editorial · magazine-cover · full-bleed photography
   Black + warm rust + bold condensed sans
   ============================================================ */

:root {
  --black:       #0A0908;
  --black-2:     #15110F;
  --black-3:     #1F1A17;
  --paper:       #FAFAF5;
  --paper-soft:  rgba(250, 250, 245, 0.62);
  --paper-mute:  rgba(250, 250, 245, 0.42);
  --rust:        #C04A1F;
  --rust-soft:   #E07A4F;
  --line:        rgba(250, 250, 245, 0.10);
  --line-strong: rgba(250, 250, 245, 0.22);

  --display: "Big Shoulders Display", "Arial Narrow", Impact, sans-serif;
  --sans:    "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --mono:    "JetBrains Mono", "SF Mono", Menlo, monospace;
}

/* ============ BASE ============ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--paper);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
p { margin: 0 0 1em; }
[id] { scroll-margin-top: 90px; }

a:focus-visible,
button:focus-visible {
  outline: 1px solid var(--rust);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

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

/* ============ TYPE ============ */
.display {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 0.4em;
  color: var(--paper);
}
.display--xl { font-size: clamp(3rem, 8vw, 6.5rem); }
.accent { color: var(--rust); }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--rust);
  margin: 0 0 1.6em;
  display: block;
}
.eyebrow--top { margin-bottom: 30px; }

.kicker {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--paper-mute);
  margin: 0 0 12px;
  display: block;
}

.lede {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: var(--paper-soft);
  max-width: 40em;
  margin: 0 0 2em;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s, border-color 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--accent { background: var(--rust); color: var(--paper); border-color: var(--rust); }
.btn--accent:hover { background: var(--rust-soft); border-color: var(--rust-soft); }
.btn--ghost { background: transparent; color: var(--paper); border-color: var(--paper); }
.btn--ghost:hover { background: var(--paper); color: var(--black); }
.btn--sm { padding: 10px 18px; font-size: 0.68rem; }
.btn--lg { padding: 20px 36px; font-size: 0.82rem; }

/* ============ ALERT BAR ============ */
.alert-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 24px;
  background: var(--rust);
  color: var(--paper);
  text-align: center;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  transition: background 0.2s;
  position: relative;
  z-index: 60;
}
.alert-bar:hover { background: var(--rust-soft); }
.alert-bar__msg { font-weight: 400; }
.alert-bar__msg strong { font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.alert-bar__cta {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--paper);
  white-space: nowrap;
}
.alert-bar__pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 0 0 0 rgba(250,250,245,0.7);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(250,250,245,0.6); }
  70% { box-shadow: 0 0 0 12px rgba(250,250,245,0); }
  100% { box-shadow: 0 0 0 0 rgba(250,250,245,0); }
}
@media (max-width: 700px) {
  .alert-bar { font-size: 0.72rem; gap: 10px; padding: 9px 16px; }
  .alert-bar__cta { display: none; }
}

/* Date pill alert variant — used in the hero alongside the date */
.date-pill--alert {
  background: var(--rust);
  border-color: var(--rust);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.date-pill--alert .alert-bar__pulse {
  width: 7px;
  height: 7px;
  background: var(--paper);
}

/* Tier badge alert variant */
.tier__badge--alert {
  background: var(--rust);
  color: var(--paper);
  font-weight: 700;
  letter-spacing: 0.24em;
  padding: 8px 16px;
}

/* ============ URGENCY SECTION ============ */
.urgency {
  background: var(--rust);
  color: var(--paper);
  padding: 130px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.urgency::before,
.urgency::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--black);
}
.urgency::before { top: 0; }
.urgency::after { bottom: 0; }
.urgency__inner {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.urgency .eyebrow { color: var(--black); letter-spacing: 0.28em; margin-bottom: 24px; }
.urgency__display {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 0.88;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0 0 30px;
  color: var(--paper);
}
.urgency__display .accent { color: var(--black); }
.urgency__number {
  display: inline-block;
  font-size: 1.4em;
  line-height: 0.8;
  color: var(--black);
  padding: 0 6px;
}
.urgency__sub {
  font-family: var(--sans);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.5;
  max-width: 32em;
  margin: 0 0 36px;
  color: var(--paper);
}
.urgency__fineprint {
  margin: 14px 0 0;
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(10, 9, 8, 0.7);
}
.urgency .btn--accent {
  background: var(--black);
  border-color: var(--black);
  color: var(--paper);
  font-size: 0.9rem;
  padding: 22px 44px;
}
.urgency .btn--accent:hover { background: var(--paper); color: var(--rust); border-color: var(--paper); }

/* Live spots counter — big number for visceral impact */
.spots-counter {
  margin: 0 0 22px;
  text-align: center;
}
.spots-counter__num {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.9;
  letter-spacing: 0.005em;
  color: var(--black);
  margin: 0;
  display: inline-block;
  padding: 4px 24px;
  background: var(--paper);
  border: 3px solid var(--black);
}
.spots-counter__sub {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--black);
  margin: 14px 0 0;
}

/* Spots indicator — five circles, filled when claimed */
.spots-row {
  display: flex;
  gap: 18px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}
.spot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--paper);
  background: transparent;
  transition: background 0.2s, transform 0.2s;
}
.spot[data-state="claimed"] {
  background: var(--paper);
  position: relative;
}
.spot[data-state="claimed"]::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rust);
  font-size: 14px;
  font-weight: 900;
}
.spot[data-state="open"] {
  animation: spot-pulse 2.4s ease-in-out infinite;
}
@keyframes spot-pulse {
  0%, 100% { transform: scale(1); border-color: var(--paper); }
  50%      { transform: scale(1.12); border-color: rgba(250, 250, 245, 0.5); }
}
.urgency__eyebrow {
  background: var(--black);
  color: var(--paper) !important;
  padding: 9px 18px;
  display: inline-block;
  margin-bottom: 28px !important;
  font-weight: 700 !important;
}

/* Larger date-pill variant for the hero "Only 5 Spots" callout */
.date-pill--lg {
  font-size: 0.82rem !important;
  padding: 14px 24px !important;
  letter-spacing: 0.18em !important;
}
.date-pill--lg strong {
  color: var(--paper);
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 1.05em;
  margin-right: 4px;
}

@media (max-width: 700px) {
  .urgency { padding: 90px 0; }
  .urgency__display { font-size: clamp(2.4rem, 12vw, 4.2rem); }
  .spots-row { gap: 12px; }
  .spot { width: 18px; height: 18px; }
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 9, 8, 0.85);
  backdrop-filter: saturate(1.1) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}
.nav__brand-mark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--paper);
}
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--paper-soft);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--rust); }

@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__inner { gap: 16px; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px 0 50px;
  overflow: hidden;
  background: var(--black);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,9,8,0.7) 0%, rgba(10,9,8,0.45) 30%, rgba(10,9,8,0.45) 60%, rgba(10,9,8,0.95) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  flex: 1;
}

.eyebrow--top {
  font-size: 0.72rem;
  color: var(--paper-soft);
  letter-spacing: 0.32em;
}

.wordmark {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(3.2rem, 13vw, 11rem);
  line-height: 0.85;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--paper);
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.wordmark__row { display: block; }
.wordmark__row--accent { color: var(--rust); font-style: normal; }
.wordmark__sub {
  font-family: var(--mono);
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--paper-soft);
  margin-top: 22px;
  line-height: 1;
}

.hero__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-top: auto;
}
.hero__tag {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--paper);
  margin: 0;
}
.date-pill {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--paper);
  border: 1px solid var(--paper);
  padding: 10px 18px;
  border-radius: 999px;
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
}
.hero__credit {
  position: absolute;
  bottom: 20px;
  right: 32px;
  margin: 0;
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--paper-mute);
  z-index: 1;
}

@media (max-width: 820px) {
  .hero { padding: 80px 0 40px; }
  .wordmark { font-size: clamp(2.6rem, 16vw, 5rem); }
  .hero__bottom { gap: 18px; }
}

/* ============ SECTIONS ============ */
.section {
  padding: 140px 0;
  background: var(--black);
  position: relative;
}
.section--alt { background: var(--black-2); }
.section__head {
  max-width: 760px;
  margin-bottom: 80px;
}

/* ============ THREE COLUMN ============ */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--line-strong);
}
.three-col article p:last-child { color: var(--paper-soft); margin: 0; }

@media (max-width: 900px) {
  .three-col { grid-template-columns: 1fr; gap: 40px; }
}

/* ============ HOSTS ============ */
.hosts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--line-strong);
}
.host {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.host__photo {
  margin: 0;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--black);
}
.host__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.02);
}
/* Host portraits — favor the face area when cropping to the 3:4 frame */
.host__photo img { object-position: 50% 22%; }
.host__body { display: flex; flex-direction: column; gap: 8px; }
.host__name {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 6px;
  color: var(--paper);
}
.host__body p:last-child { color: var(--paper-soft); margin: 0; }

.hosts__feature {
  margin: 90px 0 0;
  width: 100%;
}
.hosts__feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 50% 12%; /* favor the upper portion so faces stay in frame */
  display: block;
}
@media (max-width: 900px) {
  /* On narrower screens, give the photo more vertical room so faces aren't cropped */
  .hosts__feature img { aspect-ratio: 4 / 5; object-position: 50% 15%; }
}

@media (max-width: 900px) {
  .hosts { grid-template-columns: 1fr; gap: 50px; }
  .hosts__feature { margin-top: 60px; }
}

/* ============ FULL-BLEED IMAGE ============ */
.bleed {
  margin: 0;
  width: 100%;
  background: var(--black);
  aspect-ratio: 16 / 10;        /* Taller frame so portrait-orientation photos keep faces in view */
  max-height: 88vh;
  overflow: hidden;
}
.bleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;     /* Bias toward the top of the frame — both faces are in the upper portion */
  display: block;
}

/* ============ TIMELINE (ITINERARY) ============ */
.timeline {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-strong);
}
.timeline__day {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s;
}
.timeline__day:hover { background: rgba(192, 74, 31, 0.04); }
.timeline__meta { display: flex; flex-direction: column; gap: 22px; }
.timeline__num {
  font-family: var(--display);
  font-weight: 900;
  font-size: 4.4rem;
  line-height: 0.9;
  color: var(--rust);
}
.timeline__body h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 22px;
  color: var(--paper);
}
.timeline__body ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 40px;
}
.timeline__body ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--paper-soft);
  font-size: 1rem;
}

@media (max-width: 900px) {
  .timeline__day { grid-template-columns: 1fr; gap: 18px; padding: 36px 0; }
  .timeline__body ul { grid-template-columns: 1fr; }
}

/* ============ PRICING TIERS ============ */
.tiers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--line-strong);
}
.tier__sub {
  display: block;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  margin-top: 6px;
}
.tier--featured .tier__sub { color: var(--rust-soft); }
.tier {
  padding: 40px 30px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  background: transparent;
  transition: background 0.25s;
}
.tier:last-child { border-right: none; }
.tier:hover { background: var(--black-3); }
.tier--featured {
  background: var(--black-3);
  border: 1px solid var(--rust);
  border-right: 1px solid var(--rust);
}
.tier__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: var(--rust);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  padding: 7px 14px;
  white-space: nowrap;
}
.tier .kicker { margin: 0; }
.tier__name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
  color: var(--paper);
}
.tier__price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: 0.005em;
  color: var(--paper);
  margin: 8px 0 4px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.tier--featured .tier__price { color: var(--rust); font-size: 3rem; }
.tier__price span {
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--paper-mute);
}
.tier__desc {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--paper-soft);
  margin: 0;
}
.tier__list { display: flex; flex-direction: column; }
.tier__list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--paper-soft);
  font-size: 0.9rem;
}
.tier__list li:last-child { border-bottom: none; }
.tier__list--muted { color: var(--paper-mute) !important; font-style: italic; }

.footnote {
  margin-top: 40px;
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--paper-mute);
  text-align: center;
}

@media (max-width: 1280px) {
  .tiers { grid-template-columns: repeat(2, 1fr); }
  .tier { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .tier:nth-child(2n) { border-right: none; }
  /* Fifth tier sits alone on its row — make it span both columns */
  .tier:nth-child(5) { grid-column: 1 / -1; border-right: none; border-bottom: none; }
}
@media (max-width: 600px) {
  .tiers { grid-template-columns: 1fr; }
  .tier { border-right: none; border-bottom: 1px solid var(--line); }
  .tier:nth-child(5) { grid-column: auto; }
  .tier:last-child { border-bottom: none; }
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
.testimonial { margin: 0; display: flex; flex-direction: column; gap: 18px; }
.testimonial__video {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  background: var(--black);
  overflow: hidden;
  border: 1px solid var(--line);
}
.testimonial__video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: var(--black);
}
.testimonial figcaption { display: flex; flex-direction: column; gap: 4px; }
.testimonial__name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--paper);
}

@media (max-width: 900px) {
  .testimonials { grid-template-columns: 1fr; gap: 40px; }
}

/* ============ APPLY ============ */
.apply {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  background: var(--black);
}
.apply__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.apply__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(0.4);
}
.apply__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,9,8,0.85) 0%, rgba(10,9,8,0.92) 100%);
}
.apply__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
}
.apply .hero__cta { justify-content: flex-start; margin-top: 28px; }

@media (max-width: 900px) {
  .apply { padding: 90px 0; }
}

/* ============ FOOTER ============ */
.footer {
  padding: 70px 0 24px;
  background: var(--black);
  border-top: 1px solid var(--line);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer__mark {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 4px;
  color: var(--paper);
}
.footer__col { display: flex; flex-direction: column; gap: 6px; }
.footer__col a {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--paper);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  width: fit-content;
  transition: border-color 0.2s;
}
.footer__col a:hover { border-bottom-color: var(--rust); }
.footer__base {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
}
.footer__base .kicker { margin: 0; }

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__base { flex-direction: column; gap: 8px; }
}
