/*
╔══════════════════════════════════════════════════════════════╗
║             SHERWIN'S SEA ADVENTURES — DESIGN SYSTEM        ║
╠══════════════════════════════════════════════════════════════╣
║  AESTHETIC: Nautical Luxury — warm ocean tones, editorial   ║
║  typography, organic textures, horizon-inspired layouts     ║
╠══════════════════════════════════════════════════════════════╣
║  COLOR PALETTE                                              ║
║  --deep:     #0A1628  (deep ocean navy)                     ║
║  --navy:     #152A4A  (rich navy)                           ║
║  --teal:     #1A6B7C  (ocean teal)                          ║
║  --aqua:     #2DA4B5  (bright aqua accent)                  ║
║  --sand:     #E8D5A3  (warm sand)                           ║
║  --coral:    #E87B5A  (coral CTA accent)                    ║
║  --cream:    #FAF6EE  (off-white warm background)           ║
║  --text:     #1C1C1C                                        ║
╠══════════════════════════════════════════════════════════════╣
║  TYPOGRAPHY                                                 ║
║  Display: Playfair Display (serif — editorial, luxurious)   ║
║  Body:    DM Sans (clean humanist sans)                     ║
║  H1:  clamp(2.5rem, 6vw, 5.5rem)                           ║
║  H2:  clamp(2rem, 4vw, 3.5rem)                             ║
║  H3:  clamp(1.25rem, 2.5vw, 1.75rem)                       ║
║  P:   clamp(0.95rem, 1.5vw, 1.125rem)                      ║
╠══════════════════════════════════════════════════════════════╣
║  SPACING SCALE (rem)                                        ║
║  --xs: 0.5rem  |  --sm: 1rem   |  --md: 1.5rem             ║
║  --lg: 2rem    |  --xl: 3rem   |  --2xl: 5rem              ║
║  --3xl: 8rem                                                ║
╠══════════════════════════════════════════════════════════════╣
║  BREAKPOINTS                                                ║
║  Mobile:  320–768px                                         ║
║  Tablet:  769–1024px                                        ║
║  Desktop: 1025px+                                           ║
╚══════════════════════════════════════════════════════════════╝
*/

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

:root {
  --deep:    #176786;
  --navy:    #176786;
  --teal:    #1A6B7C;
  --aqua:    #ffb902;
  --aqua-lt: #4DBFCF;
  --sand:    #ffb902;
  --sand-lt: #F5EDD5;
  --coral:   #ea5560;
  --coral-dk:#C85F40;
  --cream:   #FAF6EE;
  --white:   #FFFFFF;
  --text:    #1C1C1C;
  --text-lt: #5A6070;
  --border:  rgba(10,22,40,0.12);

  --xs:  0.5rem;
  --sm:  1rem;
  --md:  1.5rem;
  --lg:  2rem;
  --xl:  3rem;
  --2xl: 5rem;
  --3xl: 8rem;

  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(10,22,40,0.08);
  --shadow-md: 0 8px 32px rgba(10,22,40,0.14);
  --shadow-lg: 0 20px 60px rgba(10,22,40,0.22);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
  font-weight: 700;
}
h1 { font-size: clamp(2.5rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
p  { font-size: clamp(0.95rem, 1.5vw, 1.125rem); }

/* ─── UTILITY ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.section-pad {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: var(--sm);
}

.tag--light { color: var(--sand); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  min-height: 44px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.btn-primary:hover {
  background: var(--coral-dk);
  border-color: var(--coral-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,123,90,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

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

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: var(--transition);
  padding: 1.25rem 0;
}

.nav.scrolled {
  background: rgb(251 246 238);
  backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--md);
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__logo-top {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}

.nav__logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-top: 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}

.nav.scrolled .nav__links a {
  color: #333;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--aqua);
  transition: width var(--transition);
}

.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { margin-left: var(--sm); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
  justify-content: center;
  align-items: center;
  background: #ea5660;
    border-radius: 10px;
}

.nav__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 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); }

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--sand-lt);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.page-hero h1, .hero__title {
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.75);
}

.nav__mobile.open { display: flex; }

.nav__mobile a {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: #010100;
  font-style: italic;
  transition: color var(--transition);
}
.nav__mobile a:hover { color: var(--aqua); }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--deep);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    url('images/main-bg.png') no-repeat center center;
  background-size: cover;
  z-index: 1;
  background-position-x: 20%;
}

.page-hero__bg {
       background-position-x: 0% !important;
    }

/* Animated ocean gradient behind video placeholder */
.hero__ocean {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, #0A1628 0%, #1A6B7C 35%, #2DA4B5 55%, #0A1628 100%);
  z-index: 0;
}

/* Animated wave layers */
.hero__waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding-bottom: clamp(4rem, 8vw, 6rem);
  width: 100%;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--md);
}

.hero__eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--aqua);
}

.hero__eyebrow span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aqua);
}

.hero__title {
  color: var(--white);
  max-width: 14ch;
  margin-bottom: var(--md);
}

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

.hero__desc {
  color: rgba(255,255,255,0.78);
  max-width: 46ch;
  margin-bottom: var(--lg);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 300;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: clamp(1rem, 4vw, 2.5rem);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* Floating stars/particles effect */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(45,164,181,0.6);
  animation: float linear infinite;
}

@keyframes float {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ─── TRUST BAR ──────────────────────────────────────────── */
.trust {
  background: var(--navy);
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 500;
}

.trust__icon {
  font-size: 1.25rem;
}

/* ─── INTRO ──────────────────────────────────────────────── */
.intro {
  background: var(--cream);
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.intro__visual {
  position: relative;
}

.intro__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--teal), var(--deep));
}

.intro__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, transparent 50%, rgba(10,22,40,0.3));
}

/* SVG ocean scene placeholder */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.intro__badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--coral);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.intro__badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.intro__badge-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 4px;
}

.intro__text h2 { margin-bottom: var(--md); color: var(--deep); }
.intro__text p { color: var(--text-lt); margin-bottom: var(--md); }

.intro__stats {
  display: flex;
  gap: var(--xl);
  margin-top: var(--lg);
  padding-top: var(--lg);
  border-top: 1px solid var(--border);
}

.intro__stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}

.intro__stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-lt);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* ─── SERVICES ───────────────────────────────────────────── */
.services {
  background: var(--deep);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,164,181,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.services__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.services__header h2 { color: var(--white); }
.services__header p { color: rgba(255,255,255,0.6); max-width: 52ch; margin: 0 auto; margin-top: var(--sm); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,164,181,0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-color: rgba(45,164,181,0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.service-card:hover::before { opacity: 1; }

.service-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--md);
  display: block;
}

.service-card__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-card__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: var(--md);
}

.service-card__price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--sand);
  font-weight: 700;
}

.service-card__price span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}

.service-card__link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--aqua);
  margin-top: var(--sm);
  letter-spacing: 0.04em;
  transition: gap var(--transition);
}
.service-card:hover .service-card__link { gap: 0.8rem; }

/* ─── EXPERIENCE MARQUEE ─────────────────────────────────── */
.marquee {
  background: var(--coral);
  padding: 1rem 0;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  gap: 3rem;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}

.marquee__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── HOW IT WORKS ───────────────────────────────────────── */
.how {
  background: var(--cream);
}

.how__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.how__header h2 { color: var(--deep); }
.how__header p { color: var(--text-lt); max-width: 50ch; margin: 0.75rem auto 0; }

.how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.how__steps::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: calc(12.5% + 2rem);
  right: calc(12.5% + 2rem);
  height: 2px;
  background: linear-gradient(to right, var(--aqua), var(--teal), var(--aqua));
  opacity: 0.3;
}

.how__step {
  text-align: center;
  position: relative;
}

.how__step-num {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(45,164,181,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--md);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}

.how__step h3 { color: var(--deep); margin-bottom: 0.5rem; font-size: 1.1rem; }
.how__step p { color: var(--text-lt); font-size: 0.88rem; }

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials {
  background: var(--sand-lt);
  overflow: hidden;
}

.testimonials__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.testimonials__header h2 { color: var(--deep); }

.testimonials__stars {
  color: #F5A623;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.testimonials__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial__stars { color: #F5A623; margin-bottom: 0.75rem; font-size: 0.9rem; }

.testimonial__text {
  font-size: 0.95rem;
  color: var(--text-lt);
  line-height: 1.75;
  margin-bottom: var(--md);
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial__avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--deep);
}
.testimonial__location {
  font-size: 0.78rem;
  color: var(--text-lt);
}

/* ─── GALLERY ────────────────────────────────────────────── */
.gallery {
  background: var(--deep);
}

.gallery__header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.gallery__header h2 { color: var(--white); }
.gallery__header p { color: rgba(255,255,255,0.55); margin-top: 0.5rem; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}

.gallery__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__scene {
  width: 100%;
  height: 100%;
  min-height: 180px;
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10,22,40,0.6));
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery__item:hover::after { opacity: 1; }

/* ─── CTA ────────────────────────────────────────────────── */
.cta {
  position: relative;
  overflow: hidden;
  background: var(--teal);
  text-align: center;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(45,164,181,0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(10,22,40,0.8) 0%, transparent 50%);
}

.cta__content { position: relative; z-index: 1; }
.cta__content h2 { color: var(--white); margin-bottom: var(--sm); }
.cta__content p { color: rgba(255,255,255,0.75); max-width: 52ch; margin: 0 auto var(--lg); font-size: clamp(1rem, 1.8vw, 1.2rem); }

.cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: #000201;
  color: rgba(255,255,255,0.65);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: var(--xl);
}

.footer__brand h3 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer__brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: var(--md);
}

.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: var(--md);
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer__social-link:hover {
  background: var(--aqua);
  border-color: var(--aqua);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__col-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--aqua); }

.footer__contact-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
}

.footer__contact-icon { font-size: 1rem; margin-top: 1px; flex-shrink: 0; color: var(--aqua); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ─── WAVE SVG ───────────────────────────────────────────── */
.wave-divider {
  line-height: 0;
  margin-top: -1px;
}

/* ─── ANIMATIONS ─────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── BOOKING FORM MODAL ─────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s ease;
  position: relative;
}

.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-lt);
  line-height: 1;
  padding: 0.25rem;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.modal__close:hover { background: var(--cream); }

.modal h3 {
  color: var(--deep);
  margin-bottom: 0.5rem;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
}

.modal p {
  color: var(--text-lt);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--deep);
  margin-bottom: 0.4rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 44px;
}

.form-input:focus {
  outline: none;
  border-color: var(--aqua);
  box-shadow: 0 0 0 3px rgba(45,164,181,0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .how__steps { grid-template-columns: repeat(2, 1fr); }
  .how__steps::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .gallery__item--wide { grid-column: span 1; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .intro__grid { grid-template-columns: 1fr; }
  .intro__visual { order: -1; }
  .intro__badge { bottom: 1rem; right: 1rem; }
  .intro__stats { gap: var(--lg); }

  .services__grid { grid-template-columns: 1fr; }
  .how__steps { grid-template-columns: 1fr 1fr; }
  .testimonials__track { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .gallery__item--tall { grid-row: span 1; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }

  .hero__scroll { display: none; }
}

@media (max-width: 480px) {
  .services__grid { grid-template-columns: 1fr; }
  .how__steps { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--tall { grid-row: span 1; }
  .intro__stats { flex-direction: column; gap: var(--md); }
  .hero__bg {background-position-x: 20% !important;}
}