/* ============================================================
   Mallorca Sails — main.css
   Order: reset → variables → typography → layout →
          nav → hero → components → utilities → responsive
   ============================================================ */

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
details summary { cursor: pointer; list-style: none; }
details summary::-webkit-details-marker { display: none; }

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:       #0D2B45;
  --navy-light: #183d5e;
  --gold:       #C9A84C;
  --gold-dark:  #B8922F;
  --teal:       #2BB5B2;
  --bg:         #F8F6F1;
  --text:       #1A1A2E;
  --muted:      #6B7280;
  --white:      #ffffff;
  --wa-green:   #25D366;
  --wa-dark:    #1da851;

  --sp-1: .5rem;   --sp-2: 1rem;   --sp-3: 1.5rem;
  --sp-4: 2rem;    --sp-6: 3rem;   --sp-8: 4rem;   --sp-12: 6rem;

  --radius:    10px;
  --radius-lg: 18px;
  --shadow:    0 4px 24px rgba(13,43,69,.12);
  --shadow-lg: 0 8px 40px rgba(13,43,69,.18);
  --transition: .25s ease;

  --max-w: 1200px;
  --nav-h: 72px;
}

/* ── Typography ─────────────────────────────────────────────── */
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem; line-height: 1.65;
  color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2; color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: var(--sp-2); }
h3 { font-size: 1.3rem; margin-bottom: var(--sp-1); }
p  { margin-bottom: var(--sp-2); color: var(--muted); }
strong { color: var(--text); font-weight: 600; }

/* ── Layout helpers ─────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-4); }
.section    { padding: var(--sp-12) 0; }
.section--alt { background: var(--white); }
.section--dark { background: var(--navy); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,.75); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-3); }
.flex   { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; max-width: 640px; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-primary, .btn-outline, .btn-whatsapp {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: .95rem;
  transition: all var(--transition); white-space: nowrap;
  font-family: 'Inter', sans-serif;
}
.btn-primary  { background: var(--gold); color: var(--navy); }
.btn-primary:hover  { background: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline  { border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover  { background: var(--white); color: var(--navy); }
.btn-whatsapp { background: var(--wa-green); color: var(--white); }
.btn-whatsapp:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline--dark { border: 2px solid var(--navy); color: var(--navy); border-radius: 50px; padding: .85rem 2rem; font-weight: 600; font-size: .95rem; display: inline-flex; align-items: center; gap: .5rem; transition: all var(--transition); }
.btn-outline--dark:hover { background: var(--navy); color: var(--white); }
.cta-group { display: flex; gap: var(--sp-2); flex-wrap: wrap; }

/* ── Navigation ─────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(13,43,69,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background var(--transition);
}
.site-nav .container { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--white); font-weight: 700;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: var(--sp-3); }
.nav-links a { color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 500; transition: color var(--transition); padding: .4rem 0; }
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-links a.btn-primary { display: inline-flex; align-items: center; padding: .65rem 1.6rem; line-height: 1; color: var(--navy); background: var(--gold); border-radius: 50px; font-weight: 700; white-space: nowrap; }
.nav-links a.btn-primary:hover { background: var(--gold-dark); color: var(--navy); transform: translateY(-2px); }
.nav-cta { margin-left: var(--sp-2); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
@media (max-width: 900px) {
  .nav-links { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0; background: var(--navy); flex-direction: column; align-items: center; justify-content: center; gap: var(--sp-4); z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.3rem; }
  .nav-cta { margin-left: 0; }
  .nav-hamburger { display: flex; }
}

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  background: var(--white); padding: .75rem 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  margin-top: var(--nav-h);
}
.breadcrumb ol { display: flex; gap: .5rem; align-items: center; font-size: .85rem; color: var(--muted); list-style: none; margin: 0; padding: 0; }
.breadcrumb li + li::before { content: '›'; margin-right: .5rem; }
.breadcrumb a { color: var(--navy); }
.breadcrumb li:last-child { color: var(--text); font-weight: 500; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.hero--page { min-height: 50vh; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: var(--navy);
}
.hero__bg img, .hero__bg video {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,43,69,.72) 0%, rgba(13,43,69,.45) 100%);
}
.hero video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero video + .hero__bg::after { z-index: 1; }
.hero__content {
  position: relative; z-index: 2;
  max-width: 760px; padding: var(--sp-8) var(--sp-4);
  color: var(--white);
}
.hero__content h1 { color: var(--white); margin-bottom: var(--sp-2); text-shadow: 0 2px 16px rgba(0,0,0,.3); }
.hero__content p  { color: rgba(255,255,255,.88); font-size: 1.15rem; max-width: 560px; margin: 0 auto var(--sp-4); }
.hero__badge {
  display: inline-block; background: var(--gold); color: var(--navy);
  padding: .35rem 1rem; border-radius: 50px;
  font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: var(--sp-2);
}
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; animation: bounce 2s infinite;
}
.hero__scroll svg { width: 28px; height: 28px; stroke: rgba(255,255,255,.7); fill: none; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card__img { aspect-ratio: 3/2; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card__img img { transform: scale(1.04); }
.card__body { padding: var(--sp-3); flex: 1; display: flex; flex-direction: column; }
.card__body h3 { color: var(--navy); }
.card__meta { display: flex; flex-wrap: wrap; gap: .4rem var(--sp-2); margin-bottom: var(--sp-2); }
.card__meta li { font-size: .82rem; color: var(--muted); }
.card__meta li strong { color: var(--text); }
.card__badge {
  display: inline-block; background: var(--gold); color: var(--navy);
  padding: .2rem .75rem; border-radius: 50px;
  font-size: .78rem; font-weight: 700; margin-bottom: var(--sp-1);
}
.card__highlights { margin: var(--sp-1) 0 var(--sp-2); }
.card__highlights li { font-size: .88rem; color: var(--muted); padding: .2rem 0; display: flex; gap: .4rem; }
.card__highlights li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.card__best-for { font-size: .85rem; color: var(--muted); font-style: italic; margin-bottom: var(--sp-2); }
.card__body .btn-primary { margin-top: auto; align-self: flex-start; }
.card__desc { font-size: .9rem; }

/* Service cards (icon variant) */
.service-card { text-align: center; padding: var(--sp-4); }
.service-card__icon { font-size: 2.8rem; margin-bottom: var(--sp-2); }
.service-card h3 { margin-bottom: var(--sp-1); }

/* ── Why-us icon blocks ─────────────────────────────────────── */
.icon-block { text-align: center; padding: var(--sp-3); }
.icon-block__icon { width: 64px; height: 64px; background: rgba(201,168,76,.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto var(--sp-2); font-size: 1.8rem; }
.icon-block h3 { font-size: 1rem; margin-bottom: .4rem; }
.icon-block p  { font-size: .88rem; margin: 0; }

/* ── Timeline ("A Day with Us") ─────────────────────────────── */
.timeline { display: flex; gap: 0; counter-reset: step; }
.timeline-step {
  flex: 1; text-align: center; padding: var(--sp-3) var(--sp-2);
  position: relative;
}
.timeline-step + .timeline-step::before { content: ''; position: absolute; top: 40px; left: -50%; width: 100%; height: 2px; background: rgba(201,168,76,.3); z-index: 0; }
.timeline-step__num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-2); position: relative; z-index: 1;
}
.timeline-step__icon { font-size: 1.5rem; margin-bottom: .5rem; }
.timeline-step h4 { font-size: .95rem; font-family: 'Inter', sans-serif; font-weight: 600; color: var(--navy); margin-bottom: .25rem; }
.timeline-step p  { font-size: .82rem; margin: 0; }

/* ── Testimonials ───────────────────────────────────────────── */
.testimonial {
  background: var(--white); border-radius: var(--radius-lg);
  padding: var(--sp-4); box-shadow: var(--shadow);
  position: relative;
}
.testimonial::before { content: '"'; position: absolute; top: .5rem; left: 1.5rem; font-family: 'Playfair Display', serif; font-size: 5rem; color: var(--gold); line-height: 1; opacity: .25; }
.testimonial__text { font-style: italic; color: var(--text); margin-bottom: var(--sp-2); position: relative; z-index: 1; }
.testimonial__author { font-weight: 600; color: var(--navy); font-size: .9rem; }
.testimonial__meta   { font-size: .82rem; color: var(--muted); }
.testimonial__stars  { color: var(--gold); font-size: 1rem; margin-bottom: .5rem; }

/* ── FAQ (details/summary) ──────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--sp-2) 0;
  font-weight: 600; color: var(--navy); font-size: 1rem;
  transition: color var(--transition);
}
.faq-item summary:hover { color: var(--gold-dark); }
.faq-item summary::after { content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--gold); transition: transform var(--transition); flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 0 var(--sp-2); color: var(--muted); font-size: .95rem; }
.faq-item .faq-body p { margin-bottom: .5rem; }
.faq-item .faq-body p:last-child { margin: 0; }

/* ── Included/Not included table ────────────────────────────── */
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); margin: var(--sp-3) 0; }
.included-list li { display: flex; gap: .5rem; padding: .35rem 0; font-size: .92rem; border-bottom: 1px solid rgba(0,0,0,.05); }
.included-list li:last-child { border: none; }
.tick { color: var(--teal); font-weight: 700; }
.cross { color: #e05252; font-weight: 700; }

/* ── Photo strip / gallery grid ─────────────────────────────── */
.photo-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; }
.photo-strip a, .photo-strip .ps-item { overflow: hidden; aspect-ratio: 1; }
.photo-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.photo-strip a:hover img { transform: scale(1.08); }

.gallery-grid { columns: 3; gap: var(--sp-2); }
.gallery-item { break-inside: avoid; margin-bottom: var(--sp-2); position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; display: block; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(13,43,69,.75)); color: var(--white); padding: var(--sp-2) var(--sp-2) var(--sp-1); font-size: .82rem; font-weight: 500; opacity: 0; transition: opacity .25s; }
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ── Lightbox ───────────────────────────────────────────────── */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.9); z-index: 1000; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox__img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); }
.lightbox__close { position: fixed; top: var(--sp-3); right: var(--sp-3); color: var(--white); font-size: 2.5rem; line-height: 1; cursor: pointer; }
.lightbox__caption { position: fixed; bottom: var(--sp-3); left: 0; right: 0; text-align: center; color: rgba(255,255,255,.75); font-size: .9rem; }

/* ── Contact section ─────────────────────────────────────────── */
.contact-box { background: var(--white); border-radius: var(--radius-lg); padding: var(--sp-6); box-shadow: var(--shadow-lg); text-align: center; max-width: 620px; margin: 0 auto; }
.contact-box .email-display { font-size: 1.05rem; color: var(--navy); font-weight: 600; margin: var(--sp-2) 0; word-break: break-all; }
.contact-box .reply-note { font-size: .85rem; color: var(--muted); margin-bottom: var(--sp-3); }
.contact-email-template { background: var(--bg); border-radius: var(--radius); padding: var(--sp-3); text-align: left; margin: var(--sp-3) 0; }
.contact-email-template pre { font-family: 'Inter', monospace; font-size: .82rem; color: var(--muted); white-space: pre-wrap; line-height: 1.6; }

/* ── Maps iframe ─────────────────────────────────────────────── */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ── Crew cards ─────────────────────────────────────────────── */
.crew-card { text-align: center; }
.crew-card__img { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; margin: 0 auto var(--sp-2); border: 4px solid var(--gold); }
.crew-card h3 { margin-bottom: .25rem; }
.crew-card .role { color: var(--gold); font-size: .85rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .5rem; }

/* ── Boats section ───────────────────────────────────────────── */
.boat-card { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); align-items: center; padding: var(--sp-4); background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.boat-card.reverse { }
.boat-card__img { border-radius: var(--radius); overflow: hidden; }
.boat-card__img img { width: 100%; height: 280px; object-fit: cover; }
.boat-specs { margin: var(--sp-2) 0; }
.boat-specs li { display: flex; gap: .5rem; font-size: .9rem; padding: .3rem 0; border-bottom: 1px solid rgba(0,0,0,.05); }
.boat-specs li:last-child { border: none; }
.boat-specs strong { color: var(--navy); min-width: 90px; }

/* ── Practical info boxes ─────────────────────────────────────── */
.info-box { background: var(--white); border-radius: var(--radius-lg); padding: var(--sp-4); box-shadow: var(--shadow); }
.info-box h3 { display: flex; gap: .6rem; align-items: center; margin-bottom: var(--sp-2); }
.info-box ul li { display: flex; gap: .5rem; padding: .3rem 0; font-size: .92rem; color: var(--muted); border-bottom: 1px solid rgba(0,0,0,.05); }
.info-box ul li:last-child { border: none; }
.info-box ul li::before { content: '→'; color: var(--gold); flex-shrink: 0; }

.season-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.season-table th { background: var(--navy); color: var(--white); padding: .6rem var(--sp-2); text-align: left; }
.season-table td { padding: .6rem var(--sp-2); border-bottom: 1px solid rgba(0,0,0,.07); }
.season-table tr:nth-child(even) td { background: rgba(43,181,178,.06); }
.badge-peak { background: var(--gold); color: var(--navy); padding: .15rem .6rem; border-radius: 50px; font-size: .75rem; font-weight: 700; }
.badge-shoulder { background: var(--teal); color: var(--white); padding: .15rem .6rem; border-radius: 50px; font-size: .75rem; font-weight: 700; }
.badge-off { background: var(--muted); color: var(--white); padding: .15rem .6rem; border-radius: 50px; font-size: .75rem; font-weight: 700; }

/* ── CTA banner ─────────────────────────────────────────────── */
.cta-banner { background: var(--navy); padding: var(--sp-12) 0; text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: var(--sp-1); }
.cta-banner p  { color: rgba(255,255,255,.75); margin-bottom: var(--sp-4); }
.cta-banner .cta-group { justify-content: center; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer { background: #081d2f; color: rgba(255,255,255,.7); padding: var(--sp-8) 0 var(--sp-4); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: var(--sp-6); margin-bottom: var(--sp-6); }
.footer-brand .nav-logo { display: block; margin-bottom: var(--sp-2); font-size: 1.3rem; }
.footer-brand p { font-size: .88rem; max-width: 240px; }
.footer-col h4 { color: var(--white); font-family: 'Inter', sans-serif; font-size: .85rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: var(--sp-2); }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a { font-size: .88rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold); }
.footer-contact li { font-size: .88rem; display: flex; gap: .5rem; align-items: flex-start; padding: .25rem 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: var(--sp-3); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--sp-2); font-size: .82rem; }
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--gold); }

/* ── WhatsApp FAB ────────────────────────────────────────────── */
.fab-whatsapp {
  position: fixed; bottom: var(--sp-4); right: var(--sp-4); z-index: 200;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa-green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.fab-whatsapp:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.55); }
.fab-whatsapp svg  { width: 28px; height: 28px; }

/* ── Scroll fade-in ─────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ── Utilities ──────────────────────────────────────────────── */
.mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mb-0 { margin-bottom: 0; }
.gold { color: var(--gold); }
.divider { height: 3px; width: 60px; background: var(--gold); border-radius: 2px; margin: var(--sp-2) auto var(--sp-4); }
.divider--left { margin-left: 0; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .timeline { flex-wrap: wrap; }
  .timeline-step { min-width: 45%; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { columns: 2; }
  .boat-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: var(--sp-8) 0; }
  .cta-group { flex-direction: column; align-items: flex-start; }
  .cta-banner .cta-group { align-items: center; }
  .timeline { flex-direction: column; }
  .timeline-step + .timeline-step::before { display: none; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-box { padding: var(--sp-3); }
  h1 { font-size: 2rem; }
}
