/* ═══════════════════════════════════════════════════════
   TWO HOSTS — Style System
   Premium editorial concierge website
   ═══════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────── */
:root {
  --charcoal: #1a1a1a;
  --charcoal-l: #2a2a28;
  --cream: #f5f0e8;
  --cream-d: #e8e0d4;
  --gold: #c9a96e;
  --gold-dim: #b89a5e;
  --terracotta: #b5714d;
  --warm-gray: #8a8279;
  --warm-gray-l: #a49e95;

  --ff-serif: 'Playfair Display', 'Georgia', serif;
  --ff-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --fs-xl: clamp(2.6rem, 7vw, 5.2rem);
  --fs-lg: clamp(1.8rem, 4.5vw, 3rem);
  --fs-md: clamp(1.1rem, 2.5vw, 1.4rem);
  --fs-body: clamp(0.95rem, 2vw, 1.1rem);
  --fs-sm: clamp(0.75rem, 1.6vw, 0.85rem);

  --space: clamp(1.2rem, 4vw, 2.4rem);
  --space-l: clamp(3rem, 10vw, 7rem);

  --radius: 2px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Theme accents ──────────────────────────────────── */
[data-theme="corporate"] {
  --accent: #c9a96e;
  --accent-dim: rgba(201, 169, 110, 0.12);
}

[data-theme="occasions"] {
  --accent: #d4917a;
  --accent-dim: rgba(212, 145, 122, 0.12);
}

[data-theme="sports"] {
  --accent: #7ba694;
  --accent-dim: rgba(123, 166, 148, 0.12);
}

[data-theme="cars"] {
  --accent: #c9a96e;
  --accent-dim: rgba(201, 169, 110, 0.12);
}

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

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

body {
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--cream);
  background: var(--charcoal);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

/* ── Film grain overlay ─────────────────────────────── */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--space);
  transition: background 0.4s var(--ease);
}

.nav--scrolled {
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav__logo {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.02em;
  z-index: 310;
}

/* Burger button */
.nav__burger {
  position: relative;
  z-index: 310;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

.nav__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s ease;
  transform-origin: center;
}

/* Burger → X */
.nav__burger.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.nav__burger.active span:nth-child(2) {
  opacity: 0;
}

.nav__burger.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* Fullscreen menu */
.nav__menu {
  position: fixed;
  top: 64px;
  left: var(--space);
  right: var(--space);
  bottom: auto;
  z-index: 300;
  background: var(--charcoal);
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px) scale(0.99);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
  will-change: opacity, transform;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 14px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.nav__menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.nav__menu-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.2rem;
  width: 100%;
  padding: 0.5rem;
}

.nav__link {
  font-family: var(--ff-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream-d);
  transition: background-color 0.25s ease, color 0.25s ease;
  letter-spacing: 0.02em;
  padding: 0.85rem 0.95rem;
  border-radius: 10px;
  border: 1px solid transparent;
}

.nav__link:hover,
.nav__link--active {
  color: var(--cream);
  background: rgba(245, 240, 232, 0.06);
  border-color: rgba(201, 169, 110, 0.2);
}

.nav__link--active {
  color: var(--gold);
}

/* ── Section label ──────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

[data-theme] .section-label {
  color: var(--accent, var(--gold));
}

/* ── Typography ─────────────────────────────────────── */
h1,
h2,
h3 {
  font-family: var(--ff-serif);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h2 {
  font-size: var(--fs-lg);
  margin-bottom: 1.4rem;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: var(--cream);
}

h2 em,
h1 em {
  font-style: italic;
  color: var(--gold);
}

[data-theme] h2 em,
[data-theme] h1 em {
  color: var(--accent, var(--gold));
}

p+p {
  margin-top: 1rem;
}

.text-accent {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: var(--fs-md);
  color: var(--gold);
  margin-top: 1.5rem;
}

/* ════════════════════════════════════════════════════════
   HERO (Main page)
   ════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero__image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.03) translateY(var(--hero-parallax-y, 0px));
  filter: brightness(0.5) saturate(0.85);
}

.hero__image--slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
}

.hero__image--slide.is-active {
  opacity: 1;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: var(--space-l) var(--space) calc(var(--space-l) + 1.5rem);
}

.hero__tag {
  font-family: var(--ff-sans);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.3s forwards;
}

.hero__title {
  font-size: var(--fs-xl);
  color: var(--cream);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.6s forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--cream-d);
  font-weight: 400;
}

.hero__subtitle {
  font-family: var(--ff-sans);
  font-size: var(--fs-md);
  font-weight: 300;
  line-height: 1.6;
  color: var(--warm-gray-l);
  max-width: 36ch;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.9s forwards;
}

/* ════════════════════════════════════════════════════════
   SUB-PAGE HERO
   ════════════════════════════════════════════════════════ */
.subpage-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.subpage-hero__image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.subpage-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.8);
}

.subpage-hero__content {
  position: relative;
  z-index: 1;
  padding: var(--space-l) var(--space) var(--space-l);
}

.subpage-hero__title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: var(--cream);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.3s forwards;
}

/* ════════════════════════════════════════════════════════
   SECTION BASE
   ════════════════════════════════════════════════════════ */
.section {
  padding: var(--space-l) var(--space);
}

/* ── Reveal animation ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal--delay {
  transition-delay: 0.25s;
}

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

/* ════════════════════════════════════════════════════════
   INTRO
   ════════════════════════════════════════════════════════ */
.intro {
  display: grid;
  gap: var(--space);
}

.intro__text {
  max-width: 560px;
}

.intro__text p {
  color: var(--warm-gray-l);
}

.intro__image {
  position: relative;
  margin-left: calc(var(--space) * -1);
  margin-right: calc(var(--space) * -0.5);
}

.intro__image img {
  width: 100%;
  border-radius: var(--radius);
  filter: saturate(0.8) contrast(1.05);
}

.intro__image h3 {
  margin-top: 1.2rem;
  font-size: 1.15rem;
  color: var(--cream);
}

.intro__image p {
  font-size: var(--fs-sm);
  color: var(--warm-gray-l);
  line-height: 1.6;
  margin-top: 0.4rem;
}

.intro__image img {
  border-bottom: 1px solid rgba(201, 169, 110, 0.3);
  padding-bottom: 1.2rem;
  margin-bottom: 0.2rem;
}

/* ── Intro Hosts (Victor & Sabri) ──────────────────── */
.intro__hosts {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding-top: 1rem;
}

.intro__hosts-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  filter: saturate(0.85) contrast(1.05);
  border: 2px solid rgba(201, 169, 110, 0.3);
}

.intro__hosts-text h3 {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.intro__hosts-text p {
  font-size: var(--fs-sm);
  color: var(--warm-gray-l);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════
   SERVICE
   ════════════════════════════════════════════════════════ */
.service {
  display: grid;
  gap: var(--space);
}

.service__image {
  position: relative;
  margin-right: calc(var(--space) * -1);
}

.service__image img {
  width: 100%;
  border-radius: var(--radius);
  filter: saturate(0.85) contrast(1.05);
}

.service__image::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid var(--terracotta);
  opacity: 0.2;
  border-radius: var(--radius);
  z-index: -1;
}

.service__text {
  max-width: 560px;
}

.service__text h2 {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
}

.service__text p {
  color: var(--warm-gray-l);
}

/* ════════════════════════════════════════════════════════
   FOOD FEATURE
   ════════════════════════════════════════════════════════ */
.food-feature {
  display: grid;
  gap: var(--space);
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  padding-top: calc(var(--space-l) * 0.9);
}

.food-feature__image {
  position: relative;
  margin-left: calc(var(--space) * -0.5);
  margin-right: calc(var(--space) * -1);
}

.food-feature__image img {
  width: 100%;
  border-radius: var(--radius);
  filter: saturate(0.85) contrast(1.05);
}

.food-feature__image::after {
  content: '';
  position: absolute;
  inset: -6px 6px 6px -6px;
  border: 1px solid var(--terracotta);
  opacity: 0.18;
  border-radius: var(--radius);
  z-index: -1;
}

.food-feature__text {
  max-width: 480px;
}

.food-feature__text p {
  color: var(--warm-gray-l);
}

.food-feature__text .text-accent {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

/* ════════════════════════════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════════════════════════════ */
.how-it-works {
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.how-it-works__steps {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.step-card {
  padding: 1.3rem;
  background: rgba(245, 240, 232, 0.03);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: var(--radius);
}

.step-card h3 {
  margin-top: 0.8rem;
}

.step-card p {
  color: var(--warm-gray-l);
  font-size: var(--fs-body);
  line-height: 1.6;
}

.quick-intake {
  margin-top: 2rem;
}

.quick-intake__label {
  font-family: var(--ff-sans);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 0.9rem;
}

.quick-intake__buttons {
  display: grid;
  gap: 0.7rem;
}

.quick-intake__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 999px;
  background: rgba(201, 169, 110, 0.08);
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.quick-intake__btn:hover {
  background: rgba(201, 169, 110, 0.14);
  border-color: rgba(201, 169, 110, 0.4);
}

.quick-intake__btn:active {
  transform: scale(0.99);
}

/* ════════════════════════════════════════════════════════
   LOGIC
   ════════════════════════════════════════════════════════ */
.logic {
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.logic__content {
  max-width: 600px;
}

.logic__content p {
  color: var(--warm-gray-l);
}

.logic__points {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.logic__point {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.logic__number {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  padding-top: 0.15rem;
}

[data-theme] .logic__number {
  color: var(--accent, var(--gold));
}

.logic__point p {
  font-size: var(--fs-body);
  color: var(--cream-d);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════
   SERVICES GRID (Homepage)
   ════════════════════════════════════════════════════════ */
.services-grid {
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.services-grid__cards {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.service-card {
  display: block;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s var(--ease);
}

.service-card:active {
  transform: scale(0.98);
}

.service-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(0.8);
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}

.service-card:hover .service-card__img img {
  transform: scale(1.05);
  filter: brightness(0.55) saturate(0.9);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-top: 1rem;
  color: var(--cream);
}

.service-card p {
  font-size: var(--fs-sm);
  color: var(--warm-gray);
  margin-top: 0.3rem;
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════════
   HOSTS
   ════════════════════════════════════════════════════════ */
.hosts {
  display: grid;
  gap: var(--space);
}

.hosts__image {
  position: relative;
}

.hosts__image img {
  width: 100%;
  border-radius: var(--radius);
  filter: saturate(0.8) contrast(1.05);
}

.hosts__image::after {
  content: '';
  position: absolute;
  inset: 12px -8px -12px 8px;
  border: 1px solid var(--gold);
  opacity: 0.2;
  border-radius: var(--radius);
  z-index: -1;
}

.hosts__text {
  max-width: 560px;
}

.hosts__text h2 {
  color: var(--cream);
}

.hosts__text p {
  color: var(--warm-gray-l);
}

.hosts__text p:last-child {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--gold);
  font-size: var(--fs-md);
  margin-top: 1.5rem;
}

/* ════════════════════════════════════════════════════════
   SUB-PAGE CONTENT
   ════════════════════════════════════════════════════════ */
.subpage-content {
  max-width: 640px;
}

.subpage-content p {
  color: var(--warm-gray-l);
}

/* ════════════════════════════════════════════════════════
   REFERENCES / TESTIMONIALS CAROUSEL
   ════════════════════════════════════════════════════════ */
.references {
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.references h2 {
  margin-bottom: 2rem;
}

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

.references__track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.ref-card {
  flex: 0 0 100%;
  min-width: 0;
  padding: 2rem 1.8rem;
  background: rgba(245, 240, 232, 0.03);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  box-sizing: border-box;
}

.ref-card p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: var(--fs-md);
  color: var(--cream-d);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.ref-card__footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.ref-card__name {
  font-family: var(--ff-sans);
  font-style: normal;
  font-size: var(--fs-body);
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.ref-card__title {
  font-family: var(--ff-sans);
  font-size: var(--fs-sm);
  color: var(--warm-gray);
  letter-spacing: 0.04em;
}

.references__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.8rem;
}

.references__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.25);
  background: rgba(245, 240, 232, 0.04);
  color: var(--cream);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

.references__arrow:hover {
  background: rgba(201, 169, 110, 0.12);
  border-color: rgba(201, 169, 110, 0.4);
}

.references__dots {
  display: flex;
  gap: 0.5rem;
}

.references__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.15);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

.references__dot.active {
  background: var(--gold);
  transform: scale(1.25);
}

.partners {
  margin-top: 2.5rem;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 169, 110, 0.08);
}

.partners__label {
  font-family: var(--ff-sans);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 0.8rem;
}

.partner-name {
  font-family: var(--ff-serif);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 700;
  color: var(--cream-d);
  letter-spacing: 0.02em;
}

.partner-divider {
  color: var(--gold);
  margin: 0 0.6rem;
  font-size: 1.2rem;
}

.partners__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* Image grid */
.subpage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.subpage-grid__item {
  overflow: hidden;
  border-radius: var(--radius);
}

.subpage-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.05);
  transition: transform 0.6s var(--ease);
}

.subpage-grid__item:hover img {
  transform: scale(1.04);
}

.subpage-grid__item--wide {
  grid-column: 1 / -1;
}

.subpage-grid__item--tall {
  grid-row: span 2;
}

/* List items */
.subpage-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.subpage-list__item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.subpage-list__item h3 {
  color: var(--cream);
  font-size: 1.05rem;
}

.subpage-list__item p {
  color: var(--warm-gray-l);
  font-size: var(--fs-body);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════
   FLEET (Car Service page)
   ════════════════════════════════════════════════════════ */
.fleet {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.fleet-card {
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  padding-bottom: 3rem;
}

.fleet-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.fleet-card__name {
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.fleet-card__images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.fleet-card__img {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16 / 10;
}

.fleet-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  transition: transform 0.6s var(--ease);
}

.fleet-card__img:hover img {
  transform: scale(1.03);
}

.fleet-card__price {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  font-family: var(--ff-sans);
  font-size: var(--fs-body);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.fleet-card__price:hover {
  color: var(--cream);
}

.fleet-card__price svg {
  transition: transform 0.25s ease;
}

.fleet-card__price:hover svg {
  transform: translate(2px, -2px);
}

@media (min-width: 768px) {
  .fleet-card__images {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .fleet {
    gap: 4rem;
  }

  .fleet-card {
    padding-bottom: 3.5rem;
  }
}

/* ════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════ */
.footer {
  padding: var(--space-l) var(--space);
  padding-bottom: calc(var(--space-l) + 80px);
  text-align: center;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.footer__brand {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.8rem;
}

.footer__note {
  font-size: var(--fs-sm);
  color: var(--warm-gray);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}

.footer__copy {
  font-size: var(--fs-sm);
  color: rgba(138, 130, 121, 0.5);
}

/* ════════════════════════════════════════════════════════
   FIXED CTA
   ════════════════════════════════════════════════════════ */
.cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 1.5rem;
  padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  background: var(--charcoal-l);
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-family: var(--ff-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.04em;
  text-align: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}

.cta__icon {
  color: #25D366;
  flex-shrink: 0;
}

.cta:active {
  background: rgba(201, 169, 110, 0.12);
}

.cta--hidden {
  transform: translateY(100%);
  opacity: 0;
}

/* ════════════════════════════════════════════════════════
   KEYFRAMES
   ════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ════════════════════════════════════════════════════════
   DESKTOP (768px+)
   ════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  .nav__burger {
    display: none;
  }

  .nav__menu {
    position: static;
    background: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    display: flex;
    align-items: center;
    transition: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
  }

  .nav__menu-inner {
    flex-direction: row;
    gap: 2rem;
    padding: 0;
    width: auto;
    align-items: center;
  }

  .nav__link {
    font-family: var(--ff-sans);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--warm-gray-l);
    padding: 0;
    border-radius: 0;
    border: 0;
    background: transparent;
    transition: color 0.3s ease;
  }

  .nav__link:hover {
    color: var(--cream);
  }

  .nav__link--active {
    font-style: normal;
    color: var(--gold);
  }

  .hero__content {
    padding: var(--space-l) calc(var(--space) * 2) calc(var(--space-l) * 1.2);
    max-width: 720px;
  }

  .hero__image {
    object-position: center 36%;
    transform: scale(1.01) translateY(var(--hero-parallax-y, 0px));
  }

  .section {
    padding: var(--space-l) calc(var(--space) * 2);
  }

  .intro {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: calc(var(--space) * 2);
  }

  .intro__hosts {
    grid-column: 1 / -1;
  }

  .intro__image {
    margin-left: 0;
    margin-right: 0;
  }

  .service {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: calc(var(--space) * 2);
  }

  .service__image {
    margin-right: 0;
    order: -1;
  }

  .food-feature {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: calc(var(--space) * 2);
  }

  .food-feature__text {
    order: -1;
  }

  .food-feature__image {
    margin-left: 0;
    margin-right: 0;
  }

  .hosts {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: calc(var(--space) * 2);
  }

  .logic__content {
    max-width: 700px;
  }

  .logic__points {
    flex-direction: row;
    gap: 2.5rem;
  }

  .logic__point {
    flex-direction: column;
    gap: 0.8rem;
    flex: 1;
  }

  .services-grid__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 860px;
  }

  .how-it-works__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .quick-intake__buttons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .subpage-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.2rem;
  }

  .ref-card {
    padding: 2.5rem 3rem;
  }

  .subpage-hero__content {
    padding-left: calc(var(--space) * 2);
    padding-right: calc(var(--space) * 2);
  }

  .cta {
    left: 50%;
    right: auto;
    bottom: 1.2rem;
    transform: translateX(-50%);
    border-radius: 50px;
    padding: 0.9rem 2.2rem;
    padding-bottom: 0.9rem;
    border: 1px solid rgba(201, 169, 110, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    max-width: 320px;
  }

  .cta--hidden {
    transform: translateX(-50%) translateY(calc(100% + 2rem));
    opacity: 0;
  }
}

/* ════════════════════════════════════════════════════════
   LARGE DESKTOP (1200px+)
   ════════════════════════════════════════════════════════ */
@media (min-width: 1200px) {
  .hero__content {
    max-width: 860px;
  }

  .section {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .intro {
    grid-template-columns: 1fr 1.2fr;
  }

  .service {
    grid-template-columns: 1.2fr 1fr;
  }

  .hosts {
    grid-template-columns: 1fr 1.2fr;
  }

  .subpage-hero__content {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .subpage-content {
    max-width: 720px;
  }
}