/* =========================================================
   Saigon Yacht Events — Luxury Yacht Rental in Ho Chi Minh City
   Rebuilt static site
   ========================================================= */

:root {
  --dark: #1d1e20;
  --services-bg: #0f0a14;
  --text-muted: #56585e;
  --text-muted-dark: #a9adb5;
  --white: #ffffff;
  --font-head: "Playfair Display", serif;   /* titres — police du proto3 */
  --font-base: "Nunito Sans", sans-serif;   /* texte — police du proto3 */
  --font-body: "Nunito Sans", sans-serif;
  --maxw: 1200px;
  /* palette du proto3 */
  --proto-ink: #20242A;
  --proto-grey: #6B7280;
  --proto-gold: #C9A96A;
  --proto-off: #FAFAF8;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-base);
  color: var(--dark);
  background: var(--services-bg);
  -webkit-font-smoothing: antialiased;
  /* pas d'overflow-x: hidden ici : il casse le backdrop-filter du header
     sur iOS/iPadOS (bug WebKit). Le carrousel large est déjà contenu par
     .collage (overflow: hidden), donc aucun débordement horizontal. */
}

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

/* ---------------- Header ---------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 72px);
  background-color: transparent;
  transition: background-color .3s ease-in-out, box-shadow .3s ease-in-out;
}
/* une fois scrollé : bandeau sombre semi-transparent + flou du contenu
   derrière (effet verre dépoli), au lieu d'un noir plein */
.site-header.scrolled {
  background-color: rgba(13, 19, 26, .6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, .1);
}

/* le PNG du logo contient déjà l'avatar, le nom, le numéro et les icônes */
.brand { display: block; line-height: 0; }
.brand-img { height: 82px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a { color: var(--white); font-family: var(--font-body); font-size: 16px; font-weight: 500; }
.nav-link.active { text-decoration: underline; text-underline-offset: 6px; }

/* language dropdown */
.lang { position: relative; }
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 0;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}
.lang-btn svg { width: 10px; height: 10px; transition: transform .2s; }
.lang.open .lang-btn svg { transform: rotate(180deg); }
.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 150px;
  background: #0d131a;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,.3);
  padding: 6px;
  display: none;
}
.lang.open .lang-menu { display: block; }
.lang-menu a {
  display: block;
  padding: 9px 14px;
  border-radius: 7px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
}
.lang-menu a:hover, .lang-menu a.active { background: rgba(255,255,255,.12); }

.fb {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
}
.fb svg { width: 40px; height: 40px; }

/* ---------------- Menu mobile (hamburger) ---------------- */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 6px 0;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 768px) {
  .site-header { padding: 10px 16px; }
  .brand-img { height: 60px; }
  .nav-toggle { display: block; }
  /* la nav devient un panneau déroulant sous le header */
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #0d131a;
    padding: 0 0 6px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, .35);
  }
  .site-header.menu-open { background-color: #0d131a; }
  .site-header.menu-open .main-nav { display: flex; }

  /* chaque entrée = ligne pleine largeur, alignée à gauche, avec séparateur */
  .main-nav .nav-link,
  .lang,
  .main-nav .fb {
    border-top: 1px solid rgba(255, 255, 255, .08);
  }
  .main-nav .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 16px 24px;
    width: 100%;
    text-decoration: none;
  }
  .main-nav .nav-link.active { color: var(--proto-gold); }
  /* icône maison ancrée à gauche, libellé centré */
  .main-nav .nav-link::before {
    content: "";
    width: 24px;
    height: 24px;
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 11 12 2l10 9'/%3E%3Cpath d='M4.5 9.5V22h15V9.5'/%3E%3C/svg%3E") no-repeat center / contain;
  }

  /* langue : les deux langues affichées directement (combo EN masqué) */
  .lang { display: flex; align-items: center; justify-content: center; width: 100%; position: relative; }
  .lang-btn { display: none; }
  /* icône globe ancrée à gauche, langues centrées */
  .lang::before {
    content: "";
    width: 24px;
    height: 24px;
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.5'%3E%3Ccircle cx='12' cy='12' r='11'/%3E%3Cellipse cx='12' cy='12' rx='4.6' ry='11'/%3E%3Cpath d='M1 12h22'/%3E%3C/svg%3E") no-repeat center / contain;
  }
  .lang-menu {
    position: static;
    display: flex;               /* les deux langues côte à côte */
    background: transparent;
    box-shadow: none;
    min-width: 0;
    padding: 0;
    margin: 0;
  }
  .lang-menu a {
    padding: 16px 16px;
    border-radius: 0;
    color: #fff;
    font-size: 16px;
    text-align: center;
  }
  .lang-menu a + a { margin-left: 16px; }
  .lang-menu a.active { color: var(--proto-gold); }
  .lang-menu a:hover { background: rgba(255, 255, 255, .06); }

  /* Facebook : icône ancrée à gauche, libellé centré */
  .main-nav .fb {
    width: 100%;
    justify-content: center;
    position: relative;
    padding: 14px 24px;
    margin: 0;
  }
  .main-nav .fb svg {
    width: 24px;
    height: 24px;
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
  }
  .main-nav .fb::after {
    content: "Facebook";
    color: #fff;
    font-family: var(--font-body);
    font-size: 16px;
  }
}

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  color: var(--white);
  padding: 130px 20px 60px;
}
/* fond du hero en vrai élément position:fixed (composité par le navigateur) :
   parfaitement figé, sans JS et sans saccade, sur TOUS les appareils iPad
   compris. On n'utilise PAS background-attachment: fixed (bogué/zoomé sur iOS).
   z-index -1 : peint au-dessus du fond du body mais derrière tout le contenu
   → visible à travers le hero (transparent), masqué par les sections opaques. */
.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10,20,35,.45) 0%, rgba(10,18,30,.55) 100%),
              url("../assets/img/hero-bg.webp") center/cover no-repeat;
}

.hero h1 {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(40px, 7vw, 72px);
  letter-spacing: -0.5px;
}
.stars {
  font-size: 16px;
  letter-spacing: 3px;
  margin: 6px 0 18px;
  color: #D9B36C; /* or de la maquette */
  text-shadow: 0 0 12px rgba(235, 211, 160, .45); /* léger halo doré */
}
.hero-sub {
  font-family: var(--font-base);
  font-weight: 600;
  font-size: clamp(18px, 2.4vw, 24px);
  margin-bottom: 20px;
}
.hero-lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  max-width: 760px;
  margin: 0 auto;
}

/* apparition du texte au chargement (effet riseIn de la maquette) :
   chaque ligne monte en fondu, l'une après l'autre */
.hero h1,
.hero .stars,
.hero-sub,
.hero-lead {
  opacity: 0;
  animation: riseIn 1.1s ease forwards;
}
.hero h1     { animation-delay: .3s; }
.hero .stars { animation-delay: .55s; }
.hero-sub    { animation-delay: .75s; }
.hero-lead   { animation-delay: .95s; }
/* les cadres penchés apparaissent un à un (délai posé en JS),
   le temps d'admirer le fond */
.collage-track img,
.collage-track video {
  opacity: 0;
  animation: riseIn .9s ease forwards;
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* le texte et le carrousel passent au-dessus des paillettes */
.hero h1, .hero .stars, .hero-sub, .hero-lead, .collage {
  position: relative;
  z-index: 2;
}

/* paillettes flottantes (effet lanternes de la maquette) :
   petites lueurs dorées qui montent lentement du bas du hero */
.lights {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.light {
  position: absolute;
  bottom: -4vh;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(235, 211, 160, .9), rgba(235, 211, 160, 0) 70%);
  animation: sparkleFloat linear infinite;
  opacity: 0;
}
@keyframes sparkleFloat {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  12%  { opacity: .75; }
  85%  { opacity: .35; }
  100% { transform: translateY(-108vh) translateX(4vw); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero h1, .hero .stars, .hero-sub, .hero-lead,
  .collage-track img, .collage-track video {
    animation: none;
    opacity: 1;
  }
  .light { animation: none; display: none; }
}

/* hero collage — carrousel lent de cadres penchés (photos et clips vidéo)
   masqués en parallélogramme comme l'original
   (mask SVG : M148 0 H0 L52 200 H200 Z sur viewBox 200x200) */
.collage {
  margin-top: 48px;
  width: 100%;
  overflow: hidden;
}
.collage-track {
  display: flex;
  align-items: flex-start;
  width: max-content;
  animation: collage-scroll 70s linear infinite; /* durée recalculée en JS */
  will-change: transform;
}
.collage:hover .collage-track { animation-play-state: paused; } /* pause au survol */
.collage-track img,
.collage-track video {
  width: clamp(180px, 21.24vw, 306px);
  aspect-ratio: 260 / 320;
  height: auto;
  object-fit: cover;
  margin-left: -26px; /* uniforme sur tous les éléments : les 2 jeux ont la même largeur */
  clip-path: polygon(0% 0%, 74% 0%, 100% 100%, 26% 100%);
  flex-shrink: 0;
}
.collage-track img:nth-child(even),
.collage-track video:nth-child(even) { margin-top: 24px; }
/* la piste contient 2 jeux identiques : -50 % = exactement un jeu → boucle invisible */
@keyframes collage-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .collage-track { animation: none; }
}

/* ---------------- Services (style du proto3) ---------------- */
.services {
  background: #fff;
  color: var(--proto-ink);
  padding: 96px 5vw;
  text-align: center;
}
.section-title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.15;
}
.services .section-title { color: var(--proto-ink); }
.eyebrow {
  font-size: 12px;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--proto-gold);
  font-weight: 600;
  display: block;
  margin-bottom: 14px;
}
.section-rule {
  width: 56px;
  height: 1px;
  background: var(--proto-gold);
  margin: 22px auto 0;
}
.section-intro {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  max-width: 640px;
  margin: 14px auto 0;
  color: var(--proto-grey);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: var(--maxw);
  margin: 60px auto 0;
}
.card { text-align: center; }
/* photo : zoom lent + cadre doré intérieur au survol */
.card .ph {
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 22px;
  position: relative;
}
.card .ph img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}
.card:hover .ph img { transform: scale(1.06); }
.card .ph::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 169, 106, 0);
  transition: all .5s ease;
}
.card:hover .ph::after {
  inset: 10px;
  border-color: rgba(201, 169, 106, .7);
}
/* titre : soulignement doré qui s'étire au survol */
.card h3 {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 22px;
  color: var(--proto-ink);
  margin-bottom: 8px;
}
.card h3::after {
  content: '';
  display: block;
  width: 34px;
  height: 1px;
  background: var(--proto-gold);
  margin: 12px auto 0;
  transition: width .4s ease;
}
.card:hover h3::after { width: 64px; }
.card p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--proto-grey);
  max-width: 330px;
  margin: 12px auto 0;
}

/* apparition au scroll (reveal du proto3) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .85s ease, transform .85s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .12s; }
.reveal.d2 { transition-delay: .24s; }
.reveal.d3 { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------------- Gallery ---------------- */
.gallery {
  background: #f8f5ef; /* beige très clair chaud — différence douce avec le blanc des Services */
  padding: 90px 20px 100px;
  text-align: center;
}
.gallery .section-title { color: var(--proto-ink); }
.gallery .section-intro { color: var(--proto-grey); margin-bottom: 56px; }
/* ---- galerie façon mur de polaroids ---- */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 10px; /* serré : avec les décalages, les polaroids se chevauchent légèrement */
  max-width: var(--maxw);
  margin: 56px auto 0;
  padding: 14px;
}
.grid img,
.grid video {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
/* le cadre polaroid : blanc, bord bas plus large pour la légende */
.grid a {
  display: block;
  position: relative;
  background: #fff;
  padding: 12px 12px 52px;
  box-shadow: 0 8px 22px rgba(32, 36, 42, .22);
  border-radius: 2px;
  /* --rot / --tx / --ty attribués individuellement en JS pour un désordre naturel */
  transform: rotate(var(--rot, 0deg)) translate(var(--tx, 0), var(--ty, 0));
  transition: transform .45s ease, box-shadow .45s ease;
}
/* au survol : le polaroid se redresse et se soulève */
.grid a:hover {
  transform: rotate(0deg) translate(var(--tx, 0), calc(var(--ty, 0px) - 4px)) scale(1.045);
  box-shadow: 0 18px 40px rgba(32, 36, 42, .3);
  z-index: 3;
}
/* IMPORTANT : l'apparition au scroll (.reveal.in) a une spécificité plus forte
   que .grid a — sans ces règles scopées, son transform écrase la rotation
   une fois l'animation finie, et tout redevient droit */
.grid a.reveal {
  opacity: 0;
  transform: rotate(var(--rot, 0deg)) translate(var(--tx, 0), calc(var(--ty, 0px) + 34px));
}
.grid a.reveal.in {
  opacity: 1;
  transform: rotate(var(--rot, 0deg)) translate(var(--tx, 0), var(--ty, 0));
}
.grid a.reveal.in:hover {
  transform: rotate(0deg) translate(var(--tx, 0), calc(var(--ty, 0px) - 4px)) scale(1.045);
}
@media (prefers-reduced-motion: reduce) {
  .grid a.reveal { opacity: 1; transform: rotate(var(--rot, 0deg)) translate(var(--tx, 0), var(--ty, 0)); }
}
/* légende manuscrite */
.grid .cap {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 8px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Caveat", cursive;
  font-size: 26px;
  font-weight: 500;
  color: #3d4148;
  transform: rotate(-1.2deg);
  white-space: nowrap;
  overflow: hidden;
}
/* page vietnamienne : Dancing Script (Caveat n'a pas les diacritiques VI) */
html[lang="vi"] .grid .cap {
  font-family: "Dancing Script", cursive;
  font-size: 21px;
}
/* badge lecture sur les vignettes vidéo */
.grid a.is-video::after {
  content: '▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(13, 19, 26, .55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  padding-left: 5px;
  pointer-events: none;
  transition: background .25s ease;
  z-index: 2; /* au-dessus du voile de survol */
}
.grid a.is-video:hover::after { background: rgba(13, 19, 26, .8); }

/* ---------------- Lightbox galerie ---------------- */
/* voile sombre séparé, placé SOUS la pile de polaroids (z 80 < 90 < 100) */
.lb-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(10, 12, 16, .88);
  display: none;
}
.lb-backdrop.open { display: block; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: transparent; /* le voile est géré par .lb-backdrop */
}
.lightbox.open { display: flex; }
/* la scène : le grand polaroid + les bordures de la pile qui dépassent */
.lb-stage { position: relative; }
.lb-pile {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.lb-pile i {
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, .38);
}
/* un rectangle grisé au dos : suggère la photo du polaroid d'en dessous */
.lb-pile i::after {
  content: '';
  position: absolute;
  inset: 14px 14px 58px;
  background: #eceae5;
}
.lb-pile i:nth-child(1) { transform: rotate(8deg)   translate(30px, 16px); }
.lb-pile i:nth-child(2) { transform: rotate(-11deg) translate(-34px, 8px); }
.lb-pile i:nth-child(3) { transform: rotate(4.5deg) translate(-14px, -22px); }
.lb-pile i:nth-child(4) { transform: rotate(-5deg)  translate(24px, -12px); }
.lb-pile i:nth-child(5) { transform: rotate(14deg)  translate(-6px, 30px); }
/* la pile apparaît juste après l'arrivée des polaroids volants */
.lightbox.open .lb-pile i { opacity: 0; animation: lbPileIn .45s ease both; }
.lightbox.open .lb-pile i:nth-child(1) { animation-delay: .30s; }
.lightbox.open .lb-pile i:nth-child(2) { animation-delay: .36s; }
.lightbox.open .lb-pile i:nth-child(3) { animation-delay: .42s; }
.lightbox.open .lb-pile i:nth-child(4) { animation-delay: .48s; }
.lightbox.open .lb-pile i:nth-child(5) { animation-delay: .54s; }
@keyframes lbPileIn { from { opacity: 0; } to { opacity: 1; } }

/* le grand polaroid sélectionné, au sommet de la pile */
.lb-polaroid {
  position: relative;
  background: #fff;
  padding: 16px 16px 72px;
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
  transform: rotate(-1.6deg);
}
.lightbox.open .lb-polaroid { animation: lbPop .5s ease .25s both; }
@keyframes lbPop {
  from { opacity: 0; transform: rotate(6deg) scale(.55); }
  to   { opacity: 1; transform: rotate(-1.6deg) scale(1); }
}
.lb-polaroid img,
.lb-polaroid video {
  display: block;
  max-width: min(76vw, 640px);
  max-height: 60vh;
}
.lb-cap {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  text-align: center;
  font-family: "Caveat", cursive;
  font-size: 32px;
  font-weight: 500;
  color: #3d4148;
  transform: rotate(-1deg);
  white-space: nowrap;
  overflow: hidden;
}
html[lang="vi"] .lb-cap { font-family: "Dancing Script", cursive; font-size: 25px; }

/* formation de la pile : les polaroids de la grille volent vers le centre */
.grid a.piling {
  transition: transform .65s cubic-bezier(.4, .1, .2, 1);
}
.lightbox button {
  position: absolute;
  background: none;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 40px;
  line-height: 1;
  padding: 14px;
  opacity: .75;
  transition: opacity .2s;
  z-index: 1;
}
.lightbox button:hover { opacity: 1; }
.lb-close { top: 10px; right: 18px; font-size: 52px; }
.lb-prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 12px; top: 50%; transform: translateY(-50%); }
.lb-counter {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  opacity: .8;
}
@media (max-width: 620px) {
  .lightbox img { max-width: 96vw; }
  .lightbox button { font-size: 30px; padding: 10px; }
  .lb-close { font-size: 40px; }
}

/* ---------------- Contact / Footer ----------------
   comme le site live : barre sombre — Contact | ✉ email | f */
.site-footer {
  background: #0d131a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px clamp(20px, 6vw, 87px);
}
.site-footer h5 {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 26px;
  color: #fff;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 24px;
  color: #fff;
}
.contact-link img { width: 46px; height: 46px; }
.contact-link:hover { text-decoration: underline; }

/* ---------------- Responsive ---------------- */
@media (max-width: 1000px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr; max-width: 460px; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .collage-track img,
  .collage-track video { width: 44vw; }
}
@media (max-width: 620px) {
  .hero { padding-top: 120px; }
  .site-footer { flex-direction: column; text-align: center; padding: 32px 20px; }
  .contact-link { font-size: 18px; }
  .contact-link img { width: 36px; height: 36px; }
}
