:root {
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Satoshi", "Inter", "Segoe UI", Arial, sans-serif;

  --radius-sm: 0.75rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;

  --shadow-soft: 0 1.25rem 3rem rgba(0, 0, 0, 0.12);
  --shadow-card: 0 0.75rem 2rem rgba(0, 0, 0, 0.14);

  --container-max: 80rem;
  --container-narrow: 52rem;

  --header-height: clamp(56px, 5vw + 44px, 72px);
  --header-pad-inline: clamp(16px, 4vw, 40px);
  --logo-size: clamp(1.2rem, 1rem + 0.8vw, 1.85rem);
  --logo-icon: clamp(1.75rem, 1.3rem + 1.1vw, 2.5rem);
  --nav-size: clamp(0.95rem, 0.88rem + 0.2vw, 1.05rem);
  --nav-pad-y: clamp(0.7rem, 0.62rem + 0.2vw, 0.9rem);
  --nav-pad-x: clamp(1rem, 0.85rem + 0.5vw, 1.35rem);

  --section-space: clamp(4rem, 7vw, 7rem);
  --stack-gap: clamp(1rem, 2vw, 1.5rem);
  --grid-gap: clamp(1rem, 2.4vw, 2rem);

  --text-xs: clamp(0.8rem, 0.76rem + 0.2vw, 0.9rem);
  --text-sm: clamp(0.95rem, 0.88rem + 0.2vw, 1rem);
  --text-md: clamp(1rem, 0.95rem + 0.35vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.35rem);
  --text-xl: clamp(1.8rem, 1.3rem + 2vw, 3rem);
  --text-hero: clamp(2.4rem, 1.7rem + 3.2vw, 5.2rem);

  --ease: 220ms ease;
}

[data-theme="dark"] {
  --bg: #120c1f;
  --bg-elevated: #1b1230;
  --bg-soft: #22163c;
  --bg-card: #201633;
  --bg-banner: rgba(18, 12, 31, 0.94);

  --text: #f6f1e8;
  --text-muted: #d5cbdf;
  --text-soft: #bbaed0;

  --line: rgba(212, 175, 55, 0.18);
  --line-strong: rgba(212, 175, 55, 0.36);

  --brand: #2d1b4e;
  --brand-accent: #d4af37;
  --brand-accent-strong: #f2cc57;

  --btn-text: #120c1f;
  --btn-secondary-text: #f6f1e8;

  --hero-surface: rgba(18, 12, 31, 0.12);
  --overlay: rgba(10, 6, 18, 0.15);
  --success: #8ad5a0;
  --error: #ff8f98;
}

[data-theme="light"] {
  --bg: #fcf8f2;
  --bg-elevated: #ffffff;
  --bg-soft: #f3ecfb;
  --bg-card: #fffaf2;
  --bg-banner: rgba(252, 248, 242, 0.96);

  --text: #23163d;
  --text-muted: #4a3a67;
  --text-soft: #65557e;

  --line: rgba(45, 27, 78, 0.12);
  --line-strong: rgba(45, 27, 78, 0.28);

  --brand: #2d1b4e;
  --brand-accent: #b78d1c;
  --brand-accent-strong: #8d6a11;

  --btn-text: #fcf8f2;
  --btn-secondary-text: #23163d;

  --hero-surface: rgba(255, 250, 242, 0.12);
  --overlay: rgba(24, 12, 40, 0.12);
  --success: #1d7a3e;
  --error: #b4232c;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  max-width: 100%;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: 1.65;
  background: var(--bg);
  color: var(--text);
  text-rendering: optimizeLegibility;
}

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

img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

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

a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: break-word;
  word-break: break-word;
}

p,
li,
h1,
h2,
h3,
small,
label {
  overflow-wrap: break-word;
  word-break: break-word;
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

h1,
h2,
h3 {
  margin: 0 0 0.7em;
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: 0.01em;
}

h1 {
  font-size: var(--text-hero);
}

h2 {
  font-size: clamp(1.75rem, 1.35rem + 1.2vw, 2.75rem);
}

h3 {
  font-size: clamp(1.2rem, 1.05rem + 0.5vw, 1.5rem);
}

p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.container {
  width: min(100% - clamp(1rem, 5vw, 3rem), var(--container-max));
  margin-inline: auto;
}

.narrow {
  width: min(100%, var(--container-narrow));
}

.section {
  padding-block: var(--section-space);
}

.page-hero {
  padding-top: calc(var(--header-height) + clamp(2rem, 4vw, 3.5rem));
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-heading {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.eyebrow,
.panel-label {
  margin-bottom: 0.75rem;
  color: var(--brand-accent);
  font-size: var(--text-xs);
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-copy,
.footer-copy,
.form-note {
  max-width: 65ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: clamp(2.9rem, 2.7rem + 0.5vw, 3.35rem);
  padding: 0.85em 1.45em;
  border: 1px solid var(--brand-accent);
  border-radius: 999px;
  background: var(--brand-accent);
  color: var(--btn-text);
  font-size: clamp(0.95rem, 0.9rem + 0.18vw, 1rem);
  font-weight: 500;
  line-height: 1.2;
  transition: transform var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  background: var(--brand-accent-strong);
  border-color: var(--brand-accent-strong);
}

.btn-secondary {
  background: transparent;
  color: var(--btn-secondary-text);
  border-color: var(--line-strong);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--bg-soft);
  color: var(--text);
  border-color: var(--brand-accent);
}

.btn-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--brand-accent);
  font-weight: 500;
}

.text-link::after {
  content: "→";
  transition: transform var(--ease);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(0.18rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(16px);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  min-height: var(--header-height);
  padding-inline: var(--header-pad-inline);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.55rem, 0.45rem + 0.4vw, 0.8rem);
  min-width: 0;
}

.brand-mark {
  width: var(--logo-icon);
  height: var(--logo-icon);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(145deg, var(--brand-accent), color-mix(in srgb, var(--brand-accent) 60%, var(--brand) 40%));
  color: var(--brand);
  flex: 0 0 auto;
}

.brand-mark svg {
  width: clamp(1rem, 0.85rem + 0.6vw, 1.35rem);
  height: clamp(1rem, 0.85rem + 0.6vw, 1.35rem);
  fill: currentColor;
}

.brand-text {
  font-family: var(--font-display);
  font-size: var(--logo-size);
  line-height: 1;
  color: var(--text);
  white-space: nowrap;
}

.site-nav {
  display: none;
  align-items: center;
  gap: clamp(0.8rem, 1.5vw, 1.4rem);
}

.site-nav a {
  position: relative;
  font-size: var(--nav-size);
  white-space: nowrap;
  color: var(--text-muted);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 1px;
  background: var(--brand-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-header .hdr-cta {
  display: none;
  font-size: var(--nav-size);
  padding: var(--nav-pad-y) var(--nav-pad-x);
}

.nav-toggle {
  width: clamp(44px, 5vw, 48px);
  height: clamp(44px, 5vw, 48px);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  flex: 0 0 auto;
}

.nav-toggle span {
  width: 1.15rem;
  height: 2px;
  margin-inline: auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform var(--ease), opacity var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(0.4rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-0.4rem) rotate(-45deg);
}

.mobile-drawer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--ease);
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--line);
}

.mobile-drawer.is-open {
  grid-template-rows: 1fr;
}

.mobile-drawer-inner {
  overflow: hidden;
  display: grid;
  gap: 0.9rem;
  padding-inline: var(--header-pad-inline);
  padding-block: 0;
}

.mobile-drawer.is-open .mobile-drawer-inner {
  padding-block: 0 1.25rem;
}

.mobile-drawer a {
  color: var(--text-muted);
  font-size: var(--text-md);
}

.mobile-drawer a:hover,
.mobile-drawer a:focus-visible {
  color: var(--text);
}

.hero-section {
  position: relative;
  isolation: isolate;
  min-height: min(100svh, 52rem);
  display: grid;
  align-items: end;
  padding-top: calc(var(--header-height) + clamp(2rem, 6vw, 4rem));
  padding-bottom: clamp(3rem, 8vw, 6rem);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(14, 8, 24, 0.1), var(--overlay)),
    linear-gradient(90deg, rgba(45, 27, 78, 0.08), rgba(18, 12, 31, 0.04));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - clamp(1rem, 5vw, 3rem), 80rem);
}

.hero-home h1,
.hero-home p {
  max-width: 14ch;
}

.hero-home p {
  color: color-mix(in srgb, var(--text) 86%, transparent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.intro-strip {
  background: linear-gradient(180deg, color-mix(in srgb, var(--bg-soft) 75%, transparent), transparent);
}

.feature-grid,
.card-grid,
.gallery-grid,
.footer-grid,
.contact-layout {
  display: grid;
  gap: var(--grid-gap);
}

.card-grid.three-cols,
.gallery-grid {
  grid-template-columns: 1fr;
}

.card,
.form-shell,
.accent-panel,
.cta-box,
.media-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
}

.card,
.accent-panel,
.cta-box,
.form-shell {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.card p:last-child,
.accent-panel p:last-child,
.cta-box p:last-child {
  margin-bottom: 0;
}

.split-layout {
  display: grid;
  gap: var(--grid-gap);
  align-items: stretch;
}

.content-block,
.accent-panel {
  min-width: 0;
}

.check-list,
.stack-list,
.footer-list,
.contact-list {
  display: grid;
  gap: 0.8rem;
}

.check-list,
.stack-list {
  padding-left: 1.2rem;
}

.signature-panel .accent-panel {
  background:
    radial-gradient(circle at top, color-mix(in srgb, var(--brand-accent) 14%, transparent), transparent 56%),
    var(--bg-card);
}

.cta-section {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.cta-box {
  text-align: center;
}

.media-card {
  overflow: hidden;
  padding: 0;
}

.media-card img,
.map-card img {
  aspect-ratio: 4 / 3;
}

.form-shell {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--brand-accent) 5%, transparent), transparent 18%),
    var(--bg-card);
}

.booking-form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.35rem);
}

.field {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.field-full {
  grid-column: auto;
}

label {
  color: var(--text);
  font-size: var(--text-sm);
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  color: var(--text);
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-soft);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 0.18rem color-mix(in srgb, var(--brand-accent) 25%, transparent);
}

textarea {
  resize: vertical;
}

.error-text {
  min-height: 1.1rem;
  color: var(--error);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: var(--error);
}

.field.is-valid input,
.field.is-valid select,
.field.is-valid textarea {
  border-color: var(--success);
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: clamp(1.25rem, 3vw, 1.75rem);
}

.form-note {
  margin: 0;
  color: var(--text-soft);
}

.site-footer {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-elevated) 90%, transparent);
}

.footer-grid {
  grid-template-columns: 1fr;
  align-items: start;
}

.brand-footer {
  margin-bottom: 1rem;
}

.footer-list {
  list-style: none;
  padding-left: 0;
}

.footer-list a {
  color: var(--text-muted);
}

.footer-list a:hover,
.footer-list a:focus-visible {
  color: var(--text);
}

.cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 60;
  padding: clamp(0.75rem, 2vw, 1rem);
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner-inner {
  width: min(100%, 72rem);
  margin-inline: auto;
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.25rem);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--bg-banner);
  box-shadow: var(--shadow-soft);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(44px, 5vw, 48px);
  min-width: clamp(44px, 5vw, 48px);
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

@media (min-width: 48rem) {
  .site-header .hdr-cta {
    display: inline-flex;
  }

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

  .field-full {
    grid-column: 1 / -1;
  }

  .feature-grid,
  .contact-layout,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .card-grid.three-cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-layout {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .cookie-banner-inner {
    grid-template-columns: 1.5fr auto;
    align-items: center;
  }
}

@media (min-width: 63.9375rem) {
  .site-nav {
    display: inline-flex;
  }

  .nav-toggle,
  .mobile-drawer {
    display: none;
  }

  .card-grid.three-cols {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (min-width: 80rem) {
  .hero-home h1,
  .hero-home p {
    max-width: 12ch;
  }
}

@media (max-width: 47.9375rem) {
  .site-header .hdr-cta {
    display: none;
  }

  .hero-actions .btn,
  .cookie-actions .btn,
  .form-actions .btn {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

.fleet-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.fleet-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

@media (max-width: 900px) {
  .fleet-gallery {
    grid-template-columns: 1fr;
  }

  .fleet-gallery img {
    height: 240px;
  }
}

.hero {
  color: #ffffff;
}