/* ============================================================
   ELEVATE — Main Stylesheet
   Brand palette: warm stone, deep slate, soft sage, cream
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #F6F3EE;
  --stone-100:  #EDE8DF;
  --stone-200:  #D9D1C4;
  --stone-300:  #C8BFB3;
  --stone-400:  #B0A494;
  --stone-600:  #7A6F63;
  --slate-800:  #2A2925;
  --slate-900:  #1C1B18;
  --sage:       #8A9E8C;
  --sage-light: #C4D2C5;
  --gold:       #C9A96E;
  --gold-light: #E8D5AD;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;

  --max-w: 1160px;
  --nav-h: 72px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--cream);
  color: var(--slate-800);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

::selection { background: var(--gold-light); color: var(--slate-900); }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ---------- TYPOGRAPHY ---------- */
.section-title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.15;
  color: var(--slate-900);
  letter-spacing: -0.01em;
}
.section-title em {
  font-style: italic;
  color: var(--stone-600);
}

.label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone-400);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--stone-600);
  max-width: 480px;
  margin-top: 0.75rem;
}

p {
  font-size: 1rem;
  color: var(--stone-600);
  line-height: 1.75;
}

/* ---------- LAYOUT ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  margin-bottom: 4rem;
}
.section-header--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-header--center .section-sub { text-align: center; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 1.8rem;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
}

.btn--primary {
  background: var(--slate-900);
  color: var(--cream);
  border-color: var(--slate-900);
}
.btn--primary:hover {
  background: var(--slate-800);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(26,25,22,0.18);
}

.btn--ghost {
  background: transparent;
  color: var(--slate-900);
  border-color: var(--stone-400);
}
.btn--ghost:hover {
  border-color: var(--slate-900);
  transform: translateY(-1px);
}

.btn--large {
  padding: 1.1rem 2.4rem;
  font-size: 0.9rem;
}

/* ---------- NAV (removed by user) ---------- */

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 2rem 6rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--cream) 0%, var(--stone-100) 50%, #E8E0D5 100%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(138,158,140,0.18) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: orbFloat1 12s ease-in-out infinite;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,169,110,0.12) 0%, transparent 70%);
  bottom: 100px; left: -80px;
  animation: orbFloat2 15s ease-in-out infinite;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(176,164,148,0.14) 0%, transparent 70%);
  top: 40%; right: 20%;
  animation: orbFloat1 18s ease-in-out infinite reverse;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 30px) scale(0.95); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(40px, -40px) scale(1.08); }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-400);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.2s forwards;
}

.hero__eyebrow .dot {
  width: 5px; height: 5px;
  background: var(--sage);
  border-radius: 50%;
  display: inline-block;
}

.hero__headline {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--slate-900);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.4s forwards;
}
.hero__headline em {
  font-style: italic;
  color: var(--stone-600);
}

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--stone-600);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.6s forwards;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.8s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone-400);
  opacity: 0;
  animation: fadeIn 1.2s ease 1.2s forwards;
}
.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--stone-400), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ---------- WHAT IS ---------- */
.what-is {
  padding: 8rem 0;
}

.what-is__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.what-is__visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.what-is__card {
  background: var(--slate-900);
  border-radius: 4px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.card-pulse {
  width: 120px; height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(246,243,238,0.3);
  position: relative;
}
.card-pulse::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(138,158,140,0.08);
  animation: pulse 3s ease-in-out infinite;
}
.card-pulse svg { width: 100%; height: 100%; }

@keyframes pulse {
  0%, 100% { transform: scale(0.9); opacity: 0.5; }
  50%       { transform: scale(1.1); opacity: 1; }
}

.what-is__card-label {
  color: var(--stone-400);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.6;
  max-width: 200px;
}
.what-is__card-label em {
  font-style: normal;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.what-is__stat-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--stone-100);
  border-radius: 4px;
  padding: 1.5rem 2rem;
}

.stat { flex: 1; text-align: center; }
.stat__num {
  display: block;
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--slate-900);
  line-height: 1;
}
.stat__num em {
  font-style: normal;
  font-size: 1rem;
  color: var(--stone-400);
}
.stat__label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--stone-400);
  margin-top: 0.4rem;
  line-height: 1.4;
}
.stat__divider {
  width: 1px;
  height: 40px;
  background: var(--stone-200);
}

.what-is__text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.what-is__text .section-title { margin-bottom: 1.5rem; }
.what-is__text p { margin-bottom: 1rem; }

.what-is__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.tag {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--stone-200);
  border-radius: 2px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--stone-600);
  background: transparent;
  transition: all 0.25s ease;
}
.tag:hover {
  border-color: var(--slate-900);
  color: var(--slate-900);
}

/* ---------- HOW IT WORKS ---------- */
.how-it-works {
  padding: 8rem 0;
  background: var(--slate-900);
}

.how-it-works .section-header { margin-bottom: 5rem; }
.how-it-works .label { color: var(--stone-600); }
.how-it-works .section-title { color: var(--cream); }
.how-it-works .section-title em { color: var(--stone-400); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.step {
  position: relative;
  padding: 2.5rem;
  border-left: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease;
}
.step:first-child { border-left: none; }
.step:hover { background: rgba(255,255,255,0.02); }

.step::before {
  content: attr(data-step);
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.04);
  line-height: 1;
}

.step__icon {
  width: 48px; height: 48px;
  color: var(--stone-400);
  margin-bottom: 1.5rem;
}
.step__icon svg { width: 100%; height: 100%; }

.step__content h3 {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.step__content p {
  color: var(--stone-400);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.step__details {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.step__details li {
  font-size: 0.8rem;
  color: var(--stone-600);
  padding-left: 1rem;
  position: relative;
  letter-spacing: 0.02em;
}
.step__details li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-size: 0.65rem;
  top: 0.05em;
}

/* ---------- OFFERINGS ---------- */
.offerings {
  padding: 8rem 0;
  background: var(--stone-100);
}

.offerings__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.offering {
  background: var(--cream);
  border-radius: 4px;
  padding: 2.5rem;
  position: relative;
  border: 1px solid var(--stone-200);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.offering:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(26,25,22,0.08);
}

.offering--featured {
  background: var(--slate-900);
  border-color: transparent;
}
/* see below, after .offering h3 */
.offering--featured p  { color: var(--stone-400); }

.offering__badge {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--slate-900);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.8rem;
  border-radius: 2px;
  white-space: nowrap;
}

.offering__tag {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone-400);
  margin-bottom: 1.5rem;
}
.offering--featured .offering__tag { color: var(--stone-600); }

.offering__icon {
  width: 40px; height: 40px;
  color: var(--stone-400);
  margin-bottom: 1.25rem;
}
.offering--featured .offering__icon { color: var(--stone-600); }

.offering h3 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--slate-900);
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.offering--featured h3 { color: #EDE8DF; }

.offering__alt-names {
  font-size: 0.68rem;
  color: var(--stone-400);
  letter-spacing: 0.03em;
  font-style: italic;
  margin-bottom: 0.85rem;
  line-height: 1.5;
}
.offering--featured .offering__alt-names { color: var(--stone-600); }

.offering p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.offering__includes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.75rem;
}
.offering__includes span {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone-600);
  border: 1px solid var(--stone-200);
  padding: 0.2rem 0.55rem;
  border-radius: 2px;
}
.offering--featured .offering__includes span {
  border-color: rgba(255,255,255,0.1);
  color: var(--stone-400);
}

/* offering__cta removed */

/* ---------- WHY US ---------- */
.why-us {
  padding: 8rem 0;
}

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.why-us__text .section-title { margin-bottom: 1.25rem; }
.why-us__text p { max-width: 360px; }

.why-us__features {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--stone-200);
}
.feature:last-child { border-bottom: none; padding-bottom: 0; }

.feature__icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--stone-100);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  margin-top: 2px;
}
.feature__icon svg { width: 20px; height: 20px; }

.feature h4 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--slate-900);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}
.feature p {
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ---------- WHO IT'S FOR ---------- */
.who-its-for {
  padding: 8rem 0;
  background: var(--stone-100);
}

.personas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.persona {
  background: var(--cream);
  border-radius: 4px;
  padding: 2rem;
  border: 1px solid var(--stone-200);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.persona:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(26,25,22,0.06);
}

.persona__icon {
  width: 48px; height: 48px;
  color: var(--stone-400);
  margin-bottom: 1.25rem;
}
.persona__icon svg { width: 100%; height: 100%; }

.persona h4 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--slate-900);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.persona p { font-size: 0.88rem; line-height: 1.6; }

/* pullquote section removed */

/* ---------- LOCATIONS MAP ---------- */
.locations {
  padding: 8rem 0;
  background: var(--slate-900);
  overflow: hidden;
}

.locations__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.locations__intro .label { color: var(--stone-600); }
.locations__intro .section-title { color: var(--cream); margin-bottom: 0.75rem; }
.locations__intro .section-title em { color: var(--stone-400); }
.locations__intro p { color: var(--stone-600); max-width: 420px; font-size: 0.95rem; }

/* counter removed */

/* Region filters */
.region-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.region-btn {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-600);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  padding: 0.45rem 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
}
.region-btn:hover { color: var(--stone-400); border-color: rgba(255,255,255,0.15); }
.region-btn.active {
  color: var(--cream);
  border-color: var(--stone-400);
  background: rgba(255,255,255,0.04);
}

/* Map */
.map-wrap {
  position: relative;
  border-radius: 4px;
  overflow: visible;
  margin-bottom: 1.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
}

.map-container {
  position: relative;
  width: 100%;
}

.world-map {
  width: 100%;
  display: block;
}
.world-map .country {
  fill: rgba(255,255,255,0.07);
  stroke: none;
  transition: fill 0.25s ease;
}
.world-map .country:hover {
  fill: rgba(255,255,255,0.11);
}
.world-map .country-border {
  fill: none;
  stroke: rgba(255,255,255,0.06);
  stroke-width: 0.4px;
}
.world-map .graticule {
  fill: none;
  stroke: rgba(255,255,255,0.03);
  stroke-width: 0.4px;
}

/* Pins */
#pinsLayer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s ease;
  pointer-events: auto;
}
.map-pin.dimmed { opacity: 0.15; pointer-events: none; }

.pin-dot {
  width: 10px;
  height: 10px;
  background: var(--stone-400);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.25s ease;
  position: relative;
}
.pin-dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(176,164,148,0.15);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.map-pin:hover .pin-dot,
.map-pin.active .pin-dot {
  background: var(--gold);
  border-color: var(--gold-light);
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(201,169,110,0.4);
}
.map-pin:hover .pin-dot::before,
.map-pin.active .pin-dot::before { opacity: 1; }

/* Tooltip */
.pin-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--slate-900);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  padding: 0.6rem 0.85rem;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateX(-50%) translateY(4px);
  min-width: 160px;
}
.map-pin:hover .pin-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.pin-tooltip strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.2rem;
}
.pin-tooltip span {
  display: block;
  font-size: 0.68rem;
  color: var(--stone-600);
  letter-spacing: 0.03em;
}
.pin-count {
  color: var(--sage) !important;
  margin-top: 0.2rem;
}

/* Interest panel */
.interest-panel {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 1.5rem 2rem;
}
.interest-panel__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.interest-selected {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
  min-width: 200px;
}
.interest-airport-code {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  min-width: 48px;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}
.interest-airport-code.selected { opacity: 1; color: var(--gold); }
.interest-airport-name {
  display: block;
  font-size: 0.85rem;
  color: var(--stone-400);
  font-weight: 400;
  margin-bottom: 0.15rem;
}
.interest-airport-sub {
  display: block;
  font-size: 0.72rem;
  color: var(--stone-600);
}

.interest-form {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}
.interest-form__fields {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.interest-form input[type="email"],
.interest-form input[type="text"] {
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--cream);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 0.7rem 1rem;
  outline: none;
  width: 260px;
  transition: border-color 0.25s ease;
}
.interest-form input[type="email"]::placeholder,
.interest-form input[type="text"]::placeholder { color: var(--stone-600); }
.interest-form input[type="email"]:focus,
.interest-form input[type="text"]:focus { border-color: var(--stone-400); }
.interest-form .btn--primary {
  background: var(--cream);
  color: var(--slate-900);
  border-color: var(--cream);
  white-space: nowrap;
}
.interest-form .btn--primary:hover { background: var(--stone-100); border-color: var(--stone-100); }
.interest-form .btn--primary:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.interest-success {
  display: none;
  align-items: center;
  gap: 0.75rem;
  color: var(--sage);
  font-size: 0.85rem;
}
.interest-success.visible { display: flex; }
.interest-success svg { width: 18px; height: 18px; flex-shrink: 0; }
.interest-success span { color: var(--stone-400); }
.interest-success strong { color: var(--cream); font-weight: 400; }

/* legacy terminal card styles kept for reference — now unused */
.terminal-value--now {
  color: var(--sage);
  letter-spacing: 0.05em;
}

.terminal-card__btn {
  display: block;
  text-align: center;
  margin: 0 1.75rem 1.75rem;
  padding: 0.9rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-400);
  transition: all 0.3s ease;
}
.terminal-card__btn:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.2);
  color: var(--cream);
}

/* ---------- CAREERS ---------- */
.modal--careers {
  max-width: 720px;
}

/* Job card */
.careers__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}
.careers__loading {
  font-size: 0.82rem;
  color: var(--stone-400);
  font-style: italic;
  padding: 1rem 0;
}
.careers__empty {
  font-size: 0.85rem;
  color: var(--stone-400);
  padding: 1rem 0;
}

.job-card {
  border: 1px solid var(--stone-200);
  border-radius: 3px;
  padding: 1.5rem 1.75rem;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}
.job-card:hover {
  border-color: var(--slate-900);
  box-shadow: 0 6px 24px rgba(26,25,22,0.07);
  transform: translateY(-1px);
}
.job-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.job-card__title {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--slate-900);
  letter-spacing: -0.01em;
}
.job-card__type {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone-400);
  border: 1px solid var(--stone-200);
  border-radius: 2px;
  padding: 0.2rem 0.6rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.job-card__location {
  font-size: 0.78rem;
  color: var(--stone-400);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}
.job-card__location svg {
  width: 11px; height: 11px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.25rem;
  opacity: 0.5;
}
.job-card__tagline {
  font-size: 0.88rem;
  color: var(--stone-600);
  line-height: 1.6;
  font-style: italic;
}
.job-card__arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-400);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s ease;
}
.job-card:hover .job-card__arrow { color: var(--slate-900); }
.job-card__arrow svg { width: 12px; height: 12px; }

/* Detail view */
.careers__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-400);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-bottom: 1.75rem;
  transition: color 0.2s ease;
}
.careers__back:hover { color: var(--slate-900); }
.careers__back svg { width: 14px; height: 14px; }

.careers__detail-title {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--slate-900);
  letter-spacing: -0.01em;
  margin-bottom: 0.3rem;
}
.careers__detail-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--stone-200);
}
.careers__detail-meta span {
  font-size: 0.75rem;
  color: var(--stone-400);
  letter-spacing: 0.06em;
}
.careers__detail-meta .meta-pill {
  border: 1px solid var(--stone-200);
  border-radius: 2px;
  padding: 0.2rem 0.65rem;
}

.careers__section { margin-bottom: 1.75rem; }
.careers__section-title {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-400);
  margin-bottom: 0.75rem;
}
.careers__section p {
  font-size: 0.9rem;
  color: var(--stone-600);
  line-height: 1.75;
}
.careers__section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.careers__section ul li {
  font-size: 0.88rem;
  color: var(--stone-600);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.6;
}
.careers__section ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-size: 0.65rem;
  top: 0.08em;
}

.careers__not-ready {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--stone-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.careers__not-ready p {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  color: var(--stone-600);
}
.careers__apply-btn {
  white-space: nowrap;
}

/* Form */
.careers__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ---------- MODAL ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(28, 27, 24, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: var(--cream);
  border-radius: 4px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 3rem;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.4s var(--ease-out);
  scrollbar-width: thin;
  scrollbar-color: var(--stone-200) transparent;
}
.modal-overlay.open .modal {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 32px;
  height: 32px;
  background: none;
  border: 1px solid var(--stone-200);
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone-400);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.modal__close:hover {
  border-color: var(--slate-900);
  color: var(--slate-900);
}
.modal__close svg { width: 14px; height: 14px; }

.modal__header {
  margin-bottom: 2rem;
}
.modal__header .label { margin-bottom: 0.75rem; }
.modal__title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.15;
  color: var(--slate-900);
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.modal__title em { font-style: italic; color: var(--stone-600); }
.modal__header p { font-size: 0.9rem; color: var(--stone-600); line-height: 1.65; }

/* ---------- PARTNERSHIPS FORM ---------- */
.partnerships__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone-600);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--slate-900);
  background: var(--cream);
  border: 1px solid var(--stone-200);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--stone-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--stone-600);
  box-shadow: 0 0 0 3px rgba(122,111,99,0.08);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%23B0A494' stroke-width='1' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 10px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option[value=""][disabled] { color: var(--stone-400); }

.form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.65;
}

.form-submit {
  align-self: flex-start;
  margin-top: 0.25rem;
}

.form-note {
  font-size: 0.72rem;
  color: var(--stone-400);
  font-style: italic;
  margin-top: -0.5rem;
}

.form-success {
  display: none;
  align-items: center;
  gap: 0.75rem;
  background: rgba(138,158,140,0.1);
  border: 1px solid rgba(138,158,140,0.3);
  border-radius: 2px;
  padding: 1rem 1.25rem;
}
.form-success.visible { display: flex; }
.form-success svg { width: 20px; height: 20px; color: var(--sage); flex-shrink: 0; }
.form-success p { font-size: 0.85rem; color: var(--stone-600); margin: 0; }

/* ---------- SURVEY ---------- */
.survey-wrap {
  display: none;
  margin-top: 1.5rem;
  animation: fadeUp 0.5s var(--ease-out) forwards;
}
.survey-wrap.visible { display: block; }

.survey {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 2rem 2.5rem;
}

.survey__progress {
  height: 2px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  margin-bottom: 0.6rem;
  overflow: hidden;
}
.survey__progress-bar {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  width: 20%;
  transition: width 0.4s var(--ease-out);
}
.survey__progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75rem;
}
.survey__progress-label span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone-600);
}
.survey__skip {
  background: none;
  border: none;
  font-family: var(--ff-body);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-600);
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 0;
}
.survey__skip:hover { color: var(--stone-400); }

/* Steps */
.survey__step {
  display: none;
  animation: fadeUp 0.4s var(--ease-out) forwards;
}
.survey__step.active { display: block; }

.survey__q {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 0.4rem;
}
.survey__hint {
  font-size: 0.75rem;
  color: var(--stone-600);
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}
.survey__q + .survey__options { margin-top: 1.5rem; }
.survey__q + .survey__hint { margin-top: 0.3rem; }
.survey__hint + .survey__options { margin-top: 0.75rem; }

/* Option buttons */
.survey__options { display: flex; gap: 0.6rem; }
.survey__options--row { flex-wrap: wrap; }
.survey__options--col { flex-direction: column; max-width: 520px; }
.survey__options--wrap { flex-wrap: wrap; margin-bottom: 1.25rem; }

.survey__opt {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--stone-400);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  padding: 0.65rem 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  line-height: 1.4;
}
.survey__opt:hover {
  color: var(--cream);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
}
.survey__opt.selected {
  color: var(--slate-900);
  background: var(--gold-light);
  border-color: var(--gold);
}

/* Experience options */
.survey__opt--experience {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.85rem 1.25rem;
}
.opt-title {
  font-size: 0.9rem;
  color: inherit;
  font-weight: 400;
}
.opt-sub {
  font-size: 0.72rem;
  color: var(--stone-600);
  letter-spacing: 0.04em;
}
.survey__opt--experience.selected .opt-sub { color: var(--stone-600); }

/* Next button */
.survey__next {
  margin-top: 1.25rem;
  background: var(--cream);
  color: var(--slate-900);
  border-color: var(--cream);
}
.survey__next:hover { background: var(--stone-100); border-color: var(--stone-100); }
.survey__next:disabled { opacity: 0.3; cursor: not-allowed; transform: none; box-shadow: none; }

/* Free text */
.survey__textarea {
  width: 100%;
  max-width: 520px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--cream);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  outline: none;
  resize: vertical;
  min-height: 80px;
  line-height: 1.65;
  transition: border-color 0.25s ease;
  display: block;
  margin-top: 1.25rem;
}
.survey__textarea::placeholder { color: var(--stone-600); }
.survey__textarea:focus { border-color: var(--stone-400); }

/* Complete state */
.survey__complete {
  text-align: center;
  padding: 1rem 0;
}
.survey__complete svg {
  width: 44px; height: 44px;
  color: var(--sage);
  margin: 0 auto 1.25rem;
  display: block;
}
.survey__done-title {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.survey__done-sub {
  font-size: 0.88rem;
  color: var(--stone-600);
}

/* ---------- CLOSING CTA ---------- */
.closing-cta {
  position: relative;
  padding: 10rem 0;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(160deg, #2A2925 0%, #1C1B18 100%);
}

.closing-cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.closing-cta__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.closing-cta__orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(138,158,140,0.12) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation: orbFloat2 14s ease-in-out infinite;
}
.closing-cta__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
  bottom: -80px; right: -80px;
  animation: orbFloat1 18s ease-in-out infinite;
}

.closing-cta__content {
  position: relative;
  z-index: 1;
}
.closing-cta__content h2 {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.closing-cta__content h2 em {
  font-style: italic;
  color: var(--stone-400);
}
.closing-cta__content p {
  font-size: 1rem;
  color: var(--stone-600);
  margin-bottom: 2.5rem;
}

.closing-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.closing-cta .btn--primary {
  background: var(--cream);
  color: var(--slate-900);
  border-color: var(--cream);
}
.closing-cta .btn--primary:hover {
  background: var(--stone-100);
  border-color: var(--stone-100);
}
.closing-cta .btn--ghost {
  color: var(--stone-400);
  border-color: rgba(255,255,255,0.15);
}
.closing-cta .btn--ghost:hover {
  border-color: var(--stone-400);
  color: var(--cream);
}

/* ---------- FOOTER BROUGHT WIDGET ---------- */
.footer__col--connect { min-width: 220px; }

.footer__brought {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__brought-label {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--stone-400);
  margin-bottom: 0.3rem;
  line-height: 1.4;
}
.footer__brought-sub {
  font-size: 0.7rem;
  font-style: italic;
  color: var(--stone-600);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.footer__brought-opts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.footer__brought-btn {
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--stone-600);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  padding: 0.35rem 0.7rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}
.footer__brought-btn:hover {
  color: var(--cream);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
}
.footer__brought-btn.selected {
  color: var(--slate-900);
  background: var(--gold-light);
  border-color: var(--gold);
}

/* ---------- INTEREST FORM MODAL ---------- */
.modal--interest {
  max-width: 680px;
}

.interest-full-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Checkbox / radio groups */
.check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 0.5rem;
}
.check-group--col { flex-direction: column; gap: 0.4rem; }
.check-group--wrap { flex-direction: column; gap: 0.4rem; }

.check-opt {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--stone-600);
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1.5;
}
.check-opt:hover { color: var(--slate-900); }
.check-opt input[type="checkbox"],
.check-opt input[type="radio"] {
  width: 14px;
  height: 14px;
  accent-color: var(--slate-900);
  cursor: pointer;
  flex-shrink: 0;
}

.check-opt--other {
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.inline-text {
  font-family: var(--ff-body);
  font-size: 0.82rem;
  color: var(--slate-900);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--stone-200);
  outline: none;
  padding: 0.1rem 0.3rem;
  width: 140px;
  transition: border-color 0.2s ease;
}
.inline-text:focus { border-color: var(--stone-600); }

.form-optional {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone-400);
  margin-left: 0.4rem;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--slate-900);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 4rem 0 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}

.footer__logo {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--cream);
  display: block;
  margin-bottom: 1rem;
}
.footer__brand p {
  font-size: 0.85rem;
  color: var(--stone-600);
  max-width: 280px;
  line-height: 1.65;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer__col h5 {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone-600);
  margin-bottom: 1.25rem;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__col ul li a {
  font-size: 0.82rem;
  color: var(--stone-400);
  transition: color 0.25s ease;
}
.footer__col ul li a:hover { color: var(--cream); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__mission {
  font-size: 0.78rem;
  font-style: italic;
  color: var(--stone-600);
}
.footer__legal {
  font-size: 0.72rem;
  color: var(--stone-600);
  letter-spacing: 0.05em;
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .what-is__grid,
  .why-us__grid,
  .find-us__grid { grid-template-columns: 1fr; gap: 3rem; }

  .what-is__visual { order: -1; }
  .what-is__stat-row { justify-content: center; }

  .personas { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .step { border-left: none; border-top: 1px solid rgba(255,255,255,0.06); }
  .step:first-child { border-top: none; }
  .offerings__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .footer__top { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .hero__headline { font-size: clamp(2.8rem, 11vw, 4rem); }

  .section-title { font-size: clamp(2rem, 7vw, 2.8rem); }

  .what-is { padding: 5rem 0; }
  .how-it-works { padding: 5rem 0; }
  .offerings { padding: 5rem 0; }
  .why-us { padding: 5rem 0; }
  .who-its-for { padding: 5rem 0; }
  .pullquote-section { padding: 5rem 0; }
  .find-us { padding: 5rem 0; }
  .locations { padding: 5rem 0; }
  .locations__header { flex-direction: column; align-items: flex-start; }
  .interest-panel__inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .interest-form input[type="email"] { width: 100%; }
  .pin-tooltip { display: none; }
  .map-pin { transform: translate(-50%, -50%) scale(1.3); }
  .form-row { grid-template-columns: 1fr; }
  .modal { padding: 2rem 1.5rem; }
  .closing-cta { padding: 6rem 0; }

  .personas { grid-template-columns: 1fr; }
  .what-is__stat-row { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .stat__divider { display: none; }

  .footer__links { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }

  .closing-cta__actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .find-us__grid { gap: 2.5rem; }
}

/* ---------- FLOATING TAB ---------- */
.floating-tab {
  position: fixed;
  right: -1px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg) translateX(50%);
  transform-origin: right center;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--slate-900);
  border: 1px solid rgba(255,255,255,0.12);
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  padding: 0.6rem 1.1rem;
  cursor: pointer;
  z-index: 90;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.floating-tab svg {
  flex-shrink: 0;
  transform: rotate(90deg); /* counter-rotate icon so it stays upright */
}
.floating-tab:hover {
  background: var(--slate-800);
  color: var(--gold-light);
  border-color: rgba(201,169,110,0.25);
}
.floating-tab.pulse {
  animation: tabPulse 0.7s var(--ease-out);
}
@keyframes tabPulse {
  0%   { box-shadow: 0 0 0 0 rgba(201,169,110,0); }
  40%  { box-shadow: 0 0 0 8px rgba(201,169,110,0.18); }
  100% { box-shadow: 0 0 0 14px rgba(201,169,110,0); }
}
@media (max-width: 768px) {
  .floating-tab {
    top: auto;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    border-radius: 4px 4px 0 0;
    padding: 0.55rem 1rem;
  }
  .floating-tab svg { transform: none; }
}

/* ---------- MODAL INTRO TEXT ---------- */
.modal__intro-main {
  font-size: 0.95rem;
  color: var(--stone-600);
  line-height: 1.65;
  margin-bottom: 0.4rem;
}
.modal__intro-sub {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--stone-400);
  line-height: 1.65;
}

/* ---------- GENERAL ROLES CARD ---------- */
.job-card--general {
  border-color: var(--stone-200);
  background: linear-gradient(135deg, rgba(138,158,140,0.04) 0%, transparent 60%);
}
.job-card--general .job-card__title {
  color: var(--slate-900);
}

/* Checkbox sub-label */
.check-sub {
  font-size: 0.72rem;
  color: var(--stone-400);
  margin-left: 0.15rem;
  font-style: italic;
}

/* Form micro copy (below field) */
.form-micro {
  font-size: 0.68rem;
  font-style: italic;
  color: var(--stone-400);
  margin-top: 0.2rem;
  line-height: 1.4;
}

/* Ensure anchor in footer connect opens modal */
.footer__col ul li a.open-interest-modal {
  cursor: pointer;
}
.footer__col ul li a.open-interest-modal::after {
  content: ' ↗';
  font-size: 0.7em;
  opacity: 0.5;
}
