/* ============================================================
   Location de yachts — Ultra Luxury Nautical CSS
   locationyachts.com | style.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

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

:root {
  --navy:   #0a1628;
  --navy2:  #0d1e38;
  --navy3:  #12284a;
  --gold:   #c5a44e;
  --gold2:  #d4b96a;
  --gold3:  #a8882f;
  --cream:  #faf5eb;
  --cream2: #f3ead6;
  --white:  #ffffff;
  --text:   #2c3e50;
  --text-light: #5a6a7e;
  --serif:  'Playfair Display', Georgia, serif;
  --serif2: 'Cormorant Garamond', Georgia, serif;
  --sans:   'Montserrat', sans-serif;
  --radius: 4px;
  --shadow: 0 8px 40px rgba(10,22,40,.18);
  --shadow-sm: 0 2px 12px rgba(10,22,40,.10);
  --trans: .3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

.section-label {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .6rem;
}

.section-title {
  font-family: var(--serif);
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-title.light { color: var(--cream); }
.section-label.light { color: var(--gold2); }

p.lead {
  font-family: var(--serif2);
  font-size: 1.18rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
}

/* ── UTILITIES ────────────────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container--narrow { max-width: 820px; }
.container--wide   { max-width: 1440px; }

.section-pad { padding: 6rem 0; }
.section-pad--lg { padding: 8rem 0; }
.section-pad--sm { padding: 3.5rem 0; }

.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-cream  { color: var(--cream); }
.text-navy   { color: var(--navy); }

.bg-navy  { background: var(--navy); }
.bg-navy2 { background: var(--navy2); }
.bg-cream { background: var(--cream); }
.bg-cream2 { background: var(--cream2); }

.divider-gold {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1.2rem auto 2rem;
}
.divider-gold.left { margin-left: 0; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .9rem 2.4rem;
  border-radius: var(--radius);
  transition: var(--trans);
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(197,164,78,.35);
}

.btn-outline-gold {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-outline-cream {
  background: transparent;
  border: 1.5px solid var(--cream);
  color: var(--cream);
}
.btn-outline-cream:hover {
  background: var(--cream);
  color: var(--navy);
}

/* ── HEADER / NAV ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--trans), box-shadow var(--trans), padding var(--trans);
  padding: 1.4rem 0;
}

.site-header.scrolled {
  background: rgba(10,22,40,.97);
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
  padding: .9rem 0;
  backdrop-filter: blur(12px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo img {
  height: 52px;
  width: auto;
  transition: height var(--trans);
}
.site-header.scrolled .site-logo img { height: 42px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.site-nav a {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  position: relative;
  transition: color var(--trans);
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--trans);
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--gold);
}
.site-nav a:hover::after,
.site-nav a.active::after { width: 100%; }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: .55rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600;
}
.nav-cta:hover { background: var(--gold2); }
.nav-cta::after { display: none !important; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: var(--trans);
}

/* ── VIDEO HERO ───────────────────────────────────────────── */
.video-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-hero video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  object-fit: cover;
  z-index: 0;
}

.video-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,22,40,.55) 0%,
    rgba(10,22,40,.90) 55%,
    rgba(10,22,40,.97) 100%
  );
  z-index: 1;
}

.video-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--cream);
  padding: 0 2rem;
  max-width: 900px;
}

.video-hero__eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}

.video-hero__title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 30px rgba(0,0,0,.4);
}

.video-hero__title em {
  font-style: italic;
  color: var(--gold);
}

.video-hero__sub {
  font-family: var(--serif2);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 300;
  color: rgba(250,245,235,.85);
  margin-bottom: 2.8rem;
  line-height: 1.7;
}

.video-hero__btns {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.5);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero-scroll__line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .4; transform: scaleY(1); }
  50%      { opacity: 1;  transform: scaleY(1.15); }
}

/* ── PAGE HERO (non-video) ────────────────────────────────── */
.page-hero {
  height: 480px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,.4) 0%, rgba(10,22,40,.88) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 0 2rem 3.5rem;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  color: var(--cream);
}
.page-hero__breadcrumb {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(250,245,235,.55);
  margin-bottom: .8rem;
}
.page-hero__breadcrumb a { color: var(--gold); }
.page-hero__breadcrumb span { margin: 0 .5rem; }

/* ── INTRO / ABOUT SECTION ────────────────────────────────── */
.intro-section {
  background: var(--cream);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro-img {
  position: relative;
}
.intro-img img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius);
}
.intro-img__frame {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 70%;
  height: 70%;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}
.intro-text p {
  color: var(--text-light);
  margin-bottom: 1.2rem;
}
.intro-text p a {
  color: var(--gold3);
  border-bottom: 1px solid rgba(197,164,78,.4);
  transition: var(--trans);
}
.intro-text p a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.stats-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream2);
}
.stat-item__num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-item__label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: .3rem;
}

/* ── SERVICES GRID ────────────────────────────────────────── */
.services-section { background: var(--navy); }
.services-header { text-align: center; margin-bottom: 3.5rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
}

.service-card {
  background: var(--navy2);
  padding: 2.8rem 2rem;
  text-align: center;
  transition: background var(--trans), transform var(--trans);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--trans);
}
.service-card:hover { background: var(--navy3); transform: translateY(-4px); }
.service-card:hover::before { width: 60%; }

.service-card__icon {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  display: block;
}
.service-card__title {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: .7rem;
}
.service-card__desc {
  font-size: .82rem;
  color: rgba(250,245,235,.55);
  line-height: 1.6;
}

/* ── DESTINATIONS BANNER ──────────────────────────────────── */
.destinations-banner {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: center;
}
.destinations-banner__bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/vue-mediterannee.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.destinations-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,.72);
}
.destinations-banner__content {
  position: relative;
  z-index: 1;
  color: var(--cream);
  text-align: center;
}
.dest-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: center;
  margin-top: 2rem;
}
.dest-pill {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid rgba(197,164,78,.5);
  color: var(--gold2);
  padding: .5rem 1.2rem;
  border-radius: 50px;
  transition: var(--trans);
}
.dest-pill:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* ── TWO-COL CTA ──────────────────────────────────────────── */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.cta-split__img {
  position: relative;
  overflow: hidden;
}
.cta-split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.cta-split__img:hover img { transform: scale(1.04); }

.cta-split__text {
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 4rem;
}
.cta-split__text-inner { max-width: 480px; }
.cta-split__text h2 { color: var(--cream); }
.cta-split__text p {
  color: rgba(250,245,235,.7);
  margin: 1.2rem 0 2rem;
  font-size: .95rem;
}

/* ── BLOG / ESCALES GRID ──────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans), box-shadow var(--trans);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.blog-card__img {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.blog-card:hover .blog-card__img img { transform: scale(1.06); }

.blog-card__cat {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 2px;
}
.blog-card__body { padding: 1.8rem; }
.blog-card__date {
  font-size: .72rem;
  color: var(--text-light);
  letter-spacing: .08em;
  margin-bottom: .6rem;
}
.blog-card__title {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: .8rem;
  line-height: 1.3;
}
.blog-card__excerpt {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.blog-card__link {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold3);
  border-bottom: 1px solid rgba(197,164,78,.4);
  transition: var(--trans);
}
.blog-card__link:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* ── ARTICLE PAGE ─────────────────────────────────────────── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3.5rem;
  align-items: start;
}
.article-body h2 {
  font-size: 1.6rem;
  margin: 2.2rem 0 .8rem;
  color: var(--navy);
}
.article-body h3 {
  font-size: 1.2rem;
  margin: 1.8rem 0 .6rem;
  color: var(--navy);
}
.article-body p {
  color: var(--text-light);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}
.article-body ul, .article-body ol {
  padding-left: 1.5rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}
.article-body li { margin-bottom: .5rem; line-height: 1.7; }
.article-body .article-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 2rem 0;
}
.article-meta {
  display: flex;
  gap: 2rem;
  font-size: .78rem;
  color: var(--text-light);
  padding: 1.2rem 0;
  border-top: 1px solid var(--cream2);
  border-bottom: 1px solid var(--cream2);
  margin-bottom: 2rem;
}
.article-sidebar { position: sticky; top: 100px; }
.sidebar-widget {
  background: var(--navy);
  padding: 2rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}
.sidebar-widget h4 {
  font-family: var(--serif);
  color: var(--cream);
  margin-bottom: 1.2rem;
  font-size: 1rem;
  border-bottom: 1px solid rgba(197,164,78,.3);
  padding-bottom: .7rem;
}
.sidebar-links { list-style: none; }
.sidebar-links li {
  border-bottom: 1px solid rgba(250,245,235,.08);
}
.sidebar-links a {
  display: block;
  font-size: .82rem;
  color: rgba(250,245,235,.7);
  padding: .7rem 0;
  transition: color var(--trans);
}
.sidebar-links a:hover { color: var(--gold); }

/* ── FLEET CARDS ──────────────────────────────────────────── */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2.2rem;
}
.fleet-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans), box-shadow var(--trans);
}
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.fleet-card__img {
  height: 260px;
  overflow: hidden;
}
.fleet-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.fleet-card:hover .fleet-card__img img { transform: scale(1.05); }

.fleet-card__body { padding: 2rem; }
.fleet-card__badge {
  display: inline-block;
  background: var(--cream2);
  color: var(--gold3);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 2px;
  margin-bottom: .8rem;
}
.fleet-card__title {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: .6rem;
}
.fleet-card__desc {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.fleet-card__specs {
  display: flex;
  gap: 1.2rem;
  border-top: 1px solid var(--cream2);
  padding-top: 1.2rem;
  margin-bottom: 1.5rem;
}
.spec-item {
  text-align: center;
}
.spec-item__val {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}
.spec-item__key {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ── CONTACT FORM ─────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--text-light); margin-bottom: 1.5rem; }
.contact-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-feature__icon {
  font-size: 1.6rem;
  width: 3rem;
  flex-shrink: 0;
}
.contact-feature__title {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: .2rem;
}
.contact-feature__text {
  font-size: .85rem;
  color: var(--text-light);
}

.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 1.5px solid var(--cream2);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197,164,78,.12);
}
.form-group textarea { height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(250,245,235,.65);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(197,164,78,.15);
}
.footer-brand p {
  font-size: .85rem;
  line-height: 1.7;
  margin-top: 1.2rem;
  max-width: 280px;
}
.footer-logo img { height: 48px; }

.footer-col h4 {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 1.2rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a {
  font-size: .83rem;
  color: rgba(250,245,235,.55);
  transition: color var(--trans);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  text-align: center;
  padding: 1.8rem 0;
  font-size: .75rem;
  color: rgba(250,245,235,.35);
}
.footer-bottom a { color: rgba(197,164,78,.6); transition: color var(--trans); }
.footer-bottom a:hover { color: var(--gold); }

/* ── SITEMAP ──────────────────────────────────────────────── */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}
.sitemap-col h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.sitemap-col ul { list-style: none; }
.sitemap-col li { margin-bottom: .45rem; }
.sitemap-col a {
  font-size: .85rem;
  color: var(--text-light);
  transition: color var(--trans);
}
.sitemap-col a:hover { color: var(--gold3); }

/* ── 404 ──────────────────────────────────────────────────── */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem;
  background: var(--navy);
}
.error-num {
  font-family: var(--serif);
  font-size: clamp(6rem, 18vw, 14rem);
  font-weight: 700;
  color: rgba(197,164,78,.12);
  line-height: 1;
  display: block;
}
.error-page h1 { color: var(--cream); margin-bottom: 1rem; }
.error-page p { color: rgba(250,245,235,.6); margin-bottom: 2.5rem; }

/* ── TESTIMONIAL ──────────────────────────────────────────── */
.testimonials { background: var(--navy2); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: var(--navy3);
  padding: 2.2rem;
  border-radius: var(--radius);
  position: relative;
  border-left: 3px solid var(--gold);
}
.testimonial-card__quote {
  font-family: var(--serif2);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(250,245,235,.8);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.testimonial-card__author {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}
.testimonial-card__role {
  font-size: .75rem;
  color: rgba(250,245,235,.4);
  margin-top: .2rem;
}
.stars {
  color: var(--gold);
  font-size: .9rem;
  margin-bottom: .8rem;
  letter-spacing: 2px;
}

/* ── HIGHLIGHT BAND ──────────────────────────────────────────*/
.highlight-band {
  background: var(--gold);
  padding: 1.2rem 0;
  text-align: center;
}
.highlight-band p {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--navy);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .intro-grid,
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .cta-split { grid-template-columns: 1fr; }
  .cta-split__img { height: 380px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}
@media (max-width: 768px) {
  .site-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 999;
  }
  .site-nav.open { display: flex; }
  .site-nav a { font-size: 1.1rem; }
  .nav-toggle { display: flex; z-index: 1001; }
  .footer-grid { grid-template-columns: 1fr; }
  .fleet-grid,
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; gap: 1.5rem; }
  .section-pad { padding: 4rem 0; }
  .section-pad--lg { padding: 5rem 0; }
  .video-hero__btns { flex-direction: column; align-items: center; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .dest-pills { flex-direction: column; align-items: center; }
  .container { padding: 0 1.2rem; }
}
