/* ============================================================
   FIFA WORLD CUP LUXURY RIDE — v2
   Editorial luxury · Inspired by Global Luxury Ride
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brand palette */
  --black: #0B0B0C;
  --black-soft: #141416;
  --black-line: #1F1F22;
  --ink: #1A1A1C;
  --cream: #F7F3EA;
  --cream-soft: #FAF7F0;
  --paper: #FFFFFF;
  --gold: #C8A24A;
  --gold-deep: #A07F30;
  --gold-light: #E8D38B;
  --royal: #1E3A8A;
  --royal-deep: #14266B;

  /* Greys */
  --grey-50: #F4F2EE;
  --grey-100: #E8E4DC;
  --grey-300: #B8B3A8;
  --grey-500: #7A766C;
  --grey-700: #3D3B36;

  /* Typography */
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --display: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Type scale (fluid) */
  --t-display: clamp(2.75rem, 7vw, 5.75rem);
  --t-h1: clamp(2.25rem, 5vw, 4rem);
  --t-h2: clamp(1.85rem, 3.5vw, 3rem);
  --t-h3: clamp(1.35rem, 2.2vw, 1.85rem);
  --t-h4: 1.25rem;
  --t-lg: 1.125rem;
  --t-base: 1rem;
  --t-sm: 0.9375rem;
  --t-xs: 0.8125rem;
  --t-eyebrow: 0.75rem;

  /* Spacing */
  --s-1: 0.25rem; --s-2: 0.5rem; --s-3: 0.75rem;
  --s-4: 1rem;    --s-5: 1.5rem; --s-6: 2rem;
  --s-7: 3rem;    --s-8: 4rem;   --s-9: 6rem;
  --s-10: 8rem;

  /* Layout */
  --container: 1280px;
  --container-narrow: 920px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  /* Effects */
  --radius: 4px;
  --radius-md: 8px;
  --shadow-sm: 0 4px 16px rgba(11,11,12,0.08);
  --shadow-md: 0 8px 32px rgba(11,11,12,0.12);
  --shadow-lg: 0 24px 64px rgba(11,11,12,0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.55s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: var(--t-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
}
h1 { font-size: var(--t-h1); font-weight: 600; }
h2 { font-size: var(--t-h2); }
h3 { font-size: var(--t-h3); }
h4 { font-size: var(--t-h4); }
p { color: var(--grey-700); }

.eyebrow {
  font-family: var(--sans);
  font-size: var(--t-eyebrow);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow--light { color: var(--gold-light); }

.lede {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  line-height: 1.5;
  font-style: italic;
  color: var(--grey-700);
  font-weight: 400;
}

.gold { color: var(--gold-deep); }
.gold-light { color: var(--gold); }

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

.section { padding: var(--s-9) 0; }
.section--sm { padding: var(--s-8) 0; }
.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }
.section--soft { background: var(--cream-soft); }
.section--black { background: var(--black); color: var(--cream); }
.section--black h1, .section--black h2, .section--black h3 { color: var(--cream); }
.section--black p { color: rgba(247, 243, 234, 0.78); }

.section-head { max-width: 720px; margin: 0 0 var(--s-8); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: var(--s-3); display: block; }
.section-head h2 { margin-bottom: var(--s-4); }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 243, 234, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(11,11,12,0.06);
}
.header__top {
  background: var(--black);
  color: rgba(247,243,234,0.7);
  font-size: var(--t-xs);
  letter-spacing: 0.05em;
}
.header__top-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.5rem var(--gutter);
  max-width: var(--container); margin: 0 auto;
}
.header__top a { color: var(--gold-light); transition: color 0.3s; }
.header__top a:hover { color: var(--paper); }
.header__top-meta { display: flex; gap: var(--s-5); align-items: center; }
.header__top-meta span { display: inline-flex; align-items: center; gap: 0.4rem; }
.header__top-meta .dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; }

.header__main {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s-4) var(--gutter);
  max-width: var(--container); margin: 0 auto; gap: var(--s-5);
}
.header__logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}
.header__logo img { width: 52px; height: 52px; }
.header__brand {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.05;
  color: var(--ink);
}
.header__brand small {
  display: block;
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  text-transform: uppercase;
  margin-top: 2px;
}
.nav {
  display: flex; gap: var(--s-5); align-items: center;
}
.nav a {
  font-size: 0.9375rem; font-weight: 500; color: var(--ink);
  position: relative; padding: 0.5rem 0;
}
.nav a:not(.nav__cta)::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold-deep);
  transition: width 0.4s var(--ease);
}
.nav a:hover::after { width: 100%; }
.nav a.nav__cta {
  background: var(--ink); color: var(--cream);
  padding: 0.75rem 1.5rem; border-radius: var(--radius);
  border: 1px solid var(--ink);
  transition: all 0.3s var(--ease);
}
.nav a.nav__cta:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--paper); }
.nav__cta::after { display: none; }

.menu-toggle {
  display: none;
  width: 40px; height: 40px; flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
}
.menu-toggle span {
  display: block; width: 22px; height: 1.5px; background: var(--ink);
  transition: 0.3s;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.65rem;
  padding: 1rem 1.85rem;
  font-family: var(--sans); font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
}
.btn--gold { background: var(--gold-deep); color: var(--paper); }
.btn--gold:hover { background: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ink { background: var(--ink); color: var(--cream); }
.btn--ink:hover { background: var(--gold-deep); color: var(--paper); }
.btn--ghost { background: transparent; color: var(--cream); border-color: rgba(247,243,234,0.4); }
.btn--ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--cream); }
.btn .arrow { display: inline-block; transition: transform 0.3s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  background: var(--black);
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(11,11,12,0.55) 0%, rgba(11,11,12,0.45) 40%, rgba(11,11,12,0.85) 100%),
    url('../images/hero.png');
  background-size: cover; background-position: center;
  filter: saturate(1.05);
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--container); margin: 0 auto;
  padding: var(--s-10) var(--gutter) var(--s-9);
  width: 100%; color: var(--cream);
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: var(--t-eyebrow); letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-light); font-weight: 600;
  margin-bottom: var(--s-4);
}
.hero__eyebrow::before {
  content: ''; width: 36px; height: 1px; background: var(--gold-light);
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--cream);
  max-width: 24ch;
  margin-bottom: var(--s-5);
  text-wrap: balance;
}
.hero h1 br { display: block; }
.hero h1 em { font-style: italic; color: var(--gold-light); font-weight: 500; }
.hero__sub {
  font-family: var(--display);
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  font-style: italic;
  color: rgba(247,243,234,0.88);
  max-width: 60ch;
  margin-bottom: var(--s-6);
  line-height: 1.55;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--s-3); }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: var(--s-6);
  margin-top: var(--s-7);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(247,243,234,0.18);
  max-width: 720px;
}
.hero__meta-item {
  display: flex; flex-direction: column;
}
.hero__meta-item strong {
  font-family: var(--display);
  font-size: 1.5rem; font-weight: 600; color: var(--gold-light);
  line-height: 1.1;
}
.hero__meta-item span {
  font-size: var(--t-xs); letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(247,243,234,0.65); margin-top: 4px;
}

/* ---------- Trust strip ---------- */
.trust {
  background: var(--paper);
  padding: var(--s-5) 0;
  border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
}
.trust__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 0;
  max-width: var(--container); margin: 0 auto;
  padding: 0 var(--gutter);
}
.trust__item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.35rem;
  font-size: var(--t-sm); color: var(--grey-700);
  text-align: center;
  padding: 0.25rem var(--s-3);
  border-right: 1px solid var(--grey-100);
  min-height: 56px;
  line-height: 1.4;
}
.trust__item:last-child { border-right: 0; }
.trust__item strong { color: var(--ink); font-weight: 600; }
.trust__stars { color: var(--gold-deep); letter-spacing: 0.18em; font-size: 0.95rem; }
.trust__divider { display: none; }
@media (max-width: 720px) {
  .trust__inner { grid-template-columns: 1fr 1fr; }
  .trust__item { border-right: 0; padding: var(--s-3); border-bottom: 1px solid var(--grey-100); }
  .trust__item:nth-child(odd) { border-right: 1px solid var(--grey-100); }
  .trust__item:nth-last-child(-n+2) { border-bottom: 0; }
}

/* ---------- Editorial / Two-Column ---------- */
.editorial {
  display: grid; gap: var(--s-7);
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
}
.editorial--reverse { grid-template-columns: 1fr 1.05fr; }
.editorial--reverse > :first-child { order: 2; }
.editorial__visual {
  position: relative;
  aspect-ratio: 5/4;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.editorial__visual--portrait { aspect-ratio: 4/5; }
.editorial__visual img { width: 100%; height: 100%; object-fit: cover; }
.editorial__visual::after {
  content: ''; position: absolute; inset: 12px;
  border: 1px solid rgba(247,243,234,0.25);
  pointer-events: none;
}
.editorial__copy h2 { margin-bottom: var(--s-5); }
.editorial__copy p + p { margin-top: var(--s-4); }
.editorial__copy .btn { margin-top: var(--s-5); }

/* Side rule for editorial */
.editorial__copy {
  position: relative;
  padding-left: var(--s-5);
  border-left: 1px solid var(--gold);
}

/* ---------- Service Cards ---------- */
.services-grid {
  display: grid; gap: var(--s-5);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.services-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .services-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid--4 { grid-template-columns: 1fr; } }

/* 7-card layout: 4 cards row 1, 3 centered cards row 2 */
.services-grid--7 {
  grid-template-columns: repeat(12, 1fr);
}
.services-grid--7 > * { grid-column: span 3; }
.services-grid--7 > *:nth-child(5) { grid-column: 2 / span 3; }
.services-grid--7 > *:nth-child(6) { grid-column: span 3; }
.services-grid--7 > *:nth-child(7) { grid-column: span 3; }
@media (max-width: 1100px) {
  .services-grid--7 { grid-template-columns: repeat(2, 1fr); }
  .services-grid--7 > *,
  .services-grid--7 > *:nth-child(5),
  .services-grid--7 > *:nth-child(6),
  .services-grid--7 > *:nth-child(7) { grid-column: auto; }
}
@media (max-width: 600px) {
  .services-grid--7 { grid-template-columns: 1fr; }
}
.svc-card {
  background: var(--paper);
  padding: var(--s-6);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--gold-deep); transform: scaleY(0);
  transform-origin: top; transition: transform 0.5s var(--ease);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--grey-100); }
.svc-card:hover::before { transform: scaleY(1); }
.svc-card__num {
  font-family: var(--display); font-size: 1.875rem;
  color: var(--gold-deep); font-weight: 500; line-height: 1;
  margin-bottom: var(--s-3);
  display: block;
}
.svc-card h3 {
  font-size: 1.375rem;
  margin-bottom: var(--s-3);
}
.svc-card p { font-size: var(--t-sm); margin-bottom: var(--s-4); }
.svc-card__link {
  font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.svc-card__link:hover { color: var(--ink); }

/* ---------- Cities Grid ---------- */
.cities-grid {
  display: grid; gap: var(--s-4);
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.city-card {
  position: relative;
  display: block;
  background: var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  text-decoration: none;
  color: var(--cream);
  transition: transform 0.5s var(--ease);
}
.city-card:hover { transform: translateY(-3px); }
.city-card__bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(180deg, rgba(11,11,12,0.4) 0%, rgba(11,11,12,0.95) 100%), url('../images/stadium.png');
  background-size: cover; background-position: center;
  transition: transform 0.8s var(--ease);
}
.city-card:hover .city-card__bg { transform: scale(1.05); }
.city-card__content {
  position: relative; z-index: 2;
  padding: var(--s-5);
  height: 100%;
  display: flex; flex-direction: column; justify-content: space-between;
}
.city-card__top {
  display: flex; justify-content: space-between; align-items: start;
  font-size: var(--t-xs); letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-light); font-weight: 600;
}
.city-card__bottom h3 {
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 0.35rem;
  line-height: 1.15;
}
.city-card__country { font-size: var(--t-xs); color: rgba(247,243,234,0.7); letter-spacing: 0.12em; text-transform: uppercase; }
.city-card__venue {
  font-family: var(--display); font-style: italic;
  font-size: 0.875rem;
  color: var(--gold-light);
  display: block;
  line-height: 1.35;
  margin-bottom: 0.65rem;
}
.city-card__highlight {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  background: var(--gold-deep); color: var(--paper);
  font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 700; border-radius: 2px;
  white-space: nowrap;
}

/* ---------- City Hero ---------- */
.city-hero {
  position: relative; min-height: 60vh;
  display: flex; align-items: flex-end;
  background: var(--black);
  overflow: hidden;
}
.city-hero__bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(180deg, rgba(11,11,12,0.55) 0%, rgba(11,11,12,0.55) 50%, rgba(11,11,12,0.92) 100%), url('../images/stadium.png');
  background-size: cover; background-position: center;
}
.city-hero__inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--container); margin: 0 auto;
  padding: var(--s-9) var(--gutter) var(--s-7);
  color: var(--cream);
}
.city-hero__crumb {
  font-size: var(--t-xs); letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(247,243,234,0.65); margin-bottom: var(--s-4);
}
.city-hero__crumb a:hover { color: var(--cream); }
.city-hero__crumb a { color: var(--gold-light); }
.city-hero h1 {
  font-size: clamp(1.875rem, 3.8vw, 3rem);
  line-height: 1.1;
  color: var(--cream);
  max-width: 28ch;
  margin-bottom: var(--s-4);
  text-wrap: balance;
}
.city-hero__sub {
  font-family: var(--display); font-style: italic;
  font-size: 1.25rem; max-width: 60ch;
  color: rgba(247,243,234,0.85); margin-bottom: var(--s-5);
}
.city-hero__facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--s-5);
  padding-top: var(--s-5);
  margin-top: var(--s-4);
  border-top: 1px solid rgba(247,243,234,0.18);
  max-width: 720px;
}
.city-hero__fact { font-size: var(--t-sm); min-width: 0; }
.city-hero__fact span { display: block; font-size: var(--t-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 4px; }
.city-hero__fact strong { font-family: var(--display); font-size: 1.0625rem; color: var(--cream); font-weight: 500; line-height: 1.3; display: block; }

/* ---------- Stats / Trust ---------- */
.stats {
  background: var(--ink); color: var(--cream);
  padding: var(--s-7) 0;
}
.stats__grid {
  display: grid; gap: var(--s-5);
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  text-align: center;
}
.stats__item strong {
  display: block;
  font-family: var(--display);
  font-size: 3rem; color: var(--gold-light);
  font-weight: 600; line-height: 1;
  margin-bottom: var(--s-2);
}
.stats__item span {
  font-size: var(--t-xs); letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(247,243,234,0.7);
}

/* ---------- Languages ---------- */
.langs-grid {
  display: grid; gap: var(--s-3);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.lang-tile {
  background: var(--paper); padding: var(--s-5);
  border: 1px solid var(--grey-100); border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}
.lang-tile:hover { border-color: var(--gold); transform: translateY(-2px); }
.lang-tile__name {
  font-family: var(--display); font-size: 1.5rem;
  color: var(--ink); font-weight: 600;
  margin-bottom: 0.25rem;
}
.lang-tile__native {
  font-size: var(--t-xs); letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600;
  margin-bottom: var(--s-3);
}
.lang-tile__markets { font-size: var(--t-sm); color: var(--grey-500); }

/* ---------- Quote / testimonial ---------- */
.pull-quote {
  text-align: center; max-width: 820px; margin: 0 auto;
  padding: var(--s-8) 0;
}
.pull-quote__mark {
  font-family: var(--display); font-size: 5rem; color: var(--gold);
  line-height: 0.5; display: block; margin-bottom: var(--s-3);
}
.pull-quote blockquote {
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.375rem, 2.4vw, 1.875rem);
  line-height: 1.45; color: var(--ink); font-weight: 500;
  margin-bottom: var(--s-5);
}
.pull-quote cite {
  font-style: normal; font-size: var(--t-xs);
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--grey-500); font-weight: 600;
}

/* ---------- Booking strip ---------- */
.book-strip {
  background: linear-gradient(135deg, var(--ink) 0%, var(--black-soft) 100%);
  color: var(--cream);
  padding: var(--s-9) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.book-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('../images/stadium.png');
  background-size: cover; background-position: center;
  opacity: 0.12;
  filter: grayscale(1);
}
.book-strip > .container { position: relative; z-index: 1; }
.book-strip h2 { color: var(--cream); margin-bottom: var(--s-3); }
.book-strip p { color: rgba(247,243,234,0.85); max-width: 60ch; margin: 0 auto var(--s-5); }
.book-strip__phone {
  display: block;
  font-family: var(--display); font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold-light); font-weight: 500;
  letter-spacing: 0.02em;
  margin: var(--s-5) 0;
}
.book-strip__cta { display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: center; }

/* ---------- Footer ---------- */
.footer {
  background: var(--black);
  color: rgba(247,243,234,0.7);
  padding: var(--s-9) 0 var(--s-5);
}
.footer__grid {
  display: grid; gap: var(--s-7);
  grid-template-columns: 1.4fr repeat(3, 1fr);
  margin-bottom: var(--s-8);
}
.footer__brand img { width: 56px; height: 56px; margin-bottom: var(--s-4); }
.footer__brand h4 {
  font-family: var(--display); font-size: 1.25rem;
  color: var(--cream); font-weight: 600;
  margin-bottom: var(--s-3);
}
.footer__brand p { font-size: var(--t-sm); line-height: 1.7; max-width: 36ch; color: rgba(247,243,234,0.78); }
.footer__brand p a { color: var(--gold-light); border-bottom: 1px solid rgba(232,211,139,0.4); padding-bottom: 1px; }
.footer__brand p a:hover { color: var(--cream); border-color: var(--cream); }
.footer__col h4 {
  font-family: var(--sans); font-size: var(--t-eyebrow);
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-light); font-weight: 600;
  margin-bottom: var(--s-4);
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer__col a { font-size: var(--t-sm); color: rgba(247,243,234,0.7); }
.footer__col a:hover { color: var(--gold-light); }
.footer__bottom {
  border-top: 1px solid rgba(247,243,234,0.12);
  padding-top: var(--s-5);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--s-4);
  font-size: var(--t-xs);
  color: rgba(247,243,234,0.5);
  letter-spacing: 0.05em;
}

/* ---------- Body copy article ---------- */
.prose {
  max-width: 70ch;
}
.prose p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--grey-700);
  margin-bottom: var(--s-4);
}
.prose p:first-of-type::first-letter {
  font-family: var(--display);
  font-size: 2.75rem; line-height: 0.9;
  float: left;
  padding: 0.35rem 0.45rem 0 0;
  color: var(--gold-deep);
  font-weight: 600;
}
.prose p strong { color: var(--ink); font-weight: 600; }

/* ---------- Service matrix table ---------- */
.matrix {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--t-sm);
  background: var(--paper);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  overflow: hidden;
}
.matrix th, .matrix td {
  padding: var(--s-4) var(--s-5);
  text-align: left;
  border-bottom: 1px solid var(--grey-100);
  vertical-align: top;
}
.matrix th {
  background: var(--cream-soft);
  font-family: var(--sans); font-weight: 600;
  font-size: var(--t-xs); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink);
  width: 30%;
}
.matrix td { color: var(--grey-700); }
.matrix tr:last-child th, .matrix tr:last-child td { border-bottom: 0; }
.matrix tr:hover { background: var(--cream-soft); }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--grey-100);
  padding: var(--s-5) 0;
  cursor: pointer;
}
.faq summary {
  font-family: var(--display);
  font-size: 1.25rem; font-weight: 600;
  color: var(--ink);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--s-4);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font-size: 1.5rem; color: var(--gold-deep); font-weight: 300;
  transition: transform 0.3s;
}
.faq details[open] summary::after { content: '−'; }
.faq p { margin-top: var(--s-3); font-size: var(--t-base); color: var(--grey-700); }

/* ---------- Floating CTA stack (Reserve + WhatsApp) ---------- */
.floating-cta {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 95;
  align-items: flex-end;
}
.reserve-float, .wa-float {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.22), 0 2px 6px rgba(0,0,0,0.12);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}
.reserve-float {
  background: linear-gradient(135deg, #d4b25a 0%, var(--gold-deep) 60%, #a87f2f 100%);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,0.25);
}
.reserve-float__icon { font-size: 1rem; line-height: 1; }
.wa-float {
  background: #25D366;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}
.wa-float svg { display: block; }
.reserve-float:hover, .wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.28), 0 3px 8px rgba(0,0,0,0.14);
}

/* ---------- WhatsApp inline button variant ---------- */
.btn--whatsapp {
  background: #25D366;
  color: #fff;
  border: 1px solid #25D366;
}
.btn--whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  color: #fff;
}
.btn--whatsapp .wa-icon { margin-right: 0.25rem; }

/* ---------- Header WhatsApp link in top bar ---------- */
.header__top-wa a {
  color: #6ee7a3;
  text-decoration: none;
  font-weight: 500;
}
.header__top-wa a:hover { color: #25D366; }

/* ---------- Responsive ---------- */
html, body { overflow-x: hidden; max-width: 100%; }

@media (max-width: 900px) {
  .editorial, .editorial--reverse { grid-template-columns: 1fr; }
  .editorial--reverse > :first-child { order: 0; }
  .editorial__visual, .editorial__visual--portrait { aspect-ratio: 16/10; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: auto; }
  .hero__inner { padding: var(--s-9) var(--gutter) var(--s-7); }
  .hero__meta { gap: var(--s-4); }
  .city-hero__inner { padding: var(--s-8) var(--gutter) var(--s-6); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item strong { font-size: 2.25rem; }
}
@media (max-width: 720px) {
  /* Mobile nav drawer — uses transform so it doesn't expand horizontal scroll */
  .menu-toggle { display: flex; }
  .nav {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(82%, 320px);
    background: var(--paper); flex-direction: column; align-items: stretch;
    padding: var(--s-9) var(--s-6); gap: var(--s-2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 100;
  }
  .nav.is-open { transform: translateX(0); }
  .nav a { padding: var(--s-3) 0; font-size: 1.125rem; border-bottom: 1px solid var(--grey-100); }
  .nav a:last-child { border-bottom: 0; }
  .nav__cta { margin-top: var(--s-3); justify-content: center; }

  /* Header top bar — keep concise on mobile */
  .header__top-inner { flex-wrap: wrap; gap: 0.25rem; padding: 0.4rem var(--gutter); }
  .header__top { font-size: 0.65rem; }
  .header__top > .header__top-inner > span:first-child { display: none; }
  .header__top-meta { gap: var(--s-3); font-size: 0.7rem; flex-wrap: wrap; }
  .header__main { padding: var(--s-3) var(--gutter); }
  .header__brand { font-size: 0.95rem; }
  .header__brand small { font-size: 0.6rem; }
  .header__logo img { width: 42px; height: 42px; }

  /* Hero */
  .hero h1 { font-size: clamp(2rem, 8vw, 2.75rem); }
  .hero h1 br { display: none; }
  .hero__sub { font-size: 1rem; }
  .hero__meta { gap: var(--s-3) var(--s-5); margin-top: var(--s-5); padding-top: var(--s-4); }
  .hero__meta-item strong { font-size: 1.125rem; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }

  /* City hero */
  .city-hero h1 { font-size: 1.6rem; }
  .city-hero__sub { font-size: 1rem; }
  .city-hero__facts { grid-template-columns: 1fr 1fr; gap: var(--s-4); }

  /* Section padding tighter on mobile */
  .section { padding: var(--s-7) 0; }
  .section-head h2 { font-size: clamp(1.5rem, 5vw, 1.875rem); }

  /* Trust strip — already 2x2 from earlier rule, refine */
  .trust__item { font-size: 0.78rem; padding: var(--s-3) var(--s-2); }

  /* Stats grid */
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }

  /* Languages tiles */
  .langs-grid { grid-template-columns: 1fr; }

  /* City service matrix table — make it readable on phone */
  .matrix, .matrix tbody, .matrix tr { display: block; width: 100%; }
  .matrix thead { display: none; }
  .matrix tr {
    border-bottom: 1px solid var(--grey-100);
    padding: var(--s-4) 0;
  }
  .matrix tr:last-child { border-bottom: 0; }
  .matrix th, .matrix td {
    display: block; width: 100%;
    padding: 0.25rem var(--s-4);
    border-bottom: 0;
    text-align: left;
  }
  .matrix th {
    background: transparent;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: var(--gold-deep);
    margin-bottom: 0.25rem;
  }
  .matrix td {
    font-size: 0.875rem;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: anywhere;
  }

  /* Drop-cap softer on phone */
  .prose p:first-of-type::first-letter { font-size: 2.25rem; padding: 0.25rem 0.35rem 0 0; }

  /* Booking strip */
  .book-strip { padding: var(--s-7) 0; }
  .book-strip__phone { font-size: 1.875rem; }
  .book-strip__cta { flex-direction: column; align-items: stretch; }
  .book-strip__cta .btn { justify-content: center; }

  /* Footer */
  .footer { padding: var(--s-7) 0 var(--s-4); }
  .footer__grid { grid-template-columns: 1fr; gap: var(--s-5); margin-bottom: var(--s-5); }
  .footer__bottom { flex-direction: column; text-align: center; gap: var(--s-3); }
  .footer__col h4 { margin-bottom: var(--s-2); }

  /* Buttons full-width inside narrow containers */
  .btn { padding: 0.85rem 1.4rem; font-size: 0.8125rem; }

  /* Pull quote size */
  .pull-quote blockquote { font-size: 1.125rem; }
  .pull-quote__mark { font-size: 3rem; }

  /* Generic image safety */
  img { max-width: 100%; height: auto; }

  /* Container gutter slightly tighter */
  :root { --gutter: 1rem; }

  /* Floating CTA on phone — condensed */
  .floating-cta { right: 0.75rem; bottom: 0.75rem; gap: 0.5rem; }
  .reserve-float, .wa-float {
    padding: 0.7rem 1rem;
    font-size: 0.8125rem;
  }
  .reserve-float__label { font-size: 0.8125rem; }
  .wa-float__label { display: none; }
  .wa-float { padding: 0.7rem; }
}
@media (max-width: 420px) {
  .trust__inner { grid-template-columns: 1fr 1fr; }
  .city-hero__facts { grid-template-columns: 1fr 1fr; }
  .header__top { display: none; }
}
