/* ============================================================
   Fume Shipping — Main Stylesheet
   Applies: Addy Osmani Web Quality + Taste + Design System Skills
   ============================================================ */

/* ─── 1. Design Tokens ─────────────────────────────────────── */
:root {
  /* Brand Colors */
  --navy-950:  #060D14;
  --navy-900:  #0D1B2A;   /* Logo background */
  --navy-800:  #132235;
  --navy-700:  #1B3351;
  --navy-600:  #234D7A;
  --navy-500:  #2D6AA0;
  --navy-400:  #4A85BE;
  --navy-300:  #7AAED4;
  --navy-100:  #E4EEF7;
  --navy-50:   #F0F6FB;

  --gold-700:  #7A5F1E;
  --gold-600:  #9A7928;
  --gold-500:  #B8962E;   /* Primary accent */
  --gold-400:  #CDA83F;
  --gold-300:  #DEAD63;
  --gold-100:  #F5ECD0;
  --gold-50:   #FBF6E9;

  /* Semantic Colors */
  --color-primary:      var(--navy-900);
  --color-primary-dark: var(--navy-950);
  --color-accent:       var(--gold-500);
  --color-accent-light: var(--gold-300);

  /* Backgrounds */
  --bg-white:   #FFFFFF;
  --bg-light:   #F7F9FC;
  --bg-section: #EEF3F9;
  --bg-dark:    var(--navy-900);
  --bg-darker:  var(--navy-950);

  /* Text */
  --text-primary:   #0D1B2A;
  --text-secondary: #3D5166;
  --text-muted:     #64748B;
  --text-light:     #94A3B8;
  --text-white:     #FFFFFF;
  --text-gold:      var(--gold-500);

  /* Typography */
  --font-display: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', 'Fira Code', monospace;

  /* Font Sizes — Minor Third Scale */
  --text-xs:   0.75rem;    /* 12px */
  --text-sm:   0.875rem;   /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-lg:   1.125rem;   /* 18px */
  --text-xl:   1.25rem;    /* 20px */
  --text-2xl:  1.5rem;     /* 24px */
  --text-3xl:  1.875rem;   /* 30px */
  --text-4xl:  2.25rem;    /* 36px */
  --text-5xl:  3rem;       /* 48px */
  --text-6xl:  3.75rem;    /* 60px */
  --text-7xl:  4.5rem;     /* 72px */

  /* Spacing — 4px base grid */
  --space-1:  0.25rem;    /* 4px */
  --space-2:  0.5rem;     /* 8px */
  --space-3:  0.75rem;    /* 12px */
  --space-4:  1rem;       /* 16px */
  --space-5:  1.25rem;    /* 20px */
  --space-6:  1.5rem;     /* 24px */
  --space-8:  2rem;       /* 32px */
  --space-10: 2.5rem;     /* 40px */
  --space-12: 3rem;       /* 48px */
  --space-16: 4rem;       /* 64px */
  --space-20: 5rem;       /* 80px */
  --space-24: 6rem;       /* 96px */
  --space-32: 8rem;       /* 128px */

  /* Border Radius */
  --radius-sm:   0.25rem;   /* 4px */
  --radius-md:   0.5rem;    /* 8px */
  --radius-lg:   0.75rem;   /* 12px */
  --radius-xl:   1rem;      /* 16px */
  --radius-2xl:  1.5rem;    /* 24px */
  --radius-full: 9999px;

  /* Shadows — layered, natural */
  --shadow-xs:  0 1px 2px rgba(13, 27, 42, 0.05);
  --shadow-sm:  0 1px 3px rgba(13, 27, 42, 0.08), 0 1px 2px rgba(13, 27, 42, 0.04);
  --shadow-md:  0 4px 6px -1px rgba(13, 27, 42, 0.1), 0 2px 4px -1px rgba(13, 27, 42, 0.06);
  --shadow-lg:  0 10px 15px -3px rgba(13, 27, 42, 0.1), 0 4px 6px -2px rgba(13, 27, 42, 0.05);
  --shadow-xl:  0 20px 25px -5px rgba(13, 27, 42, 0.12), 0 10px 10px -5px rgba(13, 27, 42, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(13, 27, 42, 0.25);
  --shadow-gold: 0 4px 20px rgba(184, 150, 46, 0.25);
  --shadow-navy: 0 4px 20px rgba(13, 27, 42, 0.4);

  /* Transitions */
  --transition-fast:   150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base:   200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:   300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slower: 500ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-index */
  --z-below:    -1;
  --z-base:     0;
  --z-raised:   10;
  --z-dropdown: 100;
  --z-sticky:   200;
  --z-overlay:  300;
  --z-modal:    400;
  --z-toast:    500;

  /* Layout */
  --container-sm:  640px;
  --container-md:  768px;
  --container-lg:  1024px;
  --container-xl:  1280px;
  --container-2xl: 1440px;
  --header-height: 80px;
}

/* ─── 2. Reset & Base ───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--text-primary);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--navy-600);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}
a:hover { color: var(--navy-900); }
a:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

button, [role="button"] {
  cursor: pointer;
  font-family: var(--font-body);
}
button:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
}

input, textarea, select {
  font-family: var(--font-body);
  font-size: var(--text-base);
}

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

p { max-width: 70ch; }

/* ─── 3. Typography Scale ───────────────────────────────────── */
.text-xs    { font-size: var(--text-xs); }
.text-sm    { font-size: var(--text-sm); }
.text-base  { font-size: var(--text-base); }
.text-lg    { font-size: var(--text-lg); }
.text-xl    { font-size: var(--text-xl); }
.text-2xl   { font-size: var(--text-2xl); }
.text-3xl   { font-size: var(--text-3xl); }
.text-4xl   { font-size: var(--text-4xl); }
.text-5xl   { font-size: var(--text-5xl); }
.text-6xl   { font-size: var(--text-6xl); }

.font-display { font-family: var(--font-display); }
.font-body    { font-family: var(--font-body); }
.font-medium  { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold    { font-weight: 700; }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
}

/* ─── 4. Layout ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin-inline: auto;
  padding-inline: var(--space-6);
}
@media (min-width: 1280px) {
  .container { padding-inline: var(--space-8); }
}

.section {
  padding-block: var(--space-20);
}
.section--lg {
  padding-block: var(--space-32);
}
.section--dark {
  background-color: var(--bg-dark);
  color: var(--text-white);
}
.section--navy-800 {
  background-color: var(--navy-800);
  color: var(--text-white);
}
.section--light {
  background-color: var(--bg-light);
}
.section--gold-tint {
  background-color: var(--gold-50);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 640px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ─── 5. Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  user-select: none;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background-color: var(--gold-500);
  color: var(--navy-950);
  border-color: var(--gold-500);
}
.btn--primary:hover {
  background-color: var(--gold-400);
  border-color: var(--gold-400);
  color: var(--navy-950);
  box-shadow: var(--shadow-gold);
}

.btn--outline-white {
  background-color: transparent;
  color: var(--text-white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline-white:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  color: var(--text-white);
}

.btn--outline-navy {
  background-color: transparent;
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.btn--outline-navy:hover {
  background-color: var(--navy-900);
  color: var(--text-white);
}

.btn--ghost {
  background-color: transparent;
  color: var(--text-muted);
  border-color: transparent;
}
.btn--ghost:hover {
  color: var(--navy-900);
  background-color: var(--bg-section);
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: var(--text-base);
}

.btn svg {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}

/* ─── 6. Skip to Content ─────────────────────────────────────── */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  z-index: var(--z-toast);
  padding: var(--space-3) var(--space-6);
  background: var(--gold-500);
  color: var(--navy-950);
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top var(--transition-fast);
}
.skip-to-content:focus { top: var(--space-4); }

/* ─── 7. Header & Navigation ─────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  height: var(--header-height);
  background-color: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background-color var(--transition-slow), box-shadow var(--transition-slow);
}
.site-header.scrolled {
  background-color: rgba(13, 27, 42, 0.98);
  box-shadow: 0 4px 24px rgba(6, 13, 20, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-xl);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img,
.site-logo svg {
  height: 44px;
  width: auto;
}

/* Desktop Nav */
.nav-primary {
  display: none;
}
@media (min-width: 1024px) {
  .nav-primary {
    display: flex;
    align-items: center;
    gap: var(--space-1);
  }
}

.nav-primary a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background-color var(--transition-fast);
  letter-spacing: 0.01em;
}
.nav-primary a:hover,
.nav-primary a.current-menu-item {
  color: var(--text-white);
  background-color: rgba(255,255,255,0.08);
}

/* Services dropdown */
.nav-item--has-dropdown {
  position: relative;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + var(--space-3));
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  background: var(--navy-900);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2xl);
  padding: var(--space-3);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
  z-index: var(--z-dropdown);
}
.nav-item--has-dropdown:hover .nav-dropdown,
.nav-item--has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}
.nav-dropdown a:hover {
  color: var(--text-white);
  background: rgba(255,255,255,0.08);
  padding-left: calc(var(--space-4) + 4px);
}

.nav-cta {
  display: none;
}
@media (min-width: 1024px) {
  .nav-cta {
    display: flex;
    align-items: center;
    gap: var(--space-3);
  }
}

/* Mobile hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-white);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy-950);
  z-index: calc(var(--z-sticky) - 1);
  padding: var(--space-8) var(--space-6);
  transform: translateX(-100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }

.mobile-menu a {
  display: block;
  font-size: var(--text-xl);
  font-family: var(--font-display);
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: var(--space-4) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}
.mobile-menu a:hover {
  color: var(--gold-400);
  padding-left: var(--space-3);
}

.mobile-menu-sub {
  padding-left: var(--space-4);
  display: none;
}
.mobile-menu-sub.is-open { display: block; }
.mobile-menu-sub a {
  font-size: var(--text-base);
  font-family: var(--font-body);
  font-weight: 500;
  padding: var(--space-3) 0;
}

/* ─── 8. Hero Section ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background-color: var(--navy-950);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 13, 20, 0.88) 0%,
    rgba(13, 27, 42, 0.75) 50%,
    rgba(13, 27, 42, 0.60) 100%
  );
}

/* Animated particles */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(184, 150, 46, 0.4);
  border-radius: 50%;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0%   { transform: translateY(100vh) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-10vh) translateX(40px); opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: calc(var(--header-height) + var(--space-16));
  max-width: 760px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: var(--space-6);
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold-500);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 6vw, var(--text-7xl));
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: var(--space-6);
}
.hero__title em {
  font-style: normal;
  color: var(--gold-400);
}

.hero__subtitle {
  font-size: clamp(var(--text-base), 2vw, var(--text-lg));
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: var(--space-10);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.45);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--transition-fast);
}
.hero__scroll:hover { color: var(--gold-400); }
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ─── 9. Section Headers ──────────────────────────────────────── */
.section-header {
  max-width: 680px;
  margin-bottom: var(--space-12);
}
.section-header--center {
  text-align: center;
  margin-inline: auto;
}

.section-header .eyebrow {
  margin-bottom: var(--space-3);
}

.section-header h2 {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  letter-spacing: -0.025em;
  margin-bottom: var(--space-4);
}
.section-header--dark h2 { color: var(--text-white); }

.section-header p {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: 1.7;
}
.section-header--dark p { color: rgba(255,255,255,0.65); }

/* ─── 10. Services ────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1280px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  background: var(--bg-white);
  border: 1px solid rgba(13, 27, 42, 0.07);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
  color: inherit;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card--dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  color: var(--text-white);
}
.service-card--dark:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(184, 150, 46, 0.3);
  color: var(--text-white);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-50);
  border-radius: var(--radius-lg);
  color: var(--gold-600);
  flex-shrink: 0;
  transition: background var(--transition-slow), color var(--transition-slow);
}
.service-card:hover .service-icon {
  background: var(--gold-500);
  color: var(--navy-950);
}
.service-card--dark .service-icon {
  background: rgba(184, 150, 46, 0.12);
  color: var(--gold-400);
}

.service-icon svg,
.service-icon i {
  width: 26px;
  height: 26px;
  font-size: 1.4rem;
  line-height: 1;
}

.service-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.3;
}
.service-card--dark h3 { color: var(--text-white); }

.service-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.65;
  max-width: none;
  flex: 1;
}
.service-card--dark p { color: rgba(255,255,255,0.6); }

.service-card__arrow {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold-600);
  margin-top: auto;
  transition: gap var(--transition-fast);
}
.service-card:hover .service-card__arrow { gap: var(--space-3); }
.service-card--dark .service-card__arrow { color: var(--gold-400); }

/* ─── 11. Stats ───────────────────────────────────────────────── */
.stats-band {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  padding-block: var(--space-16);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  text-align: center;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}
.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-item__number span {
  color: var(--gold-400);
}
.stat-item__label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ─── 12. About Section ───────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}
@media (min-width: 1024px) {
  .about-split { grid-template-columns: 1fr 1fr; gap: var(--space-16); }
}

.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
}
.about-badge {
  position: absolute;
  bottom: var(--space-6);
  right: calc(-1 * var(--space-4));
  background: var(--gold-500);
  color: var(--navy-950);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}
@media (max-width: 768px) {
  .about-badge { right: var(--space-4); }
}
.about-badge__number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1;
  color: var(--navy-950);
}
.about-badge__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-800);
}

.about-content { max-width: 600px; }

.values-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-8);
}
.value-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.value-item__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--navy-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy-600);
}
.value-item__icon svg { width: 20px; height: 20px; }
.value-item h4 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-1);
}
.value-item p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  max-width: none;
}

/* ─── 13. CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  position: relative;
  overflow: hidden;
  padding-block: var(--space-20);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184,150,46,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}
.cta-banner h2 {
  color: var(--text-white);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  margin-bottom: var(--space-4);
}
.cta-banner p {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-lg);
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
}
.cta-banner__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── 14. Contact Section ─────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 2fr 3fr; }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.contact-info__brand {
  margin-bottom: var(--space-4);
}
.contact-info__brand img,
.contact-info__brand svg { height: 48px; width: auto; }

.contact-info__text {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 380px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.contact-detail {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.contact-detail__icon {
  width: 44px;
  height: 44px;
  background: rgba(184,150,46,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-400);
}
.contact-detail__icon svg { width: 20px; height: 20px; }
.contact-detail__label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--space-1);
  font-weight: 600;
}
.contact-detail__value {
  font-size: var(--text-base);
  color: var(--text-white);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.contact-detail__value:hover { color: var(--gold-400); }

/* ─── 15. Contact Form ────────────────────────────────────────── */
.contact-form-wrap {
  background: var(--bg-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-10) var(--space-8);
  box-shadow: var(--shadow-2xl);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
}
.form-grid .field--full { grid-column: 1 / -1; }

.field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.field label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}
.field label .required {
  color: #DC2626;
  margin-left: 2px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: var(--text-base);
  color: var(--text-primary);
  background: var(--bg-light);
  border: 1.5px solid var(--navy-100);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  outline: none;
  appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--bg-white);
  border-color: var(--navy-500);
  box-shadow: 0 0 0 3px rgba(45, 106, 160, 0.12);
}
.field input.error,
.field select.error,
.field textarea.error {
  border-color: #DC2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}
.field textarea { resize: vertical; min-height: 140px; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748B' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
}
.field__error {
  font-size: var(--text-xs);
  color: #DC2626;
  display: none;
}
.field.has-error .field__error { display: block; }

.form-privacy {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: var(--space-2);
}
.form-privacy a {
  color: var(--navy-600);
  text-decoration: underline;
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-8);
}
.form-success.is-visible { display: block; }
.form-success svg {
  width: 48px;
  height: 48px;
  color: #16a34a;
  margin: 0 auto var(--space-4);
}
.form-success h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}
.form-success p { color: var(--text-muted); }

/* ─── 16. Blog Cards ──────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(13,27,42,0.06);
  transition: all var(--transition-slow);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px);
  color: inherit;
}
.blog-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slower);
}
.blog-card:hover .blog-card__image img { transform: scale(1.04); }

.blog-card__body {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.blog-card__meta {
  display: flex;
  gap: var(--space-4);
  align-items: center;
}
.blog-card__tag {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.blog-card__date {
  font-size: var(--text-xs);
  color: var(--text-muted);
}
.blog-card h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy-900);
}
.blog-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy-600);
  margin-top: auto;
  transition: gap var(--transition-fast), color var(--transition-fast);
}
.blog-card:hover .blog-card__link {
  gap: var(--space-3);
  color: var(--navy-900);
}

/* ─── 17. Footer ──────────────────────────────────────────────── */
.site-footer {
  background-color: var(--navy-950);
  padding-block: var(--space-16) var(--space-8);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
@media (min-width: 640px) {
  .footer-top { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-top { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: var(--space-8); }
}

.footer-brand {}
.footer-brand .site-logo { margin-bottom: var(--space-5); }
.footer-brand p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
}
.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.footer-social a:hover {
  background: rgba(184,150,46,0.2);
  color: var(--gold-400);
}
.footer-social svg { width: 17px; height: 17px; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-5);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-col a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}
.footer-col a:hover {
  color: rgba(255,255,255,0.85);
  padding-left: 4px;
}

.footer-newsletter p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}
.footer-newsletter form {
  display: flex;
  gap: 0;
}
.footer-newsletter input {
  flex: 1;
  padding: 0.65rem 1rem;
  font-size: var(--text-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  color: var(--text-white);
  outline: none;
  min-width: 0;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.35); }
.footer-newsletter input:focus {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.footer-newsletter button {
  padding: 0.65rem var(--space-4);
  background: var(--gold-500);
  color: var(--navy-950);
  border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: var(--text-sm);
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition-fast);
  white-space: nowrap;
}
.footer-newsletter button:hover { background: var(--gold-400); }

.footer-bottom {
  padding-top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-bottom p,
.footer-bottom a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
}
.footer-bottom a {
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }
.footer-bottom__links {
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
  justify-content: center;
}

/* ─── 18. Page Hero (inner pages) ────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 100%);
  padding-top: calc(var(--header-height) + var(--space-16));
  padding-bottom: var(--space-16);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .eyebrow { margin-bottom: var(--space-3); }
.page-hero h1 {
  color: var(--text-white);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-6xl));
  margin-bottom: var(--space-4);
  position: relative;
}
.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-lg);
  max-width: 580px;
  position: relative;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  position: relative;
}
.breadcrumb a,
.breadcrumb span {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb__sep { color: rgba(255,255,255,0.25); }
.breadcrumb span:last-child { color: var(--gold-400); }

/* ─── 19. Service Detail Page ─────────────────────────────────── */
.service-detail {
  padding-block: var(--space-20);
}
.service-detail__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}
@media (min-width: 1024px) {
  .service-detail__layout { grid-template-columns: 1fr 360px; }
}

.service-detail__content h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
  margin-top: var(--space-8);
}
.service-detail__content h2:first-child { margin-top: 0; }
.service-detail__content p {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-4);
  max-width: none;
}
.service-detail__content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-block: var(--space-4);
}
.service-detail__content ul li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: var(--text-base);
  color: var(--text-secondary);
}
.service-detail__content ul li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23B8962E'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E") no-repeat center;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.service-sidebar__card {
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  border: 1px solid rgba(13,27,42,0.06);
}
.service-sidebar__card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
}
.sidebar-services a {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}
.sidebar-services a:hover {
  background: var(--bg-white);
  color: var(--navy-900);
  padding-left: calc(var(--space-4) + 4px);
}
.sidebar-services a.active {
  background: var(--navy-900);
  color: var(--text-white);
}
.sidebar-services a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--gold-500);
}

/* ─── 20. Page Content (Privacy, etc.) ────────────────────────── */
.content-page {
  padding-block: var(--space-16) var(--space-24);
}
.content-page__inner {
  max-width: 780px;
}
.content-page h2 {
  font-size: var(--text-2xl);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  color: var(--navy-900);
}
.content-page h2:first-child { margin-top: 0; }
.content-page h3 {
  font-size: var(--text-xl);
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
  font-family: var(--font-body);
}
.content-page p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-4);
  max-width: none;
}
.content-page ul {
  list-style: disc;
  padding-left: var(--space-6);
  margin-bottom: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.content-page ul li {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.65;
}
.content-page a { color: var(--navy-600); }
.content-page hr {
  border: none;
  border-top: 1px solid var(--navy-100);
  margin-block: var(--space-8);
}

/* ─── 21. 404 Page ────────────────────────────────────────────── */
.error-404-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: var(--space-24);
}
.error-404-page h1 {
  font-size: clamp(5rem, 15vw, 12rem);
  color: var(--navy-100);
  line-height: 1;
  margin-bottom: var(--space-4);
}
.error-404-page h2 {
  font-size: var(--text-3xl);
  color: var(--navy-900);
  margin-bottom: var(--space-4);
}
.error-404-page p {
  color: var(--text-muted);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
}

/* ─── 22. Cookie Banner ───────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: var(--space-4);
  left: var(--space-4);
  right: var(--space-4);
  max-width: 560px;
  background: var(--navy-900);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-2xl);
  z-index: var(--z-toast);
  transform: translateY(120%);
  transition: transform var(--transition-slow);
}
@media (min-width: 768px) {
  .cookie-banner { left: var(--space-6); right: auto; }
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner h3 {
  color: var(--text-white);
  font-size: var(--text-base);
  margin-bottom: var(--space-2);
}
.cookie-banner p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: var(--space-4);
  max-width: none;
}
.cookie-banner p a {
  color: var(--gold-400);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.cookie-btn-accept {
  padding: 0.5rem 1.25rem;
  background: var(--gold-500);
  color: var(--navy-950);
  border: none;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition-fast);
}
.cookie-btn-accept:hover { background: var(--gold-400); }
.cookie-btn-decline {
  padding: 0.5rem 1.25rem;
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.cookie-btn-decline:hover {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.25);
}

/* ─── 23. Scroll Animations ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-slower), transform var(--transition-slower);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

/* ─── 24. Utilities ───────────────────────────────────────────── */
.text-center { text-align: center; }
.text-white  { color: var(--text-white); }
.text-gold   { color: var(--gold-500); }
.text-muted  { color: var(--text-muted); }
.mt-auto     { margin-top: auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ─── 25. Divider ─────────────────────────────────────────────── */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
}
.divider--center { margin-inline: auto; }

/* ─── 26. Print ───────────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .cookie-banner, .cta-banner { display: none; }
  body { color: black; background: white; }
  a::after { content: " (" attr(href) ")"; }
}

/* ─── 27. Interactive Ship Diagram ───────────────────────────── */
.ship-diagram-section {
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 55%, #0A1E38 80%, #0D2A48 100%);
  padding-block: var(--space-16) 0;
  position: relative;
  overflow: hidden;
}
.ship-diagram-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: 0.4;
}

.ship-diagram {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
}

.ship-svg {
  width: 100%;
  height: auto;
  display: block;
  cursor: default;
}

/* Hotspot hover effects */
.ship-hotspot {
  cursor: pointer;
}
.ship-hotspot .hotspot-rect {
  transition: fill var(--transition-base), stroke-width var(--transition-base);
}
.ship-hotspot:hover .hotspot-rect,
.ship-hotspot.is-active .hotspot-rect {
  fill: rgba(184,150,46,0.12) !important;
  stroke: var(--gold-500) !important;
  stroke-width: 1.5px !important;
}
.ship-hotspot .hotspot-dot {
  transition: opacity var(--transition-base), r var(--transition-base);
}
.ship-hotspot:hover .hotspot-dot,
.ship-hotspot.is-active .hotspot-dot {
  opacity: 0.9 !important;
}
.ship-hotspot:hover .hotspot-label,
.ship-hotspot.is-active .hotspot-label {
  opacity: 1 !important;
}

/* Tooltip */
.ship-tooltip {
  position: absolute;
  top: 0; left: 0;
  background: var(--navy-900);
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--transition-base), transform var(--transition-base);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(184,150,46,0.2);
  z-index: 10;
  white-space: nowrap;
  min-width: 200px;
}
.ship-tooltip.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.ship-tooltip__icon {
  width: 36px; height: 36px;
  background: rgba(184,150,46,0.15);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-400);
  font-size: 1rem;
  flex-shrink: 0;
}
.ship-tooltip__title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 2px;
}
.ship-tooltip__cta {
  font-size: var(--text-xs);
  color: var(--gold-400);
  font-weight: 500;
}

/* Legend grid */
.ship-legend {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
  margin-top: var(--space-6);
}
@media (min-width: 640px) { .ship-legend { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .ship-legend { grid-template-columns: repeat(8, 1fr); } }

.ship-legend__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-2);
  text-align: center;
  transition: all var(--transition-base);
  font-size: var(--text-xs);
}
.ship-legend__item:hover,
.ship-legend__item.is-active {
  background: rgba(184,150,46,0.1);
  border-color: rgba(184,150,46,0.4);
  color: var(--gold-300);
}
.ship-legend__num {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(184,150,46,0.2);
  border: 1px solid rgba(184,150,46,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-400);
  flex-shrink: 0;
  transition: background var(--transition-fast);
}
.ship-legend__item:hover .ship-legend__num,
.ship-legend__item.is-active .ship-legend__num {
  background: var(--gold-500);
  color: var(--navy-950);
}
.ship-legend__name {
  line-height: 1.3;
  font-weight: 500;
}

/* Mobile: hide complex diagram, show simple list */
@media (max-width: 480px) {
  .ship-svg { display: none; }
  .ship-tooltip { display: none; }
}

/* ─── Ocean Wave Animation ──────────────────────────────────── */
.ocean-waves {
  position: relative;
  width: 100%;
  height: 120px;
  margin-top: -2px;
  overflow: hidden;
}
.ocean-waves svg {
  position: absolute;
  bottom: 0;
  width: 200%;
  height: 100%;
}

/* Wave layer 1 — deepest, slowest */
.wave-layer-1 {
  animation: wave-move-1 12s linear infinite;
  opacity: 0.35;
}
/* Wave layer 2 — mid */
.wave-layer-2 {
  animation: wave-move-2 8s linear infinite;
  opacity: 0.55;
}
/* Wave layer 3 — surface, fastest */
.wave-layer-3 {
  animation: wave-move-3 5s linear infinite;
  opacity: 0.85;
}
/* Wave layer 4 — foam */
.wave-layer-4 {
  animation: wave-move-4 3.5s linear infinite;
  opacity: 0.3;
}

@keyframes wave-move-1 {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes wave-move-2 {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes wave-move-3 {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes wave-move-4 {
  0%   { transform: translateX(-10%); }
  100% { transform: translateX(-60%); }
}

/* Ship bobbing animation */
.ship-svg .ship-body-group {
  animation: ship-bob 4s ease-in-out infinite;
  transform-origin: 450px 280px;
}
@keyframes ship-bob {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25%       { transform: translateY(-3px) rotate(0.3deg); }
  50%       { transform: translateY(0px) rotate(0deg); }
  75%       { transform: translateY(3px) rotate(-0.3deg); }
}

/* Water shimmer */
.wave-shimmer {
  position: absolute;
  top: 10px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(184,150,46,0.3) 30%, rgba(255,255,255,0.15) 50%, rgba(184,150,46,0.3) 70%, transparent 100%);
  animation: shimmer-move 3s ease-in-out infinite;
}
@keyframes shimmer-move {
  0%, 100% { opacity: 0.4; transform: scaleX(0.8); }
  50%       { opacity: 1;   transform: scaleX(1); }
}

/* ─── 28. Video Hero ─────────────────────────────────────────── */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}
.hero__overlay--video {
  background: linear-gradient(
    135deg,
    rgba(6, 13, 20, 0.82) 0%,
    rgba(13, 27, 42, 0.65) 50%,
    rgba(13, 27, 42, 0.50) 100%
  ) !important;
}

/* ─── 28. CSS Hero Background ────────────────────────────────── */
.hero__css-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 60%, #0D2A4A 0%, #060D14 50%, #030810 100%);
  overflow: hidden;
}

/* Stars field */
.hero__stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 5% 8%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 20%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 25% 5%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 15%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 45% 10%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 22%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 62% 7%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 72% 18%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 82% 12%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 25%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 10% 35%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 30%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 70% 28%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 88% 35%, rgba(255,255,255,0.3) 0%, transparent 100%);
  animation: star-twinkle 6s ease-in-out infinite alternate;
}
@keyframes star-twinkle {
  0%   { opacity: 0.7; }
  100% { opacity: 1; }
}

/* Horizon glow */
.hero__horizon {
  position: absolute;
  bottom: 35%;
  left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top,
    rgba(13,27,42,0) 0%,
    rgba(13,50,80,0.15) 40%,
    rgba(30,80,120,0.08) 70%,
    transparent 100%
  );
  animation: horizon-pulse 8s ease-in-out infinite alternate;
}
@keyframes horizon-pulse {
  0%   { opacity: 0.6; }
  100% { opacity: 1; }
}

/* Ship silhouette SVG */
.hero__ship-silhouette {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1300px;
  animation: hero-ship-sail 20s ease-in-out infinite;
}
@keyframes hero-ship-sail {
  0%, 100% { transform: translateX(-50%) translateY(0px); }
  25%       { transform: translateX(-50%) translateY(-6px) rotate(0.2deg); }
  50%       { transform: translateX(-50%) translateY(0px); }
  75%       { transform: translateX(-50%) translateY(5px) rotate(-0.2deg); }
}

/* Water waves at hero bottom */
.hero__water-waves {
  position: absolute;
  bottom: 0;
  left: -5%; right: -5%;
  height: 60px;
  animation: hero-wave 6s ease-in-out infinite;
}
.hero__water-waves svg {
  width: 100%;
  height: 100%;
}
@keyframes hero-wave {
  0%, 100% { transform: translateX(0) scaleY(1); }
  50%       { transform: translateX(-2%) scaleY(1.1); }
}

/* ─── 30. Logo fix on dark backgrounds ────────────────────────── */
.site-logo img,
.footer-brand img,
.contact-info__brand img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
