/* ============================================================
   REAL LIFE EVENTS — Landing Page Stylesheet
   Temporary single-page site (see /full-site for the full,
   multi-page build). Tokens and base primitives below are
   copied verbatim from /full-site/styles.css — do not add any
   color, size, spacing, radius, or shadow that is not defined
   in the :root block below.
   ============================================================ */


/* ============================================================
   0. DESIGN SYSTEM TOKENS
   ============================================================ */
:root {
  /* Colors */
  --rle-orange:          #F36B21;
  --rle-orange-hover:    #D95312;
  --rle-orange-soft:     #FFF0E5;
  --rle-cream:           #FBF7F1;
  --rle-warm-white:      #FFFDFC;
  --rle-sand:            #F1E9DF;
  --rle-stone:           #E7DED2;
  --rle-ink:             #1C1C1A;
  --rle-charcoal:        #292A28;
  --rle-deep-teal:       #123E45;
  --rle-deep-teal-hover: #0B3036;
  --rle-body:            #323331;
  --rle-muted:           #6C6D68;
  --rle-border:          #DDD5CB;
  --rle-white:           #FFFFFF;
  --rle-success:         #2E7D5B;

  /* Type scale — fluid */
  --text-xs:   clamp(0.75rem,  0.72rem + 0.12vw, 0.82rem);
  --text-sm:   clamp(0.875rem, 0.84rem + 0.15vw, 0.95rem);
  --text-base: clamp(1rem,     0.96rem + 0.18vw, 1.1rem);
  --text-lg:   clamp(1.125rem, 1.04rem + 0.35vw, 1.3rem);
  --text-xl:   clamp(1.35rem,  1.18rem + 0.65vw, 1.7rem);
  --h4:        clamp(1.25rem,  1.06rem + 0.75vw, 1.75rem);
  --h3:        clamp(1.65rem,  1.3rem  + 1.1vw,  2.3rem);
  --h2:        clamp(2.25rem,  1.65rem + 2vw,    3.75rem);
  --h1:        clamp(3rem,     2rem    + 3.4vw,  5.8rem);

  /* Spacing — 8px base */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  24px;
  --space-6:  32px;
  --space-7:  48px;
  --space-8:  64px;
  --space-9:  80px;
  --space-10: 96px;
  --space-11: 120px;
  --space-12: 144px;

  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-card:  0 8px 30px  rgba(34, 30, 25, 0.08);
  --shadow-hover: 0 16px 42px rgba(34, 30, 25, 0.14);

  /* Nav height — used to offset hero padding */
  --nav-height: 88px;
}


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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--rle-cream);
  color: var(--rle-body);
  font-family: "Inter", sans-serif;
  font-size: var(--text-base);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  color: var(--rle-ink);
}

h1 {
  font-size: var(--h1);
  line-height: 0.93;
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--h2);
  line-height: 1;
  letter-spacing: -0.015em;
}

h3 {
  font-size: var(--h3);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

h4 {
  font-size: var(--h4);
  line-height: 1.1;
}

p {
  max-width: 65ch;
}

a {
  color: inherit;
  text-decoration: none;
}

img, video {
  display: block;
  max-width: 100%;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--rle-orange);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}


/* ============================================================
   2. LAYOUT UTILITIES
   ============================================================ */
.page-container {
  width: min(100% - 48px, 1240px);
  margin-inline: auto;
}

@media (min-width: 1440px) {
  .page-container {
    width: min(100% - 96px, 1320px);
  }
}

@media (max-width: 767px) {
  .page-container {
    width: min(100% - 32px, 100%);
  }
}

.section {
  padding-block: clamp(4rem, 8vw, 8.5rem);
}

.section--compact {
  padding-block: clamp(3rem, 5vw, 5rem);
}


/* ============================================================
   3. SHARED COMPONENTS
   ============================================================ */

/* Eyebrow label */
.eyebrow {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rle-orange);
  margin-bottom: var(--space-3);
}

/* Section intro block */
.section-intro {
  margin-bottom: clamp(var(--space-9), 5vw, var(--space-11));
}

.section-intro--center {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: clamp(var(--space-9), 5vw, var(--space-11));
}

.section-intro p {
  margin-top: var(--space-5);
  font-size: var(--text-lg);
  color: var(--rle-muted);
  max-width: 620px;
}

.section-intro--center p {
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: "Inter", sans-serif;
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 150ms ease, transform 150ms ease, box-shadow 150ms ease, color 150ms ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--rle-orange);
  color: var(--rle-white);
  border: 2px solid transparent;
}

.btn--primary:hover {
  background: var(--rle-orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(243, 107, 33, 0.22);
}

.btn--ghost {
  background: transparent;
  color: var(--rle-white);
  border: 1.5px solid var(--rle-orange);
}

.btn--ghost:hover {
  background: var(--rle-orange-soft);
  color: var(--rle-orange);
  border-color: var(--rle-orange);
  transform: translateY(-1px);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--rle-white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn--ghost-dark:hover {
  border-color: var(--rle-white);
  transform: translateY(-1px);
}

.btn--secondary {
  background: transparent;
  color: var(--rle-orange);
  border: 1.5px solid var(--rle-orange);
}

.btn--secondary:hover {
  background: var(--rle-orange-soft);
  transform: translateY(-1px);
}

/* Arrow link */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--rle-orange);
  text-decoration: none;
  transition: gap 150ms ease, color 150ms ease;
}

.arrow-link:hover {
  gap: var(--space-3);
  color: var(--rle-orange-hover);
}

.arrow-link::after {
  content: "→";
  display: inline-block;
}

.arrow-link--light {
  color: var(--rle-white);
}

.arrow-link--light:hover {
  color: var(--rle-orange);
}


/* ============================================================
   4. SKIP LINK
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-5);
  z-index: 9999;
  padding: var(--space-3) var(--space-5);
  background: var(--rle-orange);
  color: var(--rle-white);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: var(--text-sm);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none;
  transition: top 150ms;
}

.skip-link:focus {
  top: 0;
}


/* ============================================================
   5. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}


/* ============================================================
   6. LANDING PAGE SECTIONS
   Built section by section against Landing_Page_Sections/
   mockups 01–11.
   ============================================================ */

/* ── 01/02. HEADER, NAV & HERO ──────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 220ms ease, box-shadow 220ms ease;
}

/* Transparent on load (hero is dark behind it) */
.site-header--transparent {
  background: transparent;
}

/* Solid after scroll */
.site-header--solid {
  background: var(--rle-warm-white);
  box-shadow: 0 1px 0 var(--rle-border);
}

.site-header .page-container {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

/* Logo */
.nav-logo {
  flex-shrink: 0;
  line-height: 0;
}

.nav-logo img {
  width: auto;
  max-width: 130px;
  max-height: var(--space-7); /* 48px — fits within 88px nav with 20px clearance each side */
  height: auto;
}

/* Primary nav */
.nav-primary {
  display: flex;
  align-items: center;
  gap: clamp(var(--space-4), 2vw, var(--space-6));
  flex: 1;
}

.nav-trigger {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-1);
  font-family: "Inter", sans-serif;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--rle-white);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color 150ms;
}

.site-header--solid .nav-trigger {
  color: var(--rle-ink);
}

.nav-trigger:hover {
  color: var(--rle-orange);
}

/* Nav CTA */
.nav-cta {
  margin-left: auto;
  flex-shrink: 0;
}

.nav-cta .btn {
  font-size: var(--text-sm);
  min-height: 44px;
  padding: 10px 20px;
}

/* ── Hamburger (mobile only) ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}

.nav-hamburger__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--rle-white);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 150ms ease;
  transform-origin: center;
}

.site-header--solid .nav-hamburger__bar {
  background: var(--rle-ink);
}

.nav-hamburger[aria-expanded="true"] .nav-hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger[aria-expanded="true"] .nav-hamburger__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger[aria-expanded="true"] .nav-hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile overlay menu ── */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: var(--rle-ink);
  overflow-y: auto;
  padding-top: var(--nav-height);
  padding-bottom: var(--space-9);
  display: none;
}

.nav-mobile.open {
  display: block;
}

.nav-mobile__inner {
  padding-inline: var(--space-5);
  padding-top: var(--space-6);
}

.nav-mobile__list {
  display: flex;
  flex-direction: column;
}

.nav-mobile__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-mobile__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-4) 0;
  font-family: "Inter", sans-serif;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--rle-white);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  min-height: 56px;
}

.nav-mobile__cta {
  margin-top: var(--space-7);
}

.nav-mobile__cta .btn {
  width: 100%;
  min-height: 56px;
}

/* ── Responsive breakpoints ── */
@media (max-width: 1023px) {
  :root { --nav-height: 68px; }

  .nav-primary,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Logo tighter in 68px nav — --space-6 (32px) leaves 18px clearance each side */
  .nav-logo img {
    max-height: var(--space-6);
  }
}

/* ── 03. TRUST LOGOS (auto-scroll marquee) ──────────────────── */
.logos {
  padding-block: var(--space-8);
  border-top: 1px solid var(--rle-border);
  border-bottom: 1px solid var(--rle-border);
}

.logos__label {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--rle-muted);
  margin-bottom: var(--space-7);
}

.logos__marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black var(--space-9), black calc(100% - var(--space-9)), transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black var(--space-9), black calc(100% - var(--space-9)), transparent);
}

.logos__track {
  display: flex;
  align-items: center;
  gap: clamp(var(--space-8), 6vw, var(--space-10));
  width: max-content;
  animation: logos-scroll 28s linear infinite;
}

.logos__marquee:hover .logos__track {
  animation-play-state: paused;
}

.logos__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 34px;
}

.logos__item img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

@keyframes logos-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── 04. ABOUT ───────────────────────────────────────────────── */
.about {
  padding-block: clamp(4rem, 8vw, 8.5rem);
  background: var(--rle-cream);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(var(--space-8), 6vw, var(--space-11));
  align-items: center;
}

.about__copy h2 {
  margin-top: var(--space-3);
  margin-bottom: var(--space-6);
  max-width: 640px;
}

.about__dot {
  color: var(--rle-orange);
}

.about__copy p {
  color: var(--rle-body);
  margin-bottom: var(--space-5);
}

.about__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
  padding-top: var(--space-7);
  border-top: 1px solid var(--rle-border);
}

.about__feature-icon {
  width: 32px;
  height: 32px;
  color: var(--rle-orange);
  margin-bottom: var(--space-3);
}

.about__feature h4 {
  font-size: var(--h4);
  margin-bottom: var(--space-2);
}

.about__feature p {
  font-size: var(--text-sm);
  color: var(--rle-muted);
  margin-bottom: 0;
}

.about__banner {
  display: flex;
  margin-top: var(--space-7);
  padding: var(--space-5);
  border: 1.5px solid var(--rle-orange-soft);
  border-radius: var(--radius-md);
}

.about__banner span {
  flex: 1;
  padding-inline: var(--space-5);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--rle-ink);
  text-align: center;
  border-left: 1px solid var(--rle-border);
}

.about__banner span:first-child {
  border-left: none;
  padding-left: 0;
}

.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

@media (max-width: 1023px) {
  .about__grid {
    grid-template-columns: 1fr;
  }

  .about__media {
    order: -1;
  }

  .about__features {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__banner {
    flex-direction: column;
    gap: var(--space-4);
  }

  .about__banner span {
    border-left: none;
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .about__features {
    grid-template-columns: 1fr;
  }
}

/* ── 05. OUR EXPERIENCES ─────────────────────────────────────── */
.experiences {
  padding-block: clamp(4rem, 8vw, 8.5rem);
  background: var(--rle-charcoal);
}

.experiences h2,
.experiences h3,
.experiences h4 {
  color: var(--rle-white);
}

.experiences .section-intro--center p {
  color: rgba(255, 255, 255, 0.72);
}

.experiences__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.experience-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.experience-card__media img {
  width: 100%;
  height: 218px;
  object-fit: cover;
}

.experience-card__body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.experience-card__heading {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}

.experience-card__icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  color: var(--rle-orange);
}

.experience-card__heading h3 {
  font-size: var(--h4);
}

.experience-card__tag {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rle-orange);
  margin-bottom: var(--space-4);
}

.experience-card__body > p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.72);
  padding-bottom: var(--space-5);
  margin-bottom: var(--space-5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.experience-card__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.experience-card__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.85);
}

.experience-card__list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--rle-orange);
}

.experiences__banner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-top: var(--space-8);
  padding: var(--space-6) var(--space-7);
  border: 1.5px solid var(--rle-orange);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 32px rgba(243, 107, 33, 0.18);
}

.experiences__banner-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--rle-orange);
}

.experiences__banner-copy h4 {
  margin-bottom: var(--space-2);
}

.experiences__banner-copy p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
}

@media (max-width: 1023px) {
  .experiences__grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .experiences__banner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-4);
  }
}

/* ── 06. EVENT FLEXIBILITY ───────────────────────────────────── */
.flexibility {
  padding-block: clamp(4rem, 8vw, 8.5rem);
  background: var(--rle-cream);
}

.flexibility__dot {
  color: var(--rle-orange);
}

.flexibility__grid {
  display: grid;
  grid-template-columns: 1.9fr 1fr;
  gap: var(--space-6);
  align-items: stretch;
}

.flexibility__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.flexibility__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flexibility__panel {
  background: var(--rle-warm-white);
  border: 1px solid var(--rle-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.flexibility__panel h3 {
  font-size: var(--h4);
  margin-bottom: var(--space-5);
}

.flexibility__list li {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding-block: var(--space-4);
  border-top: 1px solid var(--rle-border);
  font-size: var(--text-sm);
  color: var(--rle-body);
}

.flexibility__list li:first-child {
  border-top: none;
  padding-top: 0;
}

.flexibility__list svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--rle-orange);
}

.flexibility__banner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-top: var(--space-6);
  padding: var(--space-6) var(--space-7);
  border: 1.5px solid var(--rle-orange-soft);
  border-radius: var(--radius-lg);
}

.flexibility__banner-lead {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
  padding-right: var(--space-6);
  border-right: 1px solid var(--rle-border);
}

.flexibility__banner-lead svg {
  width: 32px;
  height: 32px;
  color: var(--rle-orange);
  flex-shrink: 0;
}

.flexibility__banner-lead h4 {
  font-size: var(--h4);
  white-space: nowrap;
}

.flexibility__banner p {
  font-size: var(--text-sm);
  color: var(--rle-muted);
  margin-bottom: 0;
}

@media (max-width: 1023px) {
  .flexibility__grid {
    grid-template-columns: 1fr;
  }

  .flexibility__banner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }

  .flexibility__banner-lead {
    padding-right: 0;
    border-right: none;
  }

  .flexibility__banner-lead h4 {
    white-space: normal;
  }
}

/* ── 07. WHO WE WORK WITH ────────────────────────────────────── */
.who {
  padding-block: clamp(4rem, 8vw, 8.5rem);
  background: var(--rle-cream);
}

.who__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.who-card {
  background: var(--rle-warm-white);
  border: 1px solid var(--rle-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.who-card__icon {
  width: 34px;
  height: 34px;
  color: var(--rle-orange);
  margin-bottom: var(--space-4);
}

.who-card h3 {
  font-size: var(--text-lg);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  padding-bottom: var(--space-3);
  margin-bottom: var(--space-3);
  border-bottom: 2px solid var(--rle-orange);
  display: inline-block;
}

.who-card p {
  font-size: var(--text-sm);
  color: var(--rle-muted);
  margin-bottom: 0;
}

.who__banner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-top: var(--space-6);
  padding: var(--space-6) var(--space-7);
  border: 1.5px solid var(--rle-orange-soft);
  border-radius: var(--radius-lg);
}

.who__banner svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--rle-orange);
  padding-right: var(--space-6);
  border-right: 1px solid var(--rle-border);
  box-sizing: content-box;
}

.who__banner p {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: var(--h4);
  line-height: 1.15;
  color: var(--rle-ink);
  margin-bottom: 0;
}

@media (max-width: 1023px) {
  .who__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .who__grid {
    grid-template-columns: 1fr;
  }

  .who__banner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }

  .who__banner svg {
    padding-right: 0;
    border-right: none;
  }
}

/* ── 10. HOW IT WORKS ────────────────────────────────────────── */
.how {
  padding-block: clamp(4rem, 8vw, 8.5rem);
  background: var(--rle-cream);
}

.how__dot {
  color: var(--rle-orange);
}

.how__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.how-step {
  text-align: center;
}

.how-step__icon-wrap {
  position: relative;
  width: 84px;
  height: 84px;
  margin-inline: auto;
  margin-bottom: var(--space-5);
}

.how-step:not(:first-child) .how-step__icon-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -60px;
  width: 120px;
  height: 0;
  border-top: 2px dashed var(--rle-orange);
}

.how-step__icon {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--rle-deep-teal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-step__icon svg {
  width: 36px;
  height: 36px;
  color: var(--rle-orange);
}

.how-step__number {
  position: absolute;
  top: -6px;
  left: -6px;
  z-index: 1;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--rle-cream);
  border: 2px solid var(--rle-orange);
  color: var(--rle-orange);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: var(--text-sm);
}

.how-step__body {
  padding-inline: var(--space-3);
}

.how-step:not(:first-child) .how-step__body {
  border-left: 1px solid var(--rle-border);
}

.how-step h3 {
  font-size: var(--text-lg);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--rle-deep-teal);
  padding-bottom: var(--space-3);
  margin-bottom: var(--space-3);
  border-bottom: 2px solid var(--rle-orange);
  display: inline-block;
}

.how-step p {
  font-size: var(--text-sm);
  color: var(--rle-muted);
  margin-bottom: 0;
}

@media (max-width: 1023px) {
  .how__grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: var(--space-9);
  }

  .how-step:nth-child(odd) .how-step__body {
    border-left: none;
  }

  .how-step:not(:first-child) .how-step__icon-wrap::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .how__grid {
    grid-template-columns: 1fr;
    row-gap: var(--space-7);
  }

  .how-step .how-step__body {
    border-left: none;
  }
}

/* ── 11. CONTACT ─────────────────────────────────────────────── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.contact__panel {
  display: flex;
  flex-direction: column;
  padding: clamp(3.5rem, 7vw, 7rem) clamp(1.5rem, 5vw, 4.5rem);
  background: var(--rle-cream);
}

.contact__panel--submitted {
  justify-content: center;
}

.contact__intro {
  max-width: 560px;
  margin-bottom: var(--space-8);
}

.contact__intro p {
  margin-top: var(--space-4);
  color: var(--rle-muted);
  font-size: var(--text-lg);
}

.contact__form {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.contact__form[hidden] {
  display: none;
}

.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.field label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--rle-ink);
}

.field__required {
  color: var(--rle-orange);
  margin-left: 2px;
}

.field__optional {
  font-weight: 500;
  font-size: var(--text-xs);
  color: var(--rle-muted);
  text-transform: none;
}

.field input,
.field select,
.field textarea {
  min-height: 48px;
  padding: 0 var(--space-4);
  border: 1px solid var(--rle-border);
  border-radius: var(--radius-sm);
  background: var(--rle-warm-white);
  font-family: "Inter", sans-serif;
  font-size: var(--text-base);
  color: var(--rle-ink);
}

.field textarea {
  min-height: 120px;
  padding-block: var(--space-3);
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--rle-muted);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--rle-orange);
  outline-offset: 1px;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23292A28' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-4) center;
  background-size: 16px;
  padding-right: var(--space-9);
}

.contact__submit {
  width: 100%;
  margin-top: var(--space-2);
}

.contact__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.contact__honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact__error {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--rle-orange-hover);
  margin-bottom: 0;
}

.contact__fineprint {
  font-size: var(--text-xs);
  color: var(--rle-muted);
  margin-bottom: 0;
}

.contact__success h3 {
  margin-bottom: var(--space-3);
}

.contact__success p {
  color: var(--rle-muted);
  max-width: 480px;
}

.contact__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1023px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .contact__media {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 600px) {
  .contact__row {
    grid-template-columns: 1fr;
  }
}

/* Hero — full-bleed */
.hero-page {
  position: relative;
  background: var(--rle-ink);
  overflow: hidden;
  margin-top: calc(var(--nav-height) * -1);
  padding-top: var(--nav-height);
}

.hero-page__media {
  position: absolute;
  inset: 0;
}

.hero-page__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-page__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(28, 28, 26, 0.92) 0%,
    rgba(28, 28, 26, 0.74) 34%,
    rgba(28, 28, 26, 0.32) 62%,
    rgba(28, 28, 26, 0.1) 100%
  );
}

.hero-page__inner {
  position: relative;
  z-index: 1;
  min-height: calc(78vh - var(--nav-height));
  max-height: 760px;
  display: flex;
  align-items: center;
  padding-block: clamp(3.5rem, 7vw, 7rem);
}

.hero-page__copy {
  max-width: 560px;
}

.hero-page .eyebrow {
  margin-bottom: var(--space-4);
}

.hero-page h1 {
  color: var(--rle-white);
  margin-bottom: var(--space-5);
}

.hero-page__body {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: var(--space-7);
  max-width: 560px;
  line-height: 1.5;
}

.hero__supporting {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--rle-muted);
  margin-bottom: var(--space-7);
  max-width: 480px;
}

.hero-page__ctas {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .hero-page__inner {
    min-height: auto;
    max-height: none;
    padding-block: clamp(3rem, 8vw, 5rem);
  }

  .hero-page__scrim {
    background: linear-gradient(
      180deg,
      rgba(28, 28, 26, 0.5) 0%,
      rgba(28, 28, 26, 0.95) 80%
    );
  }

  .hero-page__ctas {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-3);
  }

  .hero-page__ctas .btn {
    text-align: center;
    min-height: 56px;
  }
}
