/* ═══════════════════════════════════════════
   JULIEN WILLARD — Global Stylesheet v2
   ═══════════════════════════════════════════ */

/* Neue Haas Grotesk via Adobe Fonts */
@import url('https://use.typekit.net/uje2rwx.css');
/* Archivo for buttons */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&display=swap');

/* ── Tokens ── */
:root {
  --bg:           #F7F5F2;
  --bg-warm:      #EFECE8;
  --bg-dark:      #1D1D20;
  --ink:          #1D1D20;
  --ink-mid:      #5A554E;
  --ink-light:    #8A8479;
  --scarlet:      #ED2100;
  --scarlet-dark: #c91c00;
  --white:        #FFFFFF;

  --font-display: 'neue-haas-grotesk-display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-text:    'neue-haas-grotesk-text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-button:  'Archivo', 'Helvetica Neue', sans-serif;

  --container:    1240px;
  --gutter:       clamp(1.5rem, 4vw, 3rem);
  --section-py:   clamp(6rem, 12vw, 10rem);
  --nav-h:        80px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }

::selection {
  background: var(--scarlet);
  color: var(--white);
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--narrow { max-width: 860px; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
}

h1 {
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

h4 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.35;
}

p {
  max-width: 62ch;
  color: var(--ink-mid);
}

.label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-light);
}

.label--scarlet {
  color: var(--scarlet);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-button);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.8rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.btn--primary {
  background: var(--scarlet);
  color: var(--white);
}

.btn--primary::before {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  flex-shrink: 0;
  transition: border-color 0.3s, transform 0.3s;
}

.btn--primary:hover {
  background: var(--scarlet-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(237, 33, 0, 0.3);
}

.btn--primary:hover::before {
  border-color: #fff;
  transform: scale(1.1);
}

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

.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* Arrow link */
.link-arrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--scarlet);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s, color 0.3s;
}

.link-arrow::before {
  content: '\2192';
  font-size: 1.15em;
  transition: transform 0.3s;
}

.link-arrow:hover {
  gap: 0.8rem;
  color: var(--scarlet-dark);
}

.link-arrow:hover::before {
  transform: translateX(3px);
}

/* ═══════════════════════════════════════════
   NAVIGATION — Floating Liquid Glass
   ═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 2.5rem);
  max-width: 1280px;
  border-radius: 16px;
  background: rgba(247, 245, 242, 0.55);
  backdrop-filter: blur(40px) saturate(1.8);
  -webkit-backdrop-filter: blur(40px) saturate(1.8);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 2px 20px rgba(0, 0, 0, 0.04),
    0 0 0 0.5px rgba(255, 255, 255, 0.6) inset,
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav.scrolled {
  background: rgba(247, 245, 242, 0.78);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.08),
    0 0 0 0.5px rgba(255, 255, 255, 0.5) inset,
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 1.75rem;
}

.nav__logo img {
  height: 40px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__link {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--scarlet);
  transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav__linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  transition: background 0.3s;
}

.nav__linkedin:hover {
  background: rgba(29, 29, 32, 0.06);
}

.nav__linkedin svg {
  width: 18px;
  height: 18px;
  fill: var(--ink);
  transition: fill 0.3s;
}

.nav__linkedin:hover svg {
  fill: var(--scarlet);
}

.nav__cta .btn {
  padding: 0.6rem 1.4rem;
  font-size: 0.75rem;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s;
  border-radius: 1px;
}

/* Mobile nav */
@media (max-width: 900px) {
  .nav {
    top: 10px;
    width: calc(100% - 1.5rem);
    border-radius: 14px;
  }

  .nav__hamburger { display: flex; }

  .nav__menu {
    position: fixed;
    top: calc(var(--nav-h) + 26px);
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 1.5rem);
    max-width: 1280px;
    background: rgba(247, 245, 242, 0.9);
    backdrop-filter: blur(40px) saturate(1.8);
    -webkit-backdrop-filter: blur(40px) saturate(1.8);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 2rem 1.75rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s, transform 0.35s;
    transform: translateX(-50%) translateY(-8px);
  }

  .nav__menu.open {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
  }

  .nav__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .nav__link { font-size: 1.05rem; }

  .nav__right {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(29, 29, 32, 0.08);
    width: 100%;
    justify-content: flex-start;
  }
}

@media (min-width: 901px) {
  .nav__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

/* ═══════════════════════════════════════════
   HERO — Cinematic Split
   ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 40px) var(--gutter) 4rem;
  padding-left: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  padding-right: clamp(2rem, 5vw, 5rem);
}

.hero__image {
  position: relative;
  overflow: hidden;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(15%) contrast(1.05);
}

/* Diagonal slice overlay */
.hero__image::before {
  content: '';
  position: absolute;
  top: 0;
  left: -1px;
  width: 80px;
  height: 100%;
  background: var(--bg);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 2;
}

/* Scarlet accent bar */
.hero__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--scarlet);
  z-index: 2;
}

.hero--short {
  min-height: auto;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 60px + var(--section-py));
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.hero__label {
  margin-bottom: 2rem;
}

.hero h1 {
  margin-bottom: 1.75rem;
}

.hero h1 .accent {
  color: var(--scarlet);
}

.hero p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 48ch;
}

/* Stat strip at bottom of hero */
.hero__stats {
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(29, 29, 32, 0.08);
}

.hero__stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.75rem;
  color: var(--ink-light);
  margin-top: 0.3rem;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__content {
    padding: calc(var(--nav-h) + 40px) var(--gutter) 3rem;
    order: 2;
  }

  .hero__image {
    height: 50vh;
    order: 1;
  }

  .hero__image::before {
    display: none;
  }

  .hero__stats {
    gap: 2rem;
    flex-wrap: wrap;
  }
}

/* ═══════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════ */
.section {
  padding: var(--section-py) 0;
  position: relative;
}

.section--dark {
  background: var(--bg-dark);
  color: var(--white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--dark p {
  color: rgba(255,255,255,0.55);
}

.section--warm {
  background: var(--bg-warm);
}

.section__header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section__header .label {
  margin-bottom: 1rem;
}

.section__header p {
  margin-top: 1.25rem;
}

/* Scarlet rule */
.rule {
  width: 40px;
  height: 3px;
  background: var(--scarlet);
  margin: 1.5rem 0 0;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════
   SERVICE CARDS (2x2 heading-only grid)
   ═══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(29, 29, 32, 0.06);
  margin-bottom: 3rem;
}

.service-card {
  background: var(--bg);
  padding: clamp(2.5rem, 5vw, 3.5rem);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--scarlet);
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover {
  background: var(--white);
}

.service-card:hover::after {
  width: 100%;
}

.service-card:hover .service-card__arrow {
  transform: translateX(4px);
  color: var(--scarlet);
}

.service-card__number {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--scarlet);
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.service-card h3 {
  margin-bottom: 0;
  flex: 1;
}

.service-card__arrow {
  font-size: 1.25rem;
  color: var(--ink-light);
  flex-shrink: 0;
  transition: transform 0.35s, color 0.35s;
}

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

/* ═══════════════════════════════════════════
   EXPERIENCE SECTION (Home Page)
   ═══════════════════════════════════════════ */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  position: relative;
}

.exp-card {
  padding: clamp(2.5rem, 5vw, 3.5rem);
  border: 1px solid rgba(29, 29, 32, 0.06);
  margin: -0.5px;
  position: relative;
  transition: all 0.4s;
}

.exp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--scarlet);
  transition: height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.exp-card:hover {
  background: var(--white);
  box-shadow: 0 8px 40px rgba(0,0,0,0.04);
  z-index: 2;
}

.exp-card:hover::before {
  height: 100%;
}

.exp-card__company {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--scarlet);
  margin-bottom: 0.5rem;
}

.exp-card__role {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.exp-card__bullets {
  list-style: none;
}

.exp-card__bullets li {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--ink-mid);
  padding: 0.4rem 0;
  padding-left: 1rem;
  position: relative;
}

.exp-card__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 4px;
  height: 4px;
  background: var(--scarlet);
  border-radius: 50%;
}

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

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(29, 29, 32, 0.06);
}

.testimonial {
  padding: clamp(2.5rem, 4vw, 3.5rem);
  background: var(--bg);
  transition: background 0.35s;
}

.testimonial:hover {
  background: var(--white);
}

.testimonial__quote {
  font-family: var(--font-text);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--ink-mid);
  font-style: normal;
  margin-bottom: 2rem;
  max-width: none;
}

.testimonial__mark {
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 0.8;
  color: var(--scarlet);
  margin-bottom: 1rem;
}

.testimonial__author {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
}

.testimonial__role {
  font-size: 0.8125rem;
  color: var(--ink-light);
  margin-top: 0.15rem;
}

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

/* ═══════════════════════════════════════════
   DEAL BANNER (Home)
   ═══════════════════════════════════════════ */
.deal-banner {
  text-align: center;
  padding: var(--section-py) 0;
}

.deal-banner h2 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.deal-banner h2 .accent {
  color: var(--scarlet);
}

.deal-banner p {
  margin: 0 auto 2.5rem;
  text-align: center;
}

/* ═══════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════ */
.hero--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.hero__photo {
  position: relative;
}

.hero__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
}

/* Subtle corner accent on photo */
.hero__photo::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  border-right: 3px solid var(--scarlet);
  border-bottom: 3px solid var(--scarlet);
}

@media (max-width: 768px) {
  .hero--split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero--split .hero__photo {
    order: -1;
    max-width: 380px;
  }
}

/* ── Bio prose ── */
.bio {
  padding: var(--section-py) 0;
}

.bio__content {
  columns: 2;
  column-gap: 3.5rem;
}

.bio__content p {
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.9;
  max-width: none;
}

@media (max-width: 768px) {
  .bio__content { columns: 1; }
}

/* ── Values (Accordion) ── */
.values {
  padding: var(--section-py) 0;
}

.values-list {
  list-style: none;
  counter-reset: values;
}

.values-item {
  counter-increment: values;
  border-bottom: 1px solid rgba(29, 29, 32, 0.07);
}

.values-item:first-child {
  border-top: 1px solid rgba(29, 29, 32, 0.07);
}

.values-trigger {
  display: grid;
  grid-template-columns: 48px 1fr 24px;
  gap: 1rem;
  align-items: center;
  padding: 1.75rem 0;
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  color: inherit;
  transition: padding-left 0.3s;
}

.values-trigger:hover {
  padding-left: 0.5rem;
}

.values-trigger__num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--scarlet);
}

.values-trigger h3 {
  margin-bottom: 0;
  transition: color 0.3s;
}

.values-item.active .values-trigger h3 {
  color: var(--scarlet);
}

.values-trigger__icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.values-trigger__icon::before,
.values-trigger__icon::after {
  content: '';
  position: absolute;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.values-trigger__icon::before {
  top: 50%;
  left: 4px;
  right: 4px;
  height: 2px;
  transform: translateY(-50%);
}

.values-trigger__icon::after {
  left: 50%;
  top: 4px;
  bottom: 4px;
  width: 2px;
  transform: translateX(-50%);
}

.values-item.active .values-trigger__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.values-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.35s;
  opacity: 0;
}

.values-item.active .values-content {
  max-height: 200px;
  opacity: 1;
}

.values-content__inner {
  padding: 0 0 2rem 4rem;
}

.values-content p {
  font-size: 0.9375rem;
  line-height: 1.85;
  max-width: 60ch;
}

/* ═══════════════════════════════════════════
   DEAL SHEET PAGE — Full deal listing
   ═══════════════════════════════════════════ */
.deal-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 0;
}

.deal-stat {
  background: var(--bg-dark);
  padding: clamp(2rem, 4vw, 2.5rem);
  text-align: center;
}

.deal-stat__number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--scarlet);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.deal-stat h4 {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

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

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

/* Deal category sections */
.deal-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid rgba(29, 29, 32, 0.06);
}

.deal-section:last-child { border-bottom: none; }

.deal-section__header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.deal-section__header .label {
  margin-bottom: 0.75rem;
}

.deal-section__header p {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
}

.deal-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(29, 29, 32, 0.05);
}

.deal-item {
  background: var(--bg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  transition: all 0.35s;
  position: relative;
}

.deal-item:hover {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  z-index: 2;
}

.deal-item__size {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--scarlet);
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.deal-item h4 {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.deal-item p {
  font-size: 0.8125rem;
  line-height: 1.75;
  color: var(--ink-light);
}

.deal-item__bullets {
  list-style: none;
  margin-top: 0.5rem;
}

.deal-item__bullets li {
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--ink-light);
  padding-left: 0.85rem;
  position: relative;
  margin-top: 0.25rem;
}

.deal-item__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--scarlet);
}

@media (max-width: 768px) {
  .deal-items { grid-template-columns: 1fr; }
}

/* Deal CTA */
.deal-cta {
  text-align: center;
  padding: var(--section-py) 0;
}

.deal-cta h2 {
  margin-bottom: 1rem;
}

.deal-cta p {
  margin: 0 auto 2.5rem;
  text-align: center;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--bg-dark);
  padding: 4.5rem 0 2.5rem;
  color: rgba(255,255,255,0.5);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.footer__brand img {
  height: 30px;
  margin-bottom: 1rem;
}

.footer__email {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
}

.footer__email:hover {
  color: var(--scarlet);
}

.footer__middle {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.footer__nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer__nav a {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
}

.footer__nav a:hover {
  color: var(--white);
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.3s;
}

.footer__social a:hover {
  border-color: var(--scarlet);
  background: rgba(237, 33, 0, 0.1);
}

.footer__social svg {
  width: 16px;
  height: 16px;
  fill: rgba(255,255,255,0.5);
  transition: fill 0.3s;
}

.footer__social a:hover svg {
  fill: var(--scarlet);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.75rem;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer__legal a {
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
}

.footer__legal a:hover {
  color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
  .footer__top {
    flex-direction: column;
    gap: 2.5rem;
  }

  .footer__middle {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer__nav {
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-in {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-in:nth-child(1) { animation-delay: 0.05s; }
.animate-in:nth-child(2) { animation-delay: 0.15s; }
.animate-in:nth-child(3) { animation-delay: 0.25s; }
.animate-in:nth-child(4) { animation-delay: 0.35s; }
.animate-in:nth-child(5) { animation-delay: 0.45s; }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children reveals */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}
