/* ================================================================
   main.css — Land & Sea
   Consolidated core styles: reset + tokens + global + header + footer
   Generated by concatenating source files. Edit the originals,
   then regenerate this bundle.
   ================================================================ */


/* ================================================================
   0. SELF-HOSTED FONTS  (css/fonts.css)
   ================================================================ */
@import url('fonts.css');


/* ================================================================
   1. RESET  (css/reset.css)
   ================================================================ */

*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

table {
  border-collapse: collapse;
}


/* ================================================================
   2. DESIGN TOKENS  (css/tokens.css)
   ================================================================ */

:root {
  /* === Colors === */
  --color-primary: #0a1628;
  --color-accent: #e8621c;
  --color-accent-hover: #d4560f;
  --color-accent-light: rgba(232, 98, 28, 0.1);
  --color-surface: #ffffff;
  --color-surface-alt: #f5f7fa;
  --color-surface-dark: #111827;
  --color-surface-darker: #0a1628;
  --color-text: #1a1a1a;
  --color-text-secondary: #595959;
  --color-text-on-dark: #ffffff;
  --color-text-on-dark-muted: rgba(255, 255, 255, 0.7);
  --color-cta: #2563eb;
  --color-cta-hover: #1d4ed8;
  --color-cert-bar: #d4e8ef;
  --color-border: #e5e7eb;
  --color-border-light: rgba(255, 255, 255, 0.15);

  /* === Typography === */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-black: 900;

  --font-size-xs: 0.75rem;     /* 12px */
  --font-size-sm: 0.875rem;    /* 14px */
  --font-size-base: 1rem;      /* 16px */
  --font-size-md: 1.125rem;    /* 18px */
  --font-size-lg: 1.25rem;     /* 20px */
  --font-size-xl: 1.5rem;      /* 24px */
  --font-size-2xl: 2rem;       /* 32px */
  --font-size-3xl: 2.5rem;     /* 40px */
  --font-size-4xl: 3rem;       /* 48px */
  --font-size-5xl: 3.5rem;     /* 56px */
  --font-size-6xl: 4.5rem;     /* 72px */
  --font-size-stat: 5rem;      /* 80px — for stat counters */

  --line-height-tight: 1.1;
  --line-height-snug: 1.3;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.8;

  --letter-spacing-tight: -0.02em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.05em;
  --letter-spacing-wider: 0.1em;

  /* === Spacing === */
  --space-xs: 0.25rem;    /* 4px */
  --space-sm: 0.5rem;     /* 8px */
  --space-md: 1rem;       /* 16px */
  --space-lg: 1.5rem;     /* 24px */
  --space-xl: 2rem;       /* 32px */
  --space-2xl: 3rem;      /* 48px */
  --space-3xl: 4rem;      /* 64px */
  --space-4xl: 5rem;      /* 80px */
  --space-5xl: 6rem;      /* 96px */
  --space-6xl: 8rem;      /* 128px */

  /* === Layout === */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --max-width-wide: 1400px;
  --gutter: var(--space-lg);
  --section-padding: var(--space-5xl);
  --section-padding-mobile: var(--space-3xl);

  /* === Borders & Radius === */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50px;

  /* === Shadows === */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);

  /* === Transitions === */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* === Z-index === */
  --z-header: 250;
  --z-overlay: 200;
  --z-modal: 300;

  /* === Easing Curves === */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.68, -0.3, 0.32, 1.3);

  /* === Extended Palette === */
  --accent-gold: #d4a04a;
  --accent-warm: #f4945e;
  --navy-deep: #060f1d;
  --border-subtle: rgba(255, 255, 255, 0.1);
}

/* === Responsive overrides === */
@media (max-width: 768px) {
  :root {
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 2.75rem;
    --font-size-6xl: 3rem;
    --font-size-stat: 3.5rem;
    --section-padding: var(--space-3xl);
  }
}


/* ================================================================
   3. GLOBAL STYLES  (css/global.css)
   ================================================================ */

/* === Font Loading — moved to HTML <link> with preconnect for performance === */

/* === Smooth Scroll === */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* === Base === */
body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background-color: var(--color-surface);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* === Typography === */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: var(--line-height-tight);
  letter-spacing: -0.01em;
  color: var(--color-text);
}

h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-snug);
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-text);
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-md); }

p {
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
}

p:last-child {
  margin-bottom: 0;
}

.text-accent {
  color: var(--color-accent);
}

/* Orange accent on dark/image backgrounds needs contrast boost */
.hero .text-accent {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.4);
}

.text-large {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-snug);
}

/* Large statement text — used for mission/vision blocks */
.statement {
  font-family: var(--font-primary);
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-snug);
  color: var(--color-text);
  letter-spacing: var(--letter-spacing-tight);
}

.statement .text-accent {
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .statement {
    font-size: var(--font-size-xl);
  }
}

/* Section label — left-aligned uppercase */
/* Section label with accent bar */
.section-label {
  font-family: var(--font-primary);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-wider);
  color: var(--color-accent);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--color-accent);
  flex-shrink: 0;
}

/* Stat numbers */
.stat-number {
  font-family: var(--font-primary);
  font-size: var(--font-size-stat);
  font-weight: var(--font-weight-black);
  line-height: 1;
  color: var(--color-text);
}

.stat-label {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin-top: var(--space-xs);
}

/* === Links === */
a {
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent);
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.75rem;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  white-space: nowrap;
}

/* .btn-primary — consolidated in enhancements.css */

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-text-on-dark);
}

.btn-accent:hover {
  background-color: var(--color-accent-hover);
  color: var(--color-text-on-dark);
  transform: translateY(-1px);
}

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

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-outline-light {
  border: 1.5px solid var(--color-border-light);
  color: var(--color-text-on-dark);
  background: transparent;
}

.btn-outline-light:hover {
  border-color: var(--color-text-on-dark);
  color: var(--color-text-on-dark);
}

.btn-white {
  background-color: var(--color-surface);
  color: var(--color-text);
}

.btn-white:hover {
  background-color: var(--color-surface-alt);
  transform: translateY(-1px);
}

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

.container-narrow {
  max-width: var(--max-width-narrow);
}

.container-wide {
  max-width: var(--max-width-wide);
}

/* === Sections === */
.section {
  padding: var(--space-3xl) 0;
}

/* Adjacent same-background sections: reduce double padding */
.section + .section {
  padding-top: var(--space-xl);
}

/* Sections with different backgrounds keep full padding */
.section-dark + .section,
.section + .section-dark,
.section-alt + .section {
  padding-top: var(--space-3xl);
}

.section-alt {
  background-color: var(--color-surface-alt);
}

.section-dark {
  background-color: var(--color-surface-dark);
  color: var(--color-text-on-dark);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark p {
  color: var(--color-text-on-dark);
}

.section-dark p {
  color: var(--color-text-on-dark-muted);
}

/* === CTA Band (global — used on most pages) === */
/* .cta-band — consolidated in enhancements.css */

.section-darker {
  background-color: var(--color-surface-darker);
  color: var(--color-text-on-dark);
}

/* Section with left label + right content */
.section-split {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

@media (max-width: 768px) {
  .section-split {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

/* === Grid Utilities === */
.grid {
  display: grid;
  gap: var(--gutter);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* === Card === */
.card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-overlay {
  position: relative;
}

.card-overlay .card-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
}

.card-overlay .card-content h3,
.card-overlay .card-content p {
  color: var(--color-text-on-dark);
}

/* === Hero === */
.hero {
  position: relative;
  z-index: 0; /* creates stacking context */
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Picture element wrapper — transparent to layout for most contexts */
picture {
  display: contents;
}

/* Hero sections: picture needs absolute positioning like img */
.hero > picture {
  display: block;
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  z-index: 0;
}

.hero > picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  z-index: 0;
  will-change: transform;
}

/* Parallax-ready containers for section images */
.section-split .section-split-media,
.feature-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.section-split img,
.feature-image img {
  will-change: transform;
  transition: transform 0.1s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.65) 0%,
    rgba(10, 22, 40, 0.25) 40%,
    rgba(0, 0, 0, 0.15) 70%,
    rgba(10, 22, 40, 0.5) 100%
  );
  z-index: 1;
}

.hero .hero-content.container {
  position: relative;
  z-index: 2;
  max-width: 100% !important;
  width: 100% !important;
  padding: var(--space-4xl) var(--gutter);
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}

.hero .hero-content h1 {
  color: var(--color-text-on-dark);
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  max-width: 750px !important;
  text-align: center !important;
}

.hero p {
  color: var(--color-text-on-dark-muted);
  font-size: var(--font-size-lg);
}

/* Wave bottom edge on heroes */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 2;
  line-height: 0;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

@media (max-width: 768px) {
  .hero {
    min-height: 75vh;
  }

  .hero-wave svg {
    height: 35px;
  }
}

/* === Scroll Arrow === */
.scroll-arrow {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  cursor: pointer;
  transition: all var(--transition-base);
}

.scroll-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(-50%) translateY(2px);
}

.scroll-arrow svg {
  width: 16px;
  height: 16px;
  color: var(--color-text-on-dark);
  animation: bounce 2.5s ease-in-out infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(4px); }
  60% { transform: translateY(2px); }
}

/* === Values Marquee === */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: var(--space-lg) 0;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  font-family: var(--font-primary);
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-black);
  color: var(--color-text);
  padding: 0 var(--space-xl);
  white-space: nowrap;
}

.marquee-item.accent {
  color: var(--color-accent);
}

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

/* On dark backgrounds */
.section-dark .marquee-item {
  color: var(--color-text-on-dark);
}

@media (max-width: 768px) {
  .marquee-item {
    font-size: var(--font-size-2xl);
  }
}

/* === Certification Bar === */
.cert-bar {
  background-color: var(--color-cert-bar);
  padding: var(--space-xl) 0;
}

.cert-bar .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
}

.cert-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
}

.cert-bar picture {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-bar img {
  height: 110px;
  width: auto;
  object-fit: contain;
}

/* Text badge fallback for logos without dark versions (e.g., ISM Code) */
.cert-badge-text {
  text-align: center;
  padding: 0.5rem 1.25rem;
  border: 1.5px solid rgba(26, 39, 68, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.4);
}

.cert-badge-text .cert-badge-code {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-navy, #1a2744);
  margin-bottom: 0.1rem;
}

.cert-badge-text .cert-badge-label {
  font-size: 0.65rem;
  font-weight: 400;
  color: rgba(26, 39, 68, 0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .cert-bar .container {
    gap: var(--space-xl);
  }
  .cert-bar img {
    height: 50px;
  }
}

@media (max-width: 480px) {
  .cert-bar .container {
    gap: var(--space-lg);
  }
  .cert-bar img {
    height: 45px;
  }
}

@media (max-width: 480px) {
  .cert-badges {
    flex-direction: column;
    gap: var(--space-sm);
  }
  .cert-badge {
    width: 100%;
    max-width: 240px;
  }
}

/* === Testimonial Carousel === */
.testimonial-card {
  background-color: var(--color-cta);
  color: var(--color-text-on-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  min-width: 400px;
}

.testimonial-quote {
  font-size: var(--font-size-md);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-author {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
}

/* === Client Logo Marquee === */
.logo-marquee {
  overflow: hidden;
  padding: var(--space-xl) 0;
}

.logo-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3xl);
  animation: marquee 40s linear infinite;
}

.logo-marquee img {
  height: 52px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.logo-marquee img:hover {
  opacity: 1;
  transform: scale(1.06);
}

/* === FAQ Accordion === */
.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--space-lg) 0;
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.faq-question::after {
  content: '+';
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-normal);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.active .faq-question::after {
  content: '\2212';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding-bottom: var(--space-lg);
}

/* === Utilities === */
.u-mt-xl { margin-top: var(--space-xl); }
.u-mb-2xl { margin-bottom: var(--space-2xl); }
.u-mb-3xl { margin-bottom: var(--space-3xl); }
.u-mt-0 { margin-top: 0; }
.u-text-center { text-align: center; }
.u-text-white { color: #fff; }
.u-text-white-muted { color: rgba(255,255,255,0.65); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }

/* Fade-in: start visible, JS adds .js-ready to html to enable animation */
.fade-in {
  opacity: 1;
  transform: translateY(0);
  will-change: opacity, transform;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Only hide elements when JS is confirmed running */
html.js-ready .fade-in:not(.visible) {
  opacity: 0;
  transform: translateY(30px);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children animation */
html.js-ready .fade-in-stagger:not(.visible) > * {
  opacity: 0;
  transform: translateY(20px);
}

.fade-in-stagger > * {
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.fade-in-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.fade-in-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.fade-in-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.fade-in-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }
.fade-in-stagger.visible > *:nth-child(6) { transition-delay: 0.5s; }

.fade-in-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Slide in from left */
.fade-in-left {
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html.js-ready .fade-in-left:not(.visible) {
  opacity: 0;
  transform: translateX(-30px);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Wave section divider */
.wave-divider {
  line-height: 0;
  margin: 0;
  padding: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

.wave-divider-flip {
  transform: scaleY(-1);
}

/* === Image with rounded corners === */
.img-rounded {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Lazy loading placeholder */
img[loading="lazy"] {
  background-color: #f5f5f5;
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  padding: 0 1.5rem 1.5rem;
  pointer-events: none;
}
.cookie-banner__inner {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.05);
  pointer-events: all;
  animation: cookieSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes cookieSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner__content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  flex: 1;
}
.cookie-banner__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(255,255,255,0.4);
}
.cookie-banner__content p {
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.65);
  margin: 0;
}
.cookie-banner__content a {
  color: var(--color-accent, #e8621c);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__content a:hover { color: #fff; }
.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.cookie-banner__btn {
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: inherit;
}
.cookie-banner__btn--accept {
  background: var(--color-accent, #e8621c);
  color: #fff;
  border: none;
}
.cookie-banner__btn--accept:hover {
  background: #d4560f;
  transform: translateY(-1px);
}
.cookie-banner__btn--decline {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
}
.cookie-banner__btn--decline:hover {
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-banner__inner {
    flex-direction: column;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
  }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__btn { flex: 1; text-align: center; }
}


/* ================================================================
   4. HEADER  (css/header.css)
   ================================================================ */

/* Easing curves + extended palette now in tokens.css */

/* ========================================
   SITE HEADER
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.75rem 2.5rem;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width-wide);
  margin: 0 auto;
}

/* === Left group: Logo + Hamburger === */
.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* === Logo === */
.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  transition: width 0.3s ease, height 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
}

.site-header.scrolled .header-logo img {
  width: 36px;
  height: 36px;
  filter: none;
}

/* === Right group: CTA (desktop only) === */
.header-right {
  display: flex;
  align-items: center;
}

.header__cta {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  background: var(--color-cta);
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.header__cta:hover {
  background: var(--color-cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

/* ========================================
   HAMBURGER — Sunset-inspired lines
   ======================================== */
.hamburger {
  position: relative;
  width: 32px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  z-index: 310;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger__line {
  display: block;
  width: 100%;
  height: 2.5px;
  border-radius: 3px;
  transform-origin: center;
  transition: all 0.35s var(--ease-spring);
}

/* Sunset gradient — warm palette echoing the icon */
/* Drop shadow for contrast on hero images */
.hamburger__line:nth-child(1) {
  background: var(--color-accent);
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.45));
}
.hamburger__line:nth-child(2) {
  background: var(--accent-gold);
  width: 75%;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.45));
}
.hamburger__line:nth-child(3) {
  background: var(--accent-warm);
  width: 50%;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.45));
}

/* Scrolled: dark lines — no shadow needed on white background */
.site-header.scrolled .hamburger__line:nth-child(1) { background: var(--color-primary); filter: none; }
.site-header.scrolled .hamburger__line:nth-child(2) { background: var(--color-primary); filter: none; }
.site-header.scrolled .hamburger__line:nth-child(3) { background: var(--color-primary); filter: none; }

/* Hover — lines expand to full width */
.hamburger:hover .hamburger__line:nth-child(2) { width: 100%; }
.hamburger:hover .hamburger__line:nth-child(3) { width: 100%; }

/* Active — transform to X, all white */
.hamburger.active {
  width: 36px;
  height: 36px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.site-header .hamburger.active .hamburger__line {
  background: #ffffff;
  width: 22px;
  position: absolute;
}

.hamburger.active .hamburger__line:nth-child(1) {
  transform: rotate(45deg);
}

.hamburger.active .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .hamburger__line:nth-child(3) {
  transform: rotate(-45deg);
}

/* Scrolled + Active — orange X on white header */
.site-header.scrolled .hamburger.active {
  background: rgba(232, 114, 42, 0.1);
}
.site-header.scrolled .hamburger.active .hamburger__line {
  background: var(--color-accent);
}

/* Hide header CTA when nav panel is open — avoids duplicate "Let's Talk" */
.header-inner:has(.hamburger.active) .header-right {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

/* ========================================
   DESKTOP DROPDOWN PANEL
   ======================================== */
.nav-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 290;
  background: var(--navy-deep);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s var(--ease-out-expo);
}

.nav-panel.active {
  max-height: 100vh;
}

.nav-panel__inner {
  padding: 7rem 3rem 3rem;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.35s ease 0.1s, transform 0.4s var(--ease-out-expo) 0.08s;
}

.nav-panel.active .nav-panel__inner {
  opacity: 1;
  transform: translateY(0);
}

/* Warm gradient accent line at top of panel */
.nav-panel::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--accent-gold) 40%, var(--accent-warm) 70%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease 0.15s;
}

.nav-panel.active::after {
  opacity: 1;
}

/* Desktop grid: 6 columns + contact */
.nav-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr) minmax(160px, auto);
  gap: 2rem;
  max-width: 1500px;
  margin: 0 auto;
}

/* Nav sections */
.nav-section {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out-expo);
}

/* Staggered reveal */
.nav-panel.active .nav-section:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.12s; }
.nav-panel.active .nav-section:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.17s; }
.nav-panel.active .nav-section:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.22s; }
.nav-panel.active .nav-section:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.27s; }
.nav-panel.active .nav-section:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.32s; }
.nav-panel.active .nav-section:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.37s; }
.nav-panel.active .nav-section:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 0.42s; }
.nav-panel.active .nav-section:nth-child(8) { opacity: 1; transform: translateY(0); transition-delay: 0.47s; }

.nav-section__heading {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
  transition: color 0.2s ease;
}

.nav-section__heading:hover {
  color: var(--color-accent);
}

.nav-section__links li {
  margin-bottom: 0.1rem;
}

.nav-section__links li a {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  padding: 0.4rem 0;
  transition: color 0.2s ease, gap 0.25s ease;
  position: relative;
}

.nav-section__links li a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.25s ease;
  flex-shrink: 0;
}

.nav-section__links li a:hover {
  color: #ffffff;
  gap: 0.5rem;
}

.nav-section__links li a:hover::before {
  width: 14px;
}

/* Contact section */
.nav-contact {
  border-left: 1px solid var(--border-subtle);
  padding-left: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-contact__label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.75rem;
}

.nav-contact__item {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.nav-contact__item:hover {
  color: #ffffff;
}

.nav-contact__link {
  display: block;
}

.nav-contact__cta {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  background: var(--color-cta);
  color: #ffffff;
  text-align: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-contact__cta:hover {
  background: var(--color-cta-hover);
  transform: translateY(-1px);
}

/* Bottom bar */
.nav-panel__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transition: opacity 0.3s ease 0.4s;
}

.nav-panel.active .nav-panel__bottom {
  opacity: 1;
}

.nav-panel__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--color-accent);
}

.nav-panel__social {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.nav-panel__social a {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}

.nav-panel__social a:hover {
  color: var(--color-accent);
}

/* ========================================
   MOBILE BACKDROP (mobile only)
   ======================================== */
.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 15, 29, 0.55);
  z-index: 280;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  display: none;
}

.mobile-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* ========================================
   MOBILE: Slide-in panel from right
   ======================================== */
@media (max-width: 768px) {
  .site-header {
    padding: 1rem 1.25rem;
  }

  .site-header.scrolled {
    padding: 0.6rem 1.25rem;
  }

  .header-logo img {
    width: 38px;
    height: 38px;
  }

  /* Hamburger moves to fixed right */
  .hamburger {
    position: fixed;
    right: 1.25rem;
    top: 1.15rem;
    transition: top 0.3s ease;
  }

  .site-header.scrolled .hamburger {
    top: 0.75rem;
  }

  /* Hide desktop CTA on mobile */
  .header-right {
    display: none;
  }

  /* Panel slides in from right */
  .nav-panel {
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    width: 0;
    max-height: 100vh;
    height: 100vh;
    transition: width 0.45s var(--ease-out-expo);
  }

  .nav-panel.active {
    width: min(88vw, 400px);
    max-height: 100vh;
  }

  .nav-panel__inner {
    width: min(88vw, 400px);
    padding: 5.5rem 1.75rem 2rem;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translate3d(40px, 0, 0);
    transition: opacity 0.3s ease 0.1s, transform 0.35s var(--ease-out-expo) 0.08s;
  }

  .nav-panel.active .nav-panel__inner {
    transform: translate3d(0, 0, 0);
  }

  /* Single column stacked layout */
  .nav-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .nav-section {
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav-section:last-of-type {
    border-bottom: none;
  }

  .nav-section__heading {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0;
    border-bottom: none;
  }

  /* Compact sections (Marine, Destinations, Advisory) — heading only */
  .nav-section--compact .nav-section__links {
    display: none;
  }

  .nav-section--compact .nav-section__heading {
    margin-bottom: 0;
  }

  .nav-contact {
    border-left: none;
    padding-left: 0;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-subtle);
  }

  .nav-panel__bottom {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
  }

  /* Show backdrop on mobile */
  .mobile-backdrop {
    display: block !important;
  }
}


/* ================================================================
   5. FOOTER  (css/footer.css)
   ================================================================ */

.site-footer {
  background: var(--color-surface-darker);
  color: var(--color-text-on-dark);
  padding: var(--space-4xl) 0 var(--space-xl);
  position: relative;
}

/* Wave separator above footer */
.footer-wave {
  position: relative;
  margin-top: -1px;
  line-height: 0;
  background: var(--color-surface);
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 50px;
  fill: var(--color-surface-darker);
}

.section-alt + .footer-wave {
  background: var(--color-surface-alt);
}

.section-dark + .footer-wave {
  background: var(--color-surface-dark);
}

/* === Footer Grid === */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

/* Company column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.footer-logo img {
  height: 50px;
  width: auto;
}

.footer-tagline {
  font-size: var(--font-size-sm);
  color: var(--color-text-on-dark-muted);
  line-height: var(--line-height-relaxed);
  max-width: 280px;
}

/* Social icons */
.footer-social {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-text-on-dark-muted);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Nav columns */
.footer-column h4 {
  font-family: var(--font-primary);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wider);
  color: var(--color-text-on-dark-muted);
  margin-bottom: var(--space-lg);
}

.footer-column a {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--color-text-on-dark-muted);
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--color-accent);
}

.footer-cta-link {
  color: var(--color-accent);
  margin-top: var(--space-sm);
  display: inline-block;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--font-size-xs);
  color: var(--color-text-on-dark-muted);
}

.footer-bottom a {
  color: var(--color-text-on-dark-muted);
}

.footer-bottom a:hover {
  color: var(--color-accent);
}

.footer-certs {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.footer-certs picture {
  display: flex;
  align-items: center;
}

.footer-certs img {
  height: 45px;
  width: auto;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.92);
  padding: 4px 6px;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}
