:root {
  --navy-950: #03111c;
  --navy-900: #061724;
  --navy-850: #082033;
  --navy-800: #0a2940;
  --navy-700: #0d3d5d;
  --blue: #168dcc;
  --cyan: #51e4e9;
  --cyan-soft: #9bf4f3;
  --gold: #f6c85f;
  --white: #f7fbff;
  --muted: #a8bac8;
  --line: rgba(151, 211, 232, 0.17);
  --line-strong: rgba(151, 229, 240, 0.34);
  --surface: rgba(12, 39, 57, 0.74);
  --surface-solid: #0a2538;
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1220px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--navy-950);
  color-scheme: dark;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 10%, rgba(22, 141, 204, 0.11), transparent 28rem),
    radial-gradient(circle at 90% 24%, rgba(81, 228, 233, 0.055), transparent 30rem),
    var(--navy-950);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
video,
svg {
  display: block;
}

::selection {
  color: var(--navy-950);
  background: var(--cyan);
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  padding: 12px 18px;
  border-radius: 12px;
  color: var(--navy-950);
  background: var(--cyan);
  font-weight: 800;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section--surface {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.018), transparent 20%),
    rgba(7, 28, 43, 0.68);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading h2 {
  max-width: 760px;
  margin-top: 15px;
  font-size: clamp(2.1rem, 4.6vw, 4.45rem);
  line-height: 0.99;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.section-heading p {
  max-width: 650px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--large {
  min-height: 58px;
  padding-inline: 27px;
}

.button--small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.86rem;
}

.button--primary {
  color: #031722;
  background: linear-gradient(135deg, #70f0ef, #2eb9dd);
  box-shadow: 0 16px 40px rgba(49, 205, 224, 0.22);
}

.button--primary:hover {
  box-shadow: 0 20px 48px rgba(49, 205, 224, 0.34);
}

.button--glass {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(3, 19, 31, 0.34);
  backdrop-filter: blur(14px);
}

.button--glass:hover,
.button--outline:hover {
  border-color: var(--cyan);
  background: rgba(81, 228, 233, 0.08);
}

.button--outline {
  color: var(--white);
  border-color: var(--line-strong);
  background: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan-soft);
  font-weight: 800;
}

.text-link svg {
  transition: transform 0.2s ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 0;
  border-bottom: 1px solid transparent;
  transition: padding 0.25s ease, background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header--scrolled {
  padding: 10px 0;
  border-color: var(--line);
  background: rgba(3, 17, 28, 0.82);
  backdrop-filter: blur(20px) saturate(140%);
}

.site-header__inner {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand__icon {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.2));
}

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

.brand__copy strong {
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.brand__copy small {
  margin-top: 6px;
  color: var(--cyan);
  font-size: 0.54rem;
  font-weight: 850;
  letter-spacing: 0.19em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.desktop-nav a {
  position: relative;
  color: rgba(247, 251, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  background: var(--cyan);
  transition: transform 0.2s ease;
}

.desktop-nav a:hover {
  color: white;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: white;
  background: rgba(3, 20, 31, 0.48);
}

.mobile-menu {
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  height: 100vh;
  height: 100dvh;
  display: grid;
  align-items: center;
  padding: 110px 24px 40px;
  visibility: hidden;
  opacity: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(81, 228, 233, 0.12), transparent 20rem),
    rgba(3, 17, 28, 0.98);
  transform: translateY(-12px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.mobile-menu--open {
  z-index: 999;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu nav {
  width: min(100%, 560px);
  margin: auto;
}

.mobile-menu nav > a {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 1.35rem;
  font-weight: 800;
}

.mobile-menu nav > a span {
  color: var(--cyan);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.mobile-menu nav > a svg {
  margin-left: auto;
}

.mobile-menu .mobile-menu__booking {
  min-height: 58px;
  justify-content: center;
  margin-top: 28px;
  border: 0;
  border-radius: 999px;
  color: var(--navy-950);
  background: var(--cyan);
  font-size: 0.95rem;
}

.mobile-menu .mobile-menu__booking svg {
  margin-left: 0;
}

/* Hero */
.hero {
  position: relative;
  min-height: 920px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-950);
}

.hero__image {
  z-index: 0;
  object-fit: cover;
  object-position: center 45%;
  filter: saturate(0.9) contrast(1.05);
}

.hero__overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 15, 25, 0.97) 0%, rgba(3, 15, 25, 0.86) 36%, rgba(3, 15, 25, 0.43) 67%, rgba(3, 15, 25, 0.58) 100%),
    linear-gradient(0deg, var(--navy-950) 0%, transparent 32%),
    linear-gradient(180deg, rgba(3, 15, 25, 0.56), transparent 25%);
}

.hero__grid-lines {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(122, 221, 235, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 221, 235, 0.1) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 82%);
}

.hero__content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.55fr);
  align-items: end;
  gap: clamp(52px, 8vw, 110px);
  padding-top: 130px;
  padding-bottom: 100px;
}

.hero__copy {
  min-width: 0;
  max-width: 760px;
}

.availability-card {
  min-width: 0;
}

.hero__kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--cyan);
  font-size: 0.71rem;
  font-weight: 900;
  letter-spacing: 0.19em;
}

.hero__kicker span {
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.hero h1 {
  max-width: 790px;
  font-size: clamp(3.25rem, 7vw, 6.8rem);
  line-height: 0.91;
  letter-spacing: -0.067em;
  text-wrap: balance;
}

.hero h1 em {
  display: block;
  color: transparent;
  background: linear-gradient(105deg, #fff 6%, #8ceff0 48%, #4bc8df 95%);
  background-clip: text;
  font-style: normal;
}

.hero__copy > p {
  max-width: 640px;
  margin-top: 26px;
  color: rgba(227, 239, 247, 0.79);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 31px;
  color: rgba(236, 246, 251, 0.68);
  font-size: 0.79rem;
  font-weight: 700;
}

.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__trust svg {
  color: var(--cyan);
}

.availability-card {
  align-self: end;
  padding: 24px;
  border: 1px solid rgba(153, 228, 239, 0.25);
  border-radius: 27px;
  background: linear-gradient(155deg, rgba(10, 41, 61, 0.78), rgba(3, 19, 31, 0.72));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(140%);
}

.availability-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.availability-card__top > div {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  font-weight: 850;
}

.status-dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #55edaf;
  box-shadow: 0 0 0 5px rgba(85, 237, 175, 0.11), 0 0 22px rgba(85, 237, 175, 0.6);
}

.availability-card__top small {
  color: var(--muted);
  font-size: 0.67rem;
}

.availability-card__days {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 18px 0;
}

.availability-day {
  min-height: 102px;
  display: flex;
  flex-direction: column;
  padding: 13px;
  border: 1px solid rgba(150, 219, 235, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.availability-day > span {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 750;
  text-transform: uppercase;
}

.availability-day strong {
  margin-top: 3px;
  font-size: 1.05rem;
}

.availability-day em {
  width: fit-content;
  margin-top: auto;
  padding: 4px 7px;
  border-radius: 999px;
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 850;
}

.availability-day__available {
  color: #74efbd;
  background: rgba(74, 222, 160, 0.1);
}

.availability-day__pending {
  color: var(--gold);
  background: rgba(246, 200, 95, 0.11);
}

.availability-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 17px;
  border-radius: 15px;
  color: var(--navy-950);
  background: var(--cyan);
  font-size: 0.85rem;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.availability-card__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 28px rgba(81, 228, 233, 0.22);
}

.availability-card > p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.55;
}

.hero__scroll {
  position: absolute;
  z-index: 3;
  bottom: 33px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: rotate(-90deg);
  transform-origin: left center;
}

.hero__scroll span {
  color: rgba(255,255,255,.45);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.hero__scroll i {
  width: 56px;
  height: 1px;
  display: block;
  overflow: hidden;
  background: rgba(255,255,255,.18);
}

.hero__scroll i::after {
  width: 24px;
  height: 1px;
  display: block;
  content: "";
  background: var(--cyan);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%,100% { transform: translateX(-100%); }
  50% { transform: translateX(240%); }
}

.signal-strip {
  position: relative;
  z-index: 4;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #061a29;
}

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

.signal-strip__inner > div {
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  border-right: 1px solid var(--line);
}

.signal-strip__inner > div:last-child {
  border-right: 0;
}

.signal-strip strong {
  color: var(--cyan);
  font-size: 0.64rem;
  letter-spacing: 0.13em;
}

.signal-strip span {
  color: rgba(240, 248, 252, 0.72);
  font-size: 0.78rem;
  font-weight: 750;
}

/* Experiences */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.experience-card {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface-solid);
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
}

.experience-card img {
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.2,.8,.2,1), filter 0.5s ease;
}

.experience-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.1);
}

.experience-card__shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,17,28,0.06) 20%, rgba(3,17,28,0.96) 92%);
}

.experience-card__number {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 22px;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 50%;
  font-size: .68rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.experience-card__content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px;
}

.experience-card__content small {
  color: var(--cyan);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.experience-card__content h3 {
  margin-top: 10px;
  font-size: 1.65rem;
  letter-spacing: -0.04em;
}

.experience-card__content p {
  max-width: 360px;
  margin-top: 10px;
  color: rgba(230,241,247,.73);
  font-size: .88rem;
  line-height: 1.6;
}

.experience-card__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  color: white;
  font-size: .79rem;
  font-weight: 850;
}

/* Speed video */
.speed-section {
  overflow: hidden;
}

.speed-section::before {
  position: absolute;
  top: -220px;
  left: 52%;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(81,228,233,.07);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 80px rgba(81,228,233,.018), 0 0 0 160px rgba(81,228,233,.012);
}

.speed-section__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(480px, 1.18fr);
  align-items: center;
  gap: clamp(50px, 7vw, 95px);
}

.speed-section__copy .section-heading {
  margin-bottom: 32px;
}

.feature-list {
  display: grid;
  gap: 17px;
  margin-bottom: 30px;
}

.feature-list > div {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.feature-list > div > svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--cyan);
}

.feature-list span {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: .83rem;
  line-height: 1.5;
}

.feature-list strong {
  color: white;
  font-size: .94rem;
}

.video-frame {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border: 1px solid rgba(132,225,238,.27);
  border-radius: 34px;
  background: #061a29;
  box-shadow: var(--shadow);
}

.video-frame video {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}

.video-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(3,17,28,.04), rgba(3,17,28,.5));
  pointer-events: none;
}

.video-frame__hud {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.8);
  font-size: .58rem;
  font-weight: 850;
  letter-spacing: .14em;
}

.video-frame__hud i {
  height: 1px;
  flex: 1;
  background: rgba(255,255,255,.22);
}

.video-frame__hud b {
  color: #ff776f;
}

.video-frame__badge {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 15px 17px;
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 15px;
  background: rgba(2,16,27,.42);
  backdrop-filter: blur(10px);
}

.video-frame__badge strong {
  font-size: .87rem;
}

.video-frame__badge span {
  margin-top: 4px;
  color: var(--cyan);
  font-size: .55rem;
  letter-spacing: .13em;
}

/* Boat */
.boat-section {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(10,37,56,.72), rgba(3,17,28,.2));
}

.boat-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, .9fr);
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}

.boat-collage {
  position: relative;
  min-height: 650px;
}

.boat-collage__main {
  position: absolute;
  inset: 0 55px 48px 0;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.boat-collage__main img,
.boat-collage__detail img {
  object-fit: cover;
}

.boat-collage__main img {
  object-position: center 48%;
}

.boat-collage__detail {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 235px;
  height: 300px;
  overflow: hidden;
  border: 8px solid var(--navy-900);
  border-radius: 26px;
  box-shadow: 0 22px 55px rgba(0,0,0,.4);
}

.boat-collage__mark {
  position: absolute;
  top: 32px;
  right: 10px;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(3,17,28,.58);
  font-size: 1.2rem;
  font-weight: 950;
  line-height: .75;
  text-align: center;
  backdrop-filter: blur(12px);
}

.boat-collage__mark span {
  color: var(--muted);
  font-size: .55rem;
  letter-spacing: .16em;
}

.boat-section__copy .section-heading {
  margin-bottom: 31px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 31px;
}

.spec-grid > div {
  min-height: 130px;
  display: flex;
  flex-direction: column;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
}

.spec-grid span {
  color: var(--cyan);
  font-size: .58rem;
  font-weight: 850;
  letter-spacing: .14em;
}

.spec-grid strong {
  margin-top: auto;
  font-size: .9rem;
}

.spec-grid small {
  margin-top: 5px;
  color: var(--muted);
  font-size: .67rem;
}

/* Captain */
.captain-section__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(430px, 1.05fr);
  align-items: center;
  gap: clamp(58px, 8vw, 120px);
}

.captain-section__copy .section-heading {
  margin-bottom: 24px;
}

.captain-section blockquote {
  max-width: 620px;
  padding: 23px 0 23px 24px;
  border-left: 2px solid var(--cyan);
  color: rgba(244,250,253,.87);
  font-size: 1.15rem;
  font-weight: 650;
  font-style: italic;
  line-height: 1.7;
}

.captain-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.captain-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: .85rem;
}

.captain-points svg {
  color: var(--cyan);
}

.captain-photo {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.captain-photo img {
  object-fit: cover;
  object-position: center 26%;
}

.captain-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(3,17,28,.82));
}

.captain-photo__caption {
  position: absolute;
  z-index: 2;
  right: 27px;
  bottom: 27px;
  left: 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 17px;
  border-top: 1px solid rgba(255,255,255,.25);
}

.captain-photo__caption span {
  color: var(--cyan);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .2em;
}

.captain-photo__caption strong {
  font-size: .8rem;
  letter-spacing: .08em;
}

/* Gallery */
.gallery-preview__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.gallery-preview__head .section-heading {
  margin-bottom: 38px;
}

.gallery-preview__head > .text-link {
  margin-bottom: 48px;
  white-space: nowrap;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.45fr .75fr;
  grid-template-rows: repeat(2, 250px);
  gap: 16px;
}

.gallery-mosaic figure {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface-solid);
}

.gallery-mosaic__wide {
  grid-row: 1 / 3;
}

.gallery-mosaic img {
  object-fit: cover;
  transition: transform .6s ease;
}

.gallery-mosaic figure:hover img {
  transform: scale(1.025);
}

.gallery-mosaic__wide img {
  object-position: center 54%;
}

/* SEO story */
.seo-story {
  border-top: 1px solid var(--line);
}

.seo-story__grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(460px, 1.2fr);
  gap: clamp(55px, 9vw, 130px);
}

.seo-story h2 {
  margin-top: 17px;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.seo-story__content {
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.83;
}

.seo-story__content p + p {
  margin-top: 22px;
}

.seo-story__links {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.seo-story__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--white);
  font-size: .85rem;
  font-weight: 800;
}

.seo-story__links svg {
  color: var(--cyan);
}

/* FAQ */
.faq-section {
  background: linear-gradient(180deg, rgba(255,255,255,.016), transparent);
}

.faq-section__grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(480px, 1.2fr);
  gap: clamp(50px, 8vw, 110px);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 83px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  list-style: none;
  font-size: .98rem;
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--cyan);
  font-size: 1.1rem;
  transition: transform .2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 700px;
  padding: 0 58px 25px 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.72;
}

/* Final CTA */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 125px 0;
  border-top: 1px solid var(--line);
  background: #071e2e;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
  opacity: .5;
  background:
    radial-gradient(circle at 75% 30%, rgba(81,228,233,.2), transparent 24rem),
    linear-gradient(120deg, transparent 20%, rgba(22,141,204,.13) 50%, transparent 78%);
}

.final-cta__bg::after {
  position: absolute;
  right: -180px;
  bottom: -330px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(81,228,233,.11);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 80px rgba(81,228,233,.025), 0 0 0 160px rgba(81,228,233,.018);
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  text-align: center;
}

.final-cta__inner .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  margin-top: 18px;
  font-size: clamp(2.7rem, 6.5vw, 6.2rem);
  line-height: .94;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.final-cta p {
  max-width: 650px;
  margin: 25px auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.final-cta__inner > div:last-child {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

/* Footer */
.site-footer {
  position: relative;
  padding: 80px 0 26px;
  border-top: 1px solid var(--line);
  background: #020e17;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr .65fr .95fr;
  gap: 55px;
}

.site-footer__brand > p {
  max-width: 350px;
  margin-top: 22px;
  color: var(--muted);
  font-size: .83rem;
  line-height: 1.68;
}

.site-footer__location,
.footer-email {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 19px;
  color: rgba(233,244,249,.67);
  font-size: .77rem;
}

.site-footer h2 {
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.site-footer__grid > div:not(:first-child) > a:not(.footer-cta):not(.footer-email) {
  width: fit-content;
  display: block;
  margin-top: 11px;
  color: rgba(236,246,251,.69);
  font-size: .8rem;
  transition: color .2s ease;
}

.site-footer__grid > div:not(:first-child) > a:hover {
  color: white;
}

.site-footer__grid > div > p {
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.62;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  font-size: .77rem;
  font-weight: 850;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: rgba(218,234,241,.42);
  font-size: .65rem;
  letter-spacing: .06em;
}

.mobile-sticky-cta {
  position: fixed;
  z-index: 900;
  right: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom));
  left: 14px;
  display: none;
}

.mobile-sticky-cta a {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  color: #031722;
  background: linear-gradient(135deg, #78f0ef, #38c7e3);
  box-shadow: 0 18px 45px rgba(0,0,0,.36);
  font-size: .9rem;
  font-weight: 900;
}

/* Generic inner pages */
.page-hero {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: 155px 0 78px;
  background: var(--navy-900);
}

.page-hero--compact {
  min-height: 440px;
}

.page-hero__image {
  object-fit: cover;
  z-index: 0;
}

.page-hero__overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,17,28,.95), rgba(3,17,28,.63) 56%, rgba(3,17,28,.45)),
    linear-gradient(0deg, var(--navy-950), transparent 48%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: rgba(230,241,247,.55);
  font-size: .68rem;
}

.breadcrumbs a:hover {
  color: var(--cyan);
}

.page-hero h1 {
  font-size: clamp(3rem, 7vw, 6.1rem);
  line-height: .92;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.page-hero p {
  max-width: 690px;
  margin-top: 22px;
  color: rgba(230,241,247,.76);
  font-size: 1.05rem;
  line-height: 1.72;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(50px, 8vw, 100px);
}

.prose {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.86;
}

.prose h2,
.prose h3 {
  color: var(--white);
  letter-spacing: -.04em;
  text-wrap: balance;
}

.prose h2 {
  margin: 60px 0 19px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.07;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 35px 0 12px;
  font-size: 1.35rem;
}

.prose p + p {
  margin-top: 20px;
}

.prose ul {
  display: grid;
  gap: 11px;
  margin: 21px 0;
  padding-left: 22px;
}

.prose strong {
  color: var(--white);
}

.prose a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.side-card {
  position: sticky;
  top: 110px;
  height: fit-content;
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 23px;
  background: linear-gradient(160deg, rgba(13,61,93,.55), rgba(4,25,39,.76));
  box-shadow: 0 20px 55px rgba(0,0,0,.22);
}

.side-card h2,
.side-card h3 {
  font-size: 1.25rem;
  letter-spacing: -.03em;
}

.side-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.62;
}

.side-card .button {
  width: 100%;
  margin-top: 20px;
}

.side-card__list {
  display: grid;
  gap: 13px;
  margin-top: 20px;
}

.side-card__list span {
  display: flex;
  gap: 9px;
  color: rgba(232,243,248,.75);
  font-size: .76rem;
  line-height: 1.45;
}

.side-card__list svg {
  flex: 0 0 auto;
  color: var(--cyan);
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 34px 0;
}

.info-card {
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
}

.info-card svg {
  color: var(--cyan);
}

.info-card h3 {
  margin: 18px 0 8px;
  font-size: 1rem;
}

.info-card p {
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.55;
}

.split-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 36px;
}

.split-media figure {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 24px;
}

.split-media img {
  object-fit: cover;
}

/* Booking calendar */
.booking-page {
  padding: 150px 0 100px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 12%, rgba(81,228,233,.12), transparent 25rem),
    var(--navy-950);
}

.booking-header {
  max-width: 760px;
  margin-bottom: 42px;
}

.booking-header h1 {
  margin-top: 16px;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: .95;
  letter-spacing: -.06em;
}

.booking-header p {
  margin-top: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 24px;
}

.calendar-panel,
.booking-summary {
  border: 1px solid var(--line);
  border-radius: 25px;
  background: rgba(8,32,51,.74);
  box-shadow: 0 20px 55px rgba(0,0,0,.18);
  backdrop-filter: blur(15px);
}

.calendar-panel {
  padding: 25px;
}

.calendar-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 21px;
  border-bottom: 1px solid var(--line);
}

.calendar-panel__head h2 {
  font-size: 1.22rem;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: .66rem;
}

.calendar-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.calendar-legend i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.legend-available { background: #52e6ad; }
.legend-pending { background: var(--gold); }
.legend-booked { background: #eb7474; }
.legend-closed { background: #6d8290; }

.date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.date-card {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 17px;
  color: white;
  background: rgba(255,255,255,.024);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.date-card:hover:not(:disabled),
.date-card--active {
  transform: translateY(-3px);
  border-color: var(--cyan);
  background: rgba(81,228,233,.07);
}

.date-card:disabled {
  cursor: not-allowed;
  opacity: .62;
}

.date-card small {
  color: var(--muted);
  font-size: .61rem;
  text-transform: uppercase;
}

.date-card strong {
  margin-top: 4px;
  font-size: 1.25rem;
}

.date-card em {
  margin-top: auto;
  font-size: .58rem;
  font-style: normal;
  font-weight: 850;
}

.date-card[data-status="available"] em { color: #64e9b5; }
.date-card[data-status="pending"] em { color: var(--gold); }
.date-card[data-status="booked"] em { color: #ee8a8a; }
.date-card[data-status="closed"] em { color: #8fa2ae; }

.booking-summary {
  height: fit-content;
  padding: 25px;
}

.booking-summary__empty {
  min-height: 330px;
  display: grid;
  place-items: center;
  text-align: center;
}

.booking-summary__empty svg {
  margin-inline: auto;
  color: var(--cyan);
}

.booking-summary__empty h2 {
  margin-top: 17px;
  font-size: 1.12rem;
}

.booking-summary__empty p {
  max-width: 260px;
  margin-top: 9px;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.55;
}

.booking-summary h2 {
  font-size: 1.15rem;
}

.selected-date {
  margin-top: 14px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255,255,255,.03);
}

.selected-date small {
  color: var(--cyan);
  font-size: .62rem;
  font-weight: 850;
  text-transform: uppercase;
}

.selected-date strong {
  display: block;
  margin-top: 5px;
}

.slot-list {
  display: grid;
  gap: 9px;
  margin-top: 20px;
}

.slot-button {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: white;
  background: rgba(255,255,255,.025);
  cursor: pointer;
}

.slot-button:hover,
.slot-button--active {
  border-color: var(--cyan);
  background: rgba(81,228,233,.08);
}

.slot-button span {
  font-size: .78rem;
  font-weight: 800;
}

.slot-button small {
  color: var(--muted);
  font-size: .63rem;
}

.booking-summary .button {
  width: 100%;
  margin-top: 19px;
}

.booking-summary__note {
  margin-top: 14px;
  color: var(--muted);
  font-size: .65rem;
  line-height: 1.5;
  text-align: center;
}

/* Auth */
.auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 130px 20px 70px;
  background:
    radial-gradient(circle at 20% 30%, rgba(22,141,204,.15), transparent 28rem),
    radial-gradient(circle at 80% 70%, rgba(81,228,233,.09), transparent 24rem),
    var(--navy-950);
}

.auth-shell {
  width: min(100%, 970px);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background: #071d2d;
  box-shadow: var(--shadow);
}

.auth-visual {
  position: relative;
  min-height: 610px;
  padding: 38px;
  overflow: hidden;
  background: #09283d;
}

.auth-visual img {
  object-fit: cover;
  opacity: .62;
}

.auth-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(4,19,31,.15), rgba(4,19,31,.92));
}

.auth-visual__copy {
  position: absolute;
  z-index: 2;
  right: 35px;
  bottom: 38px;
  left: 35px;
}

.auth-visual__copy h2 {
  margin-top: 13px;
  font-size: 2.35rem;
  line-height: 1;
  letter-spacing: -.055em;
}

.auth-visual__copy p {
  margin-top: 15px;
  color: rgba(231,242,247,.72);
  font-size: .82rem;
  line-height: 1.6;
}

.auth-form-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px;
}

.auth-form-wrap h1 {
  font-size: 2rem;
  letter-spacing: -.045em;
}

.auth-form-wrap > p {
  margin-top: 10px;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.55;
}

.form-grid {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: rgba(239,248,251,.72);
  font-size: .7rem;
  font-weight: 750;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 50px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: white;
  background: rgba(255,255,255,.035);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-field textarea {
  min-height: 110px;
  padding-block: 13px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(81,228,233,.08);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: .68rem;
  line-height: 1.45;
}

.form-check input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--cyan);
}

.auth-form-wrap .button {
  width: 100%;
  margin-top: 21px;
  border: 0;
  cursor: pointer;
}

.auth-switch {
  margin-top: 22px;
  color: var(--muted);
  font-size: .72rem;
  text-align: center;
}

.auth-switch a {
  color: var(--cyan);
  font-weight: 800;
}

.form-message {
  margin-top: 17px;
  padding: 12px 14px;
  border: 1px solid rgba(246,200,95,.3);
  border-radius: 12px;
  color: #f7d889;
  background: rgba(246,200,95,.07);
  font-size: .7rem;
  line-height: 1.5;
}

/* Gallery page */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 115px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.gallery-item img {
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item:nth-child(1) { grid-column: span 7; grid-row: span 4; }
.gallery-item:nth-child(2) { grid-column: span 5; grid-row: span 3; }
.gallery-item:nth-child(3) { grid-column: span 5; grid-row: span 4; }
.gallery-item:nth-child(4) { grid-column: span 4; grid-row: span 3; }
.gallery-item:nth-child(5) { grid-column: span 4; grid-row: span 3; }
.gallery-item:nth-child(6) { grid-column: span 4; grid-row: span 3; }
.gallery-item:nth-child(7) { grid-column: span 6; grid-row: span 4; }
.gallery-item:nth-child(8) { grid-column: span 6; grid-row: span 4; }

.gallery-video {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 28px;
}

.gallery-video video {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 55px;
}

.contact-info {
  display: grid;
  gap: 14px;
}

.contact-info__card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
}

.contact-info__card svg {
  color: var(--cyan);
}

.contact-info__card h3 {
  margin-top: 14px;
  font-size: .95rem;
}

.contact-info__card p,
.contact-info__card a {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.55;
}

.contact-form {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(8,32,51,.72);
}

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

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

/* Admin */
.admin-page {
  min-height: 100vh;
  padding: 130px 0 90px;
  background: #05131f;
}

.admin-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.admin-head h1 {
  margin-top: 10px;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  letter-spacing: -.055em;
}

.admin-head p {
  margin-top: 10px;
  color: var(--muted);
  font-size: .82rem;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.admin-stat {
  min-height: 135px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
}

.admin-stat span {
  color: var(--muted);
  font-size: .67rem;
}

.admin-stat strong {
  margin-top: auto;
  font-size: 2rem;
  letter-spacing: -.04em;
}

.admin-stat small {
  margin-top: 4px;
  color: var(--cyan);
  font-size: .6rem;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: 18px;
  margin-top: 18px;
}

.admin-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: rgba(255,255,255,.025);
}

.admin-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.admin-panel__head h2 {
  font-size: 1rem;
}

.admin-panel__head span {
  color: var(--muted);
  font-size: .65rem;
}

.request-list {
  display: grid;
}

.request-row {
  display: grid;
  grid-template-columns: 1.1fr .85fr .7fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.request-row:last-child {
  border-bottom: 0;
}

.request-row strong {
  display: block;
  font-size: .82rem;
}

.request-row small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .62rem;
}

.request-status {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--gold);
  background: rgba(246,200,95,.1);
  font-size: .58rem;
  font-weight: 850;
}

.request-actions {
  display: flex;
  gap: 7px;
}

.request-actions button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: white;
  background: transparent;
  cursor: pointer;
  font-size: .63rem;
}

.request-actions button:first-child {
  color: #061724;
  border-color: var(--cyan);
  background: var(--cyan);
  font-weight: 850;
}

.admin-form {
  padding: 20px;
}

.admin-form .form-grid {
  margin-top: 0;
}

.admin-form .button {
  width: 100%;
  margin-top: 5px;
  border: 0;
  cursor: pointer;
}

.admin-message {
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  color: #69e6b5;
  font-size: .68rem;
}

/* Legal */
.legal-page {
  padding: 150px 0 100px;
}

.legal-page__header {
  max-width: 760px;
  margin-bottom: 50px;
}

.legal-page h1 {
  margin-top: 15px;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: .96;
  letter-spacing: -.06em;
}

.legal-page__header p {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 1080px) {
  .desktop-nav {
    gap: 17px;
  }

  .desktop-nav a {
    font-size: .78rem;
  }

  .hero__content {
    grid-template-columns: minmax(0, 1.15fr) 310px;
    gap: 45px;
  }

  .signal-strip__inner > div {
    padding-inline: 18px;
  }

  .speed-section__grid,
  .boat-section__grid,
  .captain-section__grid {
    gap: 50px;
  }

  .video-frame {
    min-height: 520px;
  }

  .boat-collage,
  .captain-photo {
    min-height: 570px;
  }

  .site-footer__grid {
    grid-template-columns: 1.2fr repeat(3, .8fr);
    gap: 30px;
  }

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

@media (max-width: 900px) {
  .section {
    padding: 88px 0;
  }

  .desktop-nav,
  .desktop-booking {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: 880px;
    align-items: end;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(3,15,25,.38) 10%, rgba(3,15,25,.78) 52%, rgba(3,15,25,.98) 91%),
      linear-gradient(0deg, var(--navy-950), transparent 30%);
  }

  .hero__image {
    object-position: 58% center;
  }

  .hero__grid-lines {
    mask-image: linear-gradient(180deg, transparent 10%, black 70%, transparent);
  }

  .hero__content {
    grid-template-columns: 1fr;
    align-items: end;
    gap: 34px;
    padding-top: 150px;
    padding-bottom: 72px;
  }

  .hero__copy {
    max-width: 700px;
  }

  .availability-card {
    max-width: 640px;
  }

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

  .signal-strip__inner > div:nth-child(2) {
    border-right: 0;
  }

  .signal-strip__inner > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .experience-card {
    min-height: 460px;
  }

  .speed-section__grid,
  .boat-section__grid,
  .captain-section__grid,
  .seo-story__grid,
  .faq-section__grid,
  .content-grid,
  .booking-layout,
  .contact-grid,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .speed-section__copy,
  .boat-section__copy {
    order: 1;
  }

  .video-frame,
  .boat-collage {
    order: 2;
  }

  .side-card {
    position: static;
  }

  .gallery-preview__head {
    align-items: start;
    flex-direction: column;
    gap: 0;
  }

  .gallery-preview__head > .text-link {
    margin-bottom: 30px;
  }

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

  .booking-summary {
    order: -1;
  }

  .booking-summary__empty {
    min-height: 180px;
  }

  .auth-shell {
    grid-template-columns: 1fr;
    max-width: 570px;
  }

  .auth-visual {
    min-height: 330px;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .site-header {
    padding: 10px 0;
  }

  .brand__icon {
    width: 40px;
    height: 40px;
  }

  .brand__copy small {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .hero__image {
    object-position: 54% center;
  }

  .hero__content {
    padding-top: 110px;
    padding-bottom: 52px;
  }

  .hero__kicker {
    margin-bottom: 17px;
    font-size: .58rem;
    letter-spacing: .13em;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 16vw, 4.9rem);
    line-height: .9;
  }

  .hero__copy > p {
    margin-top: 20px;
    font-size: .92rem;
    line-height: 1.62;
  }

  .hero__actions {
    display: grid;
    margin-top: 25px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__trust {
    gap: 10px 15px;
    margin-top: 22px;
    font-size: .68rem;
  }

  .availability-card {
    padding: 18px;
  }

  .availability-card__days {
    grid-template-columns: repeat(4, minmax(98px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 14px;
  }

  .availability-day {
    scroll-snap-align: start;
  }

  .hero__scroll {
    display: none;
  }

  .signal-strip__inner > div {
    min-height: 82px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    padding: 15px;
  }

  .signal-strip span {
    font-size: .68rem;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2 {
    font-size: clamp(2.25rem, 11vw, 3.6rem);
  }

  .section-heading p {
    margin-top: 16px;
    font-size: .9rem;
    line-height: 1.65;
  }

  .experience-card {
    min-height: 435px;
    border-radius: 23px;
  }

  .experience-card__content {
    padding: 23px;
  }

  .video-frame {
    min-height: 520px;
    border-radius: 24px;
  }

  .boat-collage {
    min-height: 500px;
  }

  .boat-collage__main {
    inset: 0 24px 44px 0;
    border-radius: 24px;
  }

  .boat-collage__detail {
    width: 175px;
    height: 230px;
    border-width: 6px;
  }

  .boat-collage__mark {
    right: 0;
    width: 66px;
    height: 66px;
  }

  .spec-grid {
    gap: 9px;
  }

  .spec-grid > div {
    min-height: 116px;
    padding: 15px;
  }

  .captain-photo {
    min-height: 540px;
    border-radius: 25px;
  }

  .captain-section blockquote {
    font-size: 1rem;
  }

  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 330px 210px;
  }

  .gallery-mosaic__wide {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .seo-story__grid,
  .faq-section__grid {
    gap: 38px;
  }

  .seo-story__content {
    font-size: .9rem;
    line-height: 1.72;
  }

  .faq-list summary {
    min-height: 74px;
    font-size: .88rem;
  }

  .final-cta {
    padding: 92px 0 110px;
  }

  .final-cta h2 {
    font-size: clamp(2.8rem, 13vw, 4.5rem);
  }

  .final-cta__inner > div:last-child {
    display: grid;
  }

  .site-footer {
    padding-bottom: 100px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 8px;
    margin-top: 44px;
  }

  .mobile-sticky-cta {
    display: block;
  }

  .hero__content,
  .hero__copy,
  .availability-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .availability-card__top {
    min-width: 0;
  }

  .availability-card__top small {
    max-width: 40%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .availability-card__days {
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(4, minmax(92px, 1fr));
  }

  .faq-list summary {
    min-width: 0;
    gap: 14px;
    padding-right: 2px;
  }

  .page-hero {
    min-height: 520px;
    padding: 130px 0 55px;
  }

  .page-hero--compact {
    min-height: 400px;
  }

  .page-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .page-hero p {
    font-size: .9rem;
  }

  .info-cards,
  .split-media,
  .contact-form .form-grid {
    grid-template-columns: 1fr;
  }

  .split-media figure {
    min-height: 420px;
  }

  .booking-page {
    padding: 120px 0 100px;
  }

  .calendar-panel,
  .booking-summary {
    border-radius: 20px;
  }

  .calendar-panel {
    padding: 16px;
  }

  .calendar-panel__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .date-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .date-card {
    min-height: 105px;
  }

  .auth-page {
    padding: 105px 14px 90px;
  }

  .auth-shell {
    border-radius: 23px;
  }

  .auth-visual {
    min-height: 265px;
  }

  .auth-visual__copy {
    right: 25px;
    bottom: 25px;
    left: 25px;
  }

  .auth-visual__copy h2 {
    font-size: 1.9rem;
  }

  .auth-form-wrap {
    padding: 31px 23px;
  }

  .gallery-page-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }

  .gallery-item:nth-child(n) {
    grid-column: span 1;
    grid-row: span 2;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(7) {
    grid-column: 1 / 3;
  }

  .gallery-video {
    min-height: 480px;
  }

  .contact-form {
    padding: 20px;
  }

  .admin-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-head .button {
    width: 100%;
  }

  .admin-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
  }

  .admin-stat {
    min-height: 115px;
    padding: 15px;
  }

  .request-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .request-actions {
    width: 100%;
  }

  .request-actions button {
    flex: 1;
  }
}

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

  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ========================================================================== */
/* DeepBlueBodrum Node edition — shared UI                                    */
/* ========================================================================== */
.icon { width: 1.15em; height: 1.15em; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.button--block { width: 100%; }
.button--ghost { color: var(--muted); background: transparent; border-color: transparent; }
.button--danger { color: #ffd9df; border-color: rgba(255, 105, 129, .35); background: rgba(255, 72, 104, .1); }
.button--danger:hover { border-color: #ff6c85; background: rgba(255, 72, 104, .18); }
.button--success { color: #03251f; border-color: transparent; background: linear-gradient(135deg, #6ef0c1, #36d69d); box-shadow: 0 18px 42px rgba(54, 214, 157, .18); }
.button:disabled { cursor: not-allowed; opacity: .45; transform: none; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.field { display: grid; gap: 8px; min-width: 0; }
.field > span { color: #d7e7ef; font-size: .78rem; font-weight: 800; letter-spacing: .035em; }
.field > span small { color: var(--muted); font-weight: 600; }
.field input, .field textarea, .field select, .message-card select, .admin-filter input, .admin-filter select {
  width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 13px;
  color: var(--white); background: rgba(2, 17, 28, .68); outline: none; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 112px; resize: vertical; line-height: 1.6; }
.field input:focus, .field textarea:focus, .field select:focus, .message-card select:focus { border-color: var(--cyan); background: rgba(4, 26, 41, .92); box-shadow: 0 0 0 4px rgba(81, 228, 233, .08); }
.field input:disabled { color: #879da9; background: rgba(255,255,255,.025); }
.field small { color: var(--muted); font-size: .73rem; line-height: 1.5; }
.field--wide { grid-column: 1 / -1; }
.form-grid { display: grid; gap: 18px; }
.form-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.check-field { display: flex; align-items: flex-start; gap: 11px; color: #c9dbe5; font-size: .82rem; line-height: 1.55; }
.check-field input { width: 18px; height: 18px; margin-top: 2px; flex: 0 0 auto; accent-color: var(--cyan); }
.check-field span { display: grid; gap: 3px; }
.check-field strong { color: var(--white); }
.check-field small { color: var(--muted); }
.check-field a { color: var(--cyan-soft); text-decoration: underline; text-underline-offset: 3px; }
.password-field { position: relative; }
.password-field input { padding-right: 52px; }
.password-field button { position: absolute; top: 50%; right: 8px; width: 38px; height: 38px; display: grid; place-items: center; transform: translateY(-50%); border: 0; border-radius: 50%; color: var(--muted); background: transparent; cursor: pointer; }
.password-field button:hover { color: var(--cyan); background: rgba(81,228,233,.08); }
.form-alert { margin-bottom: 20px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 14px; font-size: .88rem; line-height: 1.55; }
.form-alert--error { color: #ffd8df; border-color: rgba(255, 104, 132, .36); background: rgba(255, 73, 106, .09); }
.form-alert--success { color: #d7fff1; border-color: rgba(74, 231, 174, .35); background: rgba(56, 214, 157, .08); }
.form-alert--warning { color: #fff2cc; border-color: rgba(246, 200, 95, .38); background: rgba(246, 200, 95, .08); }

.flash { position: fixed; z-index: 3000; top: 90px; left: 50%; width: min(calc(100% - 28px), 720px); display: flex; align-items: center; justify-content: space-between; gap: 14px; transform: translateX(-50%); padding: 14px 16px 14px 18px; border: 1px solid var(--line-strong); border-radius: 16px; color: var(--white); background: rgba(6, 31, 47, .96); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.flash--success { border-color: rgba(74, 231, 174, .45); }
.flash--error { border-color: rgba(255, 104, 132, .48); }
.flash--warning { border-color: rgba(246, 200, 95, .48); }
.flash button { width: 34px; height: 34px; display: grid; place-items: center; border: 0; border-radius: 50%; color: inherit; background: rgba(255,255,255,.06); cursor: pointer; }

/* Header additions */
.header-actions { display: flex; align-items: center; gap: 9px; flex-shrink: 0; }
.header-account, .language-switch { min-height: 42px; display: inline-flex; align-items: center; gap: 8px; padding: 0 13px; border: 1px solid transparent; border-radius: 999px; color: rgba(247,251,255,.78); font-size: .8rem; font-weight: 800; }
.header-account:hover, .language-switch:hover { color: var(--white); border-color: var(--line); background: rgba(255,255,255,.035); }
.header-logout { margin: 0; }
.header-logout__button { min-height: 42px; display: inline-flex; align-items: center; gap: 8px; padding: 0 13px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; background: rgba(255,255,255,.03); color: rgba(247,251,255,.82); font: inherit; font-size: .8rem; font-weight: 800; cursor: pointer; }
.header-logout__button:hover { color: var(--white); border-color: rgba(111,231,236,.38); background: rgba(111,231,236,.09); }
.mobile-logout { margin: 0; width: 100%; }
.mobile-logout__button { width: 100%; cursor: pointer; }
.language-switch { min-width: 42px; justify-content: center; padding: 0 10px; color: var(--cyan-soft); letter-spacing: .08em; }
.header-cta { min-height: 44px; padding-inline: 18px; font-size: .82rem; }
.desktop-nav a.is-active { color: var(--white); }
.desktop-nav a.is-active::after { transform: scaleX(1); }
.menu-close-icon { display: none; }
body.menu-open { overflow: hidden; }
body.menu-open .menu-open-icon { display: none; }
body.menu-open .menu-close-icon { display: block; }
.mobile-menu__inner { width: 100%; }
.mobile-menu nav > a { justify-content: space-between; }
.mobile-menu nav > a span { color: var(--white); font-size: clamp(1.05rem, 4vw, 1.35rem); letter-spacing: -.02em; }
.mobile-menu__actions { width: min(100%, 560px); display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 26px auto 0; }
.mobile-menu__contact { width: min(100%, 560px); display: flex; justify-content: space-between; gap: 16px; margin: 22px auto 0; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: .76rem; }
.mobile-booking-bar { display: none; }

/* Home additions */
.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__grid { position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(114,221,239,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(114,221,239,.12) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(90deg, black, transparent 68%); pointer-events: none; }
.hero__kicker i { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 6px rgba(81,228,233,.12), 0 0 24px var(--cyan); }
.hero__copy h1 em { display: block; color: var(--cyan-soft); font-style: normal; }
.availability-preview { align-self: center; overflow: hidden; border: 1px solid rgba(157, 229, 240, .25); border-radius: 28px; background: linear-gradient(180deg, rgba(7, 34, 51, .82), rgba(5, 24, 38, .9)); box-shadow: 0 34px 90px rgba(0,0,0,.35); backdrop-filter: blur(20px); }
.availability-preview__head { padding: 23px 24px 17px; border-bottom: 1px solid var(--line); }
.availability-preview__head > span { display: flex; align-items: center; gap: 8px; color: var(--cyan); font-size: .63rem; font-weight: 900; letter-spacing: .16em; }
.availability-preview__head > span i { width: 7px; height: 7px; border-radius: 50%; background: #63efbd; box-shadow: 0 0 0 5px rgba(99,239,189,.1); }
.availability-preview__head strong { display: block; margin-top: 11px; font-size: 1.28rem; }
.availability-preview__head small { display: block; margin-top: 5px; color: var(--muted); }
.availability-preview__days { display: grid; padding: 8px 17px; }
.availability-day { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 8px 7px; border-bottom: 1px solid var(--line); }
.availability-day:last-child { border-bottom: 0; }
.availability-day > span { display: grid; grid-template-columns: 38px 34px 34px; align-items: baseline; }
.availability-day small, .availability-day em { color: var(--muted); font-size: .68rem; font-style: normal; text-transform: uppercase; }
.availability-day strong { color: var(--white); font-size: 1.28rem; }
.availability-day b { min-width: 73px; padding: 7px 10px; border-radius: 999px; font-size: .68rem; text-align: center; }
.availability-day--available b { color: #caffeb; background: rgba(62, 220, 160, .12); }
.availability-day--pending b { color: #ffefbc; background: rgba(246, 200, 95, .12); }
.availability-day--booked b, .availability-day--closed b { color: #a5b4bd; background: rgba(255,255,255,.05); }
.availability-preview__link { min-height: 56px; display: flex; align-items: center; justify-content: space-between; padding: 0 24px; border-top: 1px solid var(--line); color: var(--cyan-soft); font-size: .8rem; font-weight: 850; }
.experience-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.experience-card:hover > img { transform: scale(1.04); }
.video-frame video { width: 100%; height: 100%; object-fit: cover; }
.boat-collage img, .captain-photo img, .gallery-mosaic img { width: 100%; height: 100%; object-fit: cover; }
.gallery-mosaic figure { position: relative; overflow: hidden; border-radius: var(--radius); }
.captain-photo { overflow: hidden; }
.captain-section blockquote { max-width: 620px; margin: 25px 0; padding: 22px 0 22px 24px; border-left: 2px solid var(--cyan); color: #deedf5; font-size: clamp(1.1rem,2vw,1.4rem); font-weight: 650; line-height: 1.55; }

/* Inner hero and content pages */
.inner-hero { position: relative; min-height: 690px; display: flex; align-items: end; overflow: hidden; }
.inner-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.inner-hero--fishing > img { object-position: center 54%; }
.inner-hero--boat > img { object-position: center 57%; }
.inner-hero--gallery > img { object-position: center 58%; }
.inner-hero--contact > img { object-position: center 45%; }
.inner-hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,14,24,.96) 0%, rgba(2,14,24,.76) 45%, rgba(2,14,24,.26) 78%), linear-gradient(0deg, var(--navy-950), transparent 34%); }
.inner-hero__content { position: relative; z-index: 1; max-width: 860px; padding-top: 170px; padding-bottom: 95px; }
.inner-hero__content h1 { max-width: 820px; margin-top: 18px; font-size: clamp(3rem, 6.2vw, 6.4rem); line-height: .94; letter-spacing: -.065em; text-wrap: balance; }
.inner-hero__content p { max-width: 680px; margin-top: 24px; color: #c1d3dd; font-size: clamp(1rem,1.7vw,1.18rem); line-height: 1.75; }
.inner-hero__content > div { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.split-intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.split-intro h2 { margin-top: 14px; font-size: clamp(2.35rem,4.8vw,4.8rem); line-height: .98; letter-spacing: -.055em; }
.split-intro > div:last-child { display: grid; gap: 20px; color: var(--muted); font-size: 1.04rem; line-height: 1.8; }
.package-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.package-card { position: relative; min-height: 350px; display: flex; flex-direction: column; padding: 27px; overflow: hidden; border: 1px solid var(--line); border-radius: 25px; background: linear-gradient(155deg, rgba(15,54,77,.74), rgba(5,25,39,.9)); }
.package-card::after { position: absolute; right: -35px; bottom: -60px; width: 180px; height: 180px; content: ''; border: 1px solid rgba(81,228,233,.14); border-radius: 50%; box-shadow: 0 0 0 28px rgba(81,228,233,.025), 0 0 0 56px rgba(81,228,233,.018); }
.package-card__index { position: absolute; top: 20px; right: 23px; color: rgba(155,244,243,.18); font-size: 3rem; font-weight: 950; }
.package-card > small { color: var(--cyan); font-size: .68rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.package-card h3 { max-width: 82%; margin-top: 22px; font-size: 1.65rem; }
.package-card p { margin-top: 17px; color: var(--muted); line-height: 1.7; }
.package-card__footer { position: relative; z-index: 1; display: flex; align-items: end; justify-content: space-between; gap: 14px; margin-top: auto; padding-top: 30px; }
.package-card__footer strong { max-width: 45%; color: #fff0bd; font-size: .82rem; }
.package-card__footer a { display: inline-flex; align-items: center; gap: 7px; color: var(--cyan-soft); font-weight: 800; font-size: .82rem; }
.process-section { display: grid; gap: 36px; }
.process-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 13px; }
.process-grid > div { min-height: 220px; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: rgba(10,38,56,.54); }
.process-grid > div > span { color: var(--cyan); font-size: .72rem; font-weight: 900; letter-spacing: .14em; }
.process-grid h3 { margin-top: 42px; font-size: 1.15rem; }
.process-grid p { margin-top: 10px; color: var(--muted); font-size: .88rem; line-height: 1.65; }
.equipment-section { background: linear-gradient(180deg, rgba(7,28,43,.68), transparent); }
.equipment-section__grid { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: 70px; align-items: center; }
.equipment-photo { min-height: 650px; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.equipment-photo img { width: 100%; height: 100%; object-fit: cover; }
.check-list { display: grid; gap: 13px; list-style: none; }
.check-list li { display: flex; gap: 14px; padding: 16px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.025); }
.check-list li > .icon { width: 22px; height: 22px; color: var(--cyan); }
.check-list li span { display: grid; gap: 4px; }
.check-list small { color: var(--muted); }
.boat-story { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.boat-story__visual { overflow: hidden; border: 1px solid var(--line); border-radius: 30px; box-shadow: var(--shadow); }
.boat-story__visual img { width: 100%; height: auto; }
.boat-story h2 { margin-top: 16px; font-size: clamp(2.4rem,4.7vw,4.8rem); line-height: .98; letter-spacing: -.055em; }
.boat-story p { margin: 22px 0 28px; color: var(--muted); line-height: 1.8; }
.feature-cards { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; }
.feature-cards article { min-height: 250px; padding: 25px; border: 1px solid var(--line); border-radius: 21px; background: rgba(9,38,57,.68); }
.feature-cards .icon { width: 30px; height: 30px; color: var(--cyan); }
.feature-cards h3 { margin-top: 46px; font-size: 1.16rem; }
.feature-cards p { margin-top: 12px; color: var(--muted); font-size: .9rem; line-height: 1.65; }
.boat-gallery { display: grid; grid-template-columns: 1.35fr .65fr .65fr; grid-auto-rows: 260px; gap: 12px; }
.boat-gallery figure { overflow: hidden; border-radius: 18px; }
.boat-gallery figure img { width: 100%; height: 100%; object-fit: cover; }
.boat-gallery__large { grid-row: span 2; }
.boat-gallery figure:last-child { grid-column: 2 / 4; }
.boat-specs-section { padding-top: 20px; }
.boat-specs { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; padding: 44px; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(135deg, rgba(14,58,79,.7), rgba(5,25,39,.88)); }
.boat-specs h2 { margin-top: 15px; font-size: clamp(2.1rem,4vw,4rem); line-height: 1; letter-spacing: -.05em; }
.boat-specs dl { display: grid; }
.boat-specs dl > div { display: flex; justify-content: space-between; gap: 25px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.boat-specs dt { color: var(--muted); }
.boat-specs dd { font-weight: 800; text-align: right; }
.gallery-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 27px; }
.gallery-filter button { min-height: 42px; padding: 0 18px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: transparent; cursor: pointer; }
.gallery-filter button.is-active { color: var(--navy-950); border-color: var(--cyan); background: var(--cyan); font-weight: 800; }
.gallery-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); grid-auto-rows: 250px; gap: 10px; }
.gallery-item { position: relative; overflow: hidden; border: 0; border-radius: 16px; color: white; background: #0a2639; cursor: zoom-in; }
.gallery-item[hidden] { display: none; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item > span { position: absolute; right: 12px; bottom: 12px; display: flex; align-items: center; gap: 7px; padding: 8px 10px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: rgba(3,17,28,.7); backdrop-filter: blur(10px); font-size: .72rem; }
.gallery-video { position: relative; overflow: hidden; border-radius: 16px; background: #071c2b; }
.gallery-video video { width: 100%; height: 100%; object-fit: cover; }
.gallery-video > div { position: absolute; right: 0; bottom: 0; left: 0; padding: 30px 18px 16px; background: linear-gradient(transparent, rgba(2,14,24,.92)); }
.gallery-video > div span { display: block; margin-top: 4px; color: var(--cyan); font-size: .65rem; letter-spacing: .12em; }
.lightbox { position: fixed; z-index: 4000; inset: 0; display: grid; place-items: center; padding: 70px 24px 24px; background: rgba(0,8,14,.94); backdrop-filter: blur(16px); }
.lightbox[hidden] { display: none; }
.lightbox > button { position: absolute; top: 22px; right: 22px; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; color: white; background: rgba(255,255,255,.05); cursor: pointer; }
.lightbox figure { max-width: min(1200px,100%); max-height: 100%; display: grid; gap: 10px; }
.lightbox img { max-width: 100%; max-height: calc(100vh - 130px); object-fit: contain; border-radius: 14px; }
.lightbox figcaption { color: var(--muted); text-align: center; }

/* Booking page */
.booking-hero { padding: 160px 0 70px; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 70% 20%, rgba(81,228,233,.12), transparent 25rem), linear-gradient(180deg,#071e2e,var(--navy-950)); }
.booking-hero h1 { max-width: 960px; margin-top: 16px; font-size: clamp(3rem,6vw,6rem); line-height: .95; letter-spacing: -.06em; }
.booking-hero p { max-width: 720px; margin-top: 20px; color: var(--muted); font-size: 1.06rem; line-height: 1.75; }
.booking-section { padding-top: 70px; }
.booking-layout { grid-template-columns: minmax(0,1.45fr) minmax(340px,.55fr); gap: 18px; align-items: start; }
.calendar-panel, .booking-summary { border: 1px solid var(--line); background: rgba(7,31,47,.72); box-shadow: 0 24px 70px rgba(0,0,0,.22); }
.calendar-panel { padding: 27px; }
.calendar-panel__head h2, .booking-summary h2 { margin-top: 8px; font-size: 2rem; }
.date-grid { grid-template-columns: repeat(5,minmax(0,1fr)); gap: 8px; }
.date-card { min-height: 115px; display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; padding: 14px; border: 1px solid var(--line); border-radius: 15px; color: var(--white); background: rgba(255,255,255,.025); cursor: pointer; }
.date-card small, .date-card span { color: var(--muted); font-size: .67rem; text-transform: uppercase; }
.date-card strong { font-size: 1.7rem; }
.date-card em { padding: 5px 7px; border-radius: 999px; font-size: .58rem; font-style: normal; }
.date-card--available em { color: #caffeb; background: rgba(62,220,160,.12); }
.date-card--pending em { color: #ffefbc; background: rgba(246,200,95,.12); }
.date-card--booked em, .date-card--closed em { color: #9bb0bb; background: rgba(255,255,255,.05); }
.date-card.is-active { border-color: var(--cyan); background: rgba(81,228,233,.08); box-shadow: inset 0 0 0 1px rgba(81,228,233,.25); }
.date-card:disabled { cursor: not-allowed; opacity: .52; }
.calendar-note { display: flex; gap: 12px; margin-top: 20px; padding: 14px; border: 1px solid var(--line); border-radius: 14px; color: var(--muted); background: rgba(255,255,255,.02); font-size: .8rem; line-height: 1.6; }
.calendar-note .icon { width: 22px; height: 22px; color: var(--cyan); }
.booking-summary { position: sticky; top: 92px; padding: 25px; border-radius: 22px; }
.booking-summary__head > p { margin-top: 9px; color: var(--muted); font-size: .88rem; }
.slot-list { margin-top: 19px; }
.slot-button { width: 100%; min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 11px 13px; border: 1px solid var(--line); border-radius: 14px; color: var(--white); background: rgba(255,255,255,.025); text-align: left; cursor: pointer; }
.slot-button + .slot-button { margin-top: 8px; }
.slot-button > span { display: grid; gap: 4px; }
.slot-button small { color: var(--muted); }
.slot-button em { color: var(--cyan-soft); font-size: .66rem; font-style: normal; }
.slot-button.is-active { border-color: var(--cyan); background: rgba(81,228,233,.09); }
.slot-button:disabled { cursor: not-allowed; opacity: .52; }
.booking-form { display: grid; gap: 16px; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); }
.booking-login { display: grid; gap: 13px; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); }
.booking-login > div { padding: 17px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.02); }
.booking-login > div .icon { width: 24px; height: 24px; color: var(--cyan); }
.booking-login h3 { margin-top: 12px; }
.booking-login p { margin-top: 8px; color: var(--muted); font-size: .84rem; line-height: 1.55; }
.booking-register { justify-content: center; font-size: .8rem; }
.booking-explain { padding-top: 75px; }
.legend { width: 8px; height: 8px; display: inline-block; border-radius: 50%; }
.legend--available { background: #42dfa6; }
.legend--pending { background: var(--gold); }
.legend--booked { background: #6a8392; }
.legend--closed { background: #304857; }

/* Contact and article pages */
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.contact-info h2 { margin-top: 16px; font-size: clamp(2.4rem,4.7vw,4.8rem); line-height: .98; letter-spacing: -.055em; }
.contact-info > p { margin: 20px 0 28px; color: var(--muted); line-height: 1.8; }
.contact-cards { display: grid; gap: 10px; margin-bottom: 26px; }
.contact-cards > * { display: flex; align-items: center; gap: 14px; padding: 15px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.025); }
.contact-cards .icon { width: 22px; height: 22px; color: var(--cyan); }
.contact-cards span { display: grid; gap: 3px; }
.contact-cards small { color: var(--muted); font-size: .67rem; text-transform: uppercase; letter-spacing: .09em; }
.contact-form-card { padding: 31px; border: 1px solid var(--line); border-radius: 26px; background: rgba(7,31,47,.74); box-shadow: var(--shadow); }
.contact-form-card h2 { margin: 10px 0 24px; font-size: 2.1rem; }
.contact-form-card form { display: grid; gap: 18px; }
.article-hero { padding: 170px 0 80px; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 80% 15%, rgba(81,228,233,.1), transparent 28rem), linear-gradient(180deg,#082438,#03111c); }
.article-hero h1 { max-width: 930px; margin-top: 16px; font-size: clamp(3rem,6vw,6.2rem); line-height: .95; letter-spacing: -.065em; }
.article-hero p { max-width: 720px; margin-top: 20px; color: var(--muted); font-size: 1.08rem; line-height: 1.75; }
.article-layout { display: grid; grid-template-columns: 230px minmax(0,780px); gap: 70px; justify-content: center; padding-top: 80px; padding-bottom: 110px; }
.article-toc { position: sticky; top: 110px; align-self: start; display: grid; gap: 7px; padding: 20px; border: 1px solid var(--line); border-radius: 17px; background: rgba(7,31,47,.62); }
.article-toc strong { margin-bottom: 7px; color: var(--cyan); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.article-toc a { padding: 7px 0; color: var(--muted); font-size: .84rem; }
.article-toc a:hover { color: var(--white); }
.article-content { min-width: 0; }
.article-content figure { overflow: hidden; margin-bottom: 52px; border-radius: 24px; }
.article-content figure img { width: 100%; max-height: 500px; object-fit: cover; }
.article-content section { scroll-margin-top: 120px; }
.article-content section + section { margin-top: 55px; padding-top: 45px; border-top: 1px solid var(--line); }
.article-content h2 { font-size: clamp(2rem,3.8vw,3.2rem); line-height: 1.05; letter-spacing: -.045em; }
.article-content p, .article-content li { margin-top: 18px; color: #b8cbd6; font-size: 1.02rem; line-height: 1.85; }
.article-content ul { margin: 13px 0 0 22px; }
.article-content .button { margin-top: 25px; }
.legal-page { padding: 160px 0 110px; }
.legal-page__inner { max-width: 830px; }
.legal-page .legal-updated { margin-top: 17px; color: var(--muted); }
.legal-page section { margin-top: 45px; padding-top: 34px; border-top: 1px solid var(--line); }
.legal-page h2 { font-size: 1.65rem; }
.legal-page section p { margin-top: 15px; color: #b8cbd6; line-height: 1.85; }
.legal-contact { margin-top: 50px; padding: 20px; border: 1px solid var(--line); border-radius: 16px; }
.legal-contact a { color: var(--cyan); }
.error-page { min-height: 80vh; display: grid; align-items: center; padding: 150px 0 100px; text-align: center; }
.error-page .container { max-width: 760px; }
.error-code { display: block; color: rgba(81,228,233,.15); font-size: clamp(7rem,22vw,15rem); font-weight: 950; line-height: .7; letter-spacing: -.08em; }
.error-page h1 { margin-top: 18px; font-size: clamp(2.5rem,5vw,5rem); line-height: .98; letter-spacing: -.055em; }
.error-page p { margin-top: 18px; color: var(--muted); line-height: 1.7; }
.error-page > .container > div { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.error-page small { display: block; margin-top: 22px; color: #6f8998; }

/* Authentication and account */
.auth-page { min-height: 100vh; display: grid; grid-template-columns: minmax(380px,.9fr) minmax(520px,1.1fr); padding: 0; }
.auth-visual { position: relative; min-height: 100vh; overflow: hidden; }
.auth-visual > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.auth-visual__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2,15,24,.3), rgba(2,15,24,.85)), linear-gradient(90deg, transparent, #03111c 100%); }
.auth-visual > .brand { position: absolute; z-index: 2; top: 30px; left: 34px; }
.auth-visual > div:last-child { position: absolute; z-index: 2; right: 45px; bottom: 55px; left: 45px; max-width: 580px; }
.auth-visual h1 { margin-top: 15px; font-size: clamp(2.7rem,5vw,5.2rem); line-height: .95; letter-spacing: -.06em; }
.auth-visual p { max-width: 580px; margin-top: 18px; color: #c1d3dd; line-height: 1.7; }
.auth-panel { display: grid; place-items: center; padding: 80px 40px; background: radial-gradient(circle at 80% 10%, rgba(81,228,233,.08), transparent 23rem), var(--navy-950); }
.auth-card { width: min(100%, 520px); padding: 35px; border: 1px solid var(--line); border-radius: 26px; background: rgba(8,34,51,.74); box-shadow: var(--shadow); }
.auth-card--wide { width: min(100%, 670px); }
.auth-card > h1, .auth-card > h2 { margin-top: 12px; font-size: clamp(2.1rem,4vw,3.4rem); line-height: 1; letter-spacing: -.05em; }
.auth-card > p { margin: 13px 0 24px; color: var(--muted); line-height: 1.65; }
.auth-card form { display: grid; gap: 16px; }
.auth-row { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.auth-row > a { color: var(--cyan-soft); font-size: .78rem; }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 22px 0; color: #66808f; font-size: .7rem; }
.auth-divider::before, .auth-divider::after { height: 1px; flex: 1; content: ''; background: var(--line); }
.auth-switch { margin: 0 !important; text-align: center; font-size: .84rem; }
.auth-switch a { color: var(--cyan); font-weight: 800; }
.auth-back { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; color: var(--muted); font-size: .78rem; }
.auth-page--simple { grid-template-columns: 1fr; padding: 90px 20px; }
.auth-page--simple .auth-panel { min-height: calc(100vh - 180px); padding: 0; }
.brand--center { justify-content: center; margin-bottom: 26px; }
.account-hero { padding: 155px 0 65px; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 80% 15%, rgba(81,228,233,.1), transparent 28rem), linear-gradient(180deg,#082438,#03111c); }
.account-hero--compact { padding-bottom: 45px; }
.account-hero__inner { display: flex; align-items: end; justify-content: space-between; gap: 35px; }
.account-hero h1 { margin-top: 12px; font-size: clamp(2.7rem,5vw,5rem); line-height: .96; letter-spacing: -.06em; }
.account-hero p { max-width: 650px; margin-top: 15px; color: var(--muted); }
.account-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.account-section { padding-top: 65px; }
.account-summary { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; margin-bottom: 20px; }
.account-summary > div { display: flex; align-items: center; gap: 15px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: rgba(8,34,51,.65); }
.account-summary > div > span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px; color: var(--cyan); background: rgba(81,228,233,.08); }
.account-summary strong { font-size: 1.8rem; }
.account-summary small { color: var(--muted); }
.account-panel { padding: 27px; border: 1px solid var(--line); border-radius: 24px; background: rgba(8,34,51,.67); }
.account-panel__head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.account-panel__head h2 { margin-top: 7px; font-size: 2rem; }
.booking-list { display: grid; gap: 11px; }
.booking-list-item { display: grid; grid-template-columns: 75px minmax(0,1fr) auto; gap: 18px; align-items: start; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.02); }
.booking-list-item__date { min-height: 80px; display: grid; place-items: center; align-content: center; border: 1px solid var(--line); border-radius: 14px; background: rgba(81,228,233,.05); }
.booking-list-item__date strong { font-size: 1.7rem; }
.booking-list-item__date span, .booking-list-item__date small { color: var(--muted); font-size: .65rem; text-transform: uppercase; }
.booking-list-item__main > div:first-child { display: flex; align-items: center; gap: 10px; }
.booking-list-item__main > div:first-child > small { color: var(--muted); }
.booking-list-item__main h3 { margin-top: 12px; }
.booking-list-item__main > p { display: flex; align-items: center; gap: 7px; margin-top: 7px; color: var(--muted); font-size: .82rem; }
.booking-note { margin-top: 13px; padding: 12px; border-radius: 12px; background: rgba(255,255,255,.03); }
.booking-note strong { color: var(--cyan-soft); font-size: .7rem; text-transform: uppercase; }
.booking-note p { margin-top: 4px; color: var(--muted); font-size: .82rem; line-height: 1.55; }
.booking-list-item__actions { display: grid; gap: 8px; }
.account-settings-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.account-settings-grid .account-panel form { display: grid; gap: 17px; }
.status { display: inline-flex; align-items: center; justify-content: center; min-height: 27px; padding: 0 9px; border-radius: 999px; font-size: .64rem; font-weight: 850; white-space: nowrap; }
.status--pending { color: #ffefbc; background: rgba(246,200,95,.12); }
.status--approved { color: #cbffea; background: rgba(60,221,160,.12); }
.status--declined, .status--cancelled { color: #ffd7df; background: rgba(255,80,112,.1); }
.status--completed, .status--expired { color: #d9e7ee; background: rgba(255,255,255,.08); }
.empty-state { display: grid; place-items: center; min-height: 260px; padding: 35px; color: var(--muted); text-align: center; }
.empty-state .icon { width: 42px; height: 42px; color: var(--cyan); }
.empty-state h3 { margin-top: 14px; color: var(--white); }
.empty-state p { margin-top: 8px; }
.empty-state .button { margin-top: 18px; }
.empty-state--compact { min-height: 130px; }

/* Cookie */
.cookie-banner { position: fixed; z-index: 2500; top: 92px; left: 22px; width: min(calc(100% - 44px), 420px); padding: 16px; border: 1px solid var(--line-strong); border-radius: 18px; background: rgba(6,29,44,.96); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.cookie-banner[hidden] { display: none; }
.cookie-banner p { color: #c4d6df; font-size: .8rem; line-height: 1.6; }
.cookie-banner > div { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 13px; }
body.menu-open .cookie-banner { opacity: 0; pointer-events: none; }

/* Footer additions */
.footer-brand p { max-width: 320px; margin-top: 17px; color: var(--muted); line-height: 1.65; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { color: var(--cyan-soft); font-size: .8rem; }
.site-footer__grid > div > h2 { margin-bottom: 17px; color: var(--white); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.site-footer ul { display: grid; gap: 10px; list-style: none; }
.site-footer li, .site-footer li a, .site-footer li span { color: var(--muted); font-size: .82rem; line-height: 1.45; }
.site-footer li a:hover { color: var(--white); }

/* Setup/minimal */
.minimal-page { min-height: 100vh; }
.minimal-shell { min-height: 100vh; }
.setup-page { min-height: 100vh; display: grid; grid-template-columns: minmax(340px,.65fr) minmax(620px,1.35fr); }
.setup-visual { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; justify-content: space-between; padding: 34px; overflow: hidden; background: linear-gradient(180deg, rgba(2,20,32,.25), rgba(2,16,26,.96)), url('/images/deepblue-bodrum-tekne-koyda.webp') center/cover; }
.setup-visual::after { position: absolute; inset: 0; content: ''; background-image: linear-gradient(rgba(81,228,233,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(81,228,233,.08) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(black,transparent 70%); pointer-events: none; }
.setup-visual > * { position: relative; z-index: 1; }
.setup-visual__copy h1 { margin-top: 16px; font-size: clamp(2.6rem,4.8vw,5rem); line-height: .95; letter-spacing: -.06em; }
.setup-visual__copy p { margin-top: 18px; color: #c0d3dd; line-height: 1.7; }
.setup-checks { display: grid; grid-template-columns: repeat(2,1fr); gap: 9px; }
.setup-checks span { display: flex; align-items: center; gap: 8px; padding: 10px; border: 1px solid rgba(255,255,255,.14); border-radius: 12px; background: rgba(3,17,28,.52); font-size: .75rem; }
.setup-checks .icon { color: var(--cyan); }
.setup-form-wrap { padding: 55px clamp(28px,5vw,78px) 90px; }
.setup-form-head { max-width: 780px; margin-bottom: 32px; }
.setup-form-head > span { color: var(--cyan); font-size: .65rem; font-weight: 900; letter-spacing: .17em; }
.setup-form-head h2 { margin-top: 9px; font-size: 2.7rem; }
.setup-form-head p { margin-top: 9px; color: var(--muted); }
.setup-form { display: grid; gap: 20px; }
.setup-form fieldset { padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: rgba(8,34,51,.65); }
.setup-form legend { padding: 0 11px; color: var(--white); font-size: 1rem; font-weight: 850; }
.setup-form legend span { margin-right: 8px; color: var(--cyan); font-size: .7rem; }
.setup-form legend em { color: var(--muted); font-size: .7rem; font-style: normal; font-weight: 600; }
.setup-form fieldset > .form-grid { margin-top: 10px; }
.fieldset-note { margin: 3px 0 17px; color: var(--muted); font-size: .8rem; }
.setup-submit { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 21px 0; }
.setup-submit p { color: var(--muted); font-size: .8rem; }
.setup-submit code, .settings-note code { color: var(--cyan-soft); }
.maintenance-card { min-height: 100vh; display: grid; place-items: center; align-content: center; gap: 16px; max-width: 680px; margin: auto; padding: 40px 25px; text-align: center; }
.maintenance-card h1 { font-size: clamp(2.5rem,6vw,5rem); line-height: .98; letter-spacing: -.055em; }
.maintenance-card p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.maintenance-card small { color: #6f8998; }

/* Admin */
.admin-body { background: #02101a; }
.admin-shell { min-height: 100vh; display: grid; grid-template-columns: 270px minmax(0,1fr); }
.admin-sidebar { position: sticky; z-index: 1200; top: 0; height: 100vh; display: flex; flex-direction: column; padding: 22px 17px; border-right: 1px solid var(--line); background: linear-gradient(180deg,#08283c,#041724); }
.admin-sidebar__brand { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 0 8px 18px; border-bottom: 1px solid var(--line); }
.admin-sidebar__brand > button { display: none; width: 38px; height: 38px; place-items: center; border: 0; border-radius: 50%; color: white; background: rgba(255,255,255,.05); }
.admin-nav { display: grid; gap: 5px; margin-top: 18px; }
.admin-nav a { min-height: 46px; display: flex; align-items: center; gap: 11px; padding: 0 13px; border-radius: 12px; color: #a8becb; font-size: .82rem; font-weight: 750; }
.admin-nav a:hover, .admin-nav a.is-active { color: var(--white); background: rgba(81,228,233,.08); }
.admin-nav a.is-active .icon { color: var(--cyan); }
.admin-sidebar__footer { display: grid; gap: 5px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.admin-release-badge { min-height: 30px; display: flex; align-items: center; gap: 8px; padding: 0 12px; border-radius: 10px; color: rgba(177,194,207,.78); background: rgba(111,231,236,.06); border: 1px solid rgba(111,231,236,.1); font-size: .68rem; font-weight: 800; letter-spacing: .02em; }
.admin-release-badge .icon { width: 14px; height: 14px; color: var(--aqua); }
.admin-sidebar__footer a, .admin-sidebar__footer button { width: 100%; min-height: 43px; display: flex; align-items: center; gap: 10px; padding: 0 12px; border: 0; border-radius: 11px; color: var(--muted); background: transparent; font-size: .8rem; cursor: pointer; }
.admin-sidebar__footer a:hover, .admin-sidebar__footer button:hover { color: white; background: rgba(255,255,255,.04); }
.admin-main { min-width: 0; padding: 35px clamp(22px,3vw,46px) 80px; }
.admin-topbar { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 28px; }
.admin-topbar h1 { margin-top: 8px; font-size: clamp(2.3rem,4vw,4rem); line-height: .98; letter-spacing: -.055em; }
.admin-topbar p { margin-top: 9px; color: var(--muted); }
.admin-topbar__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 9px; }
.admin-menu-toggle { position: fixed; z-index: 1300; top: 14px; left: 14px; width: 46px; height: 46px; display: none; place-items: center; border: 1px solid var(--line-strong); border-radius: 14px; color: white; background: rgba(4,28,43,.92); box-shadow: 0 16px 40px rgba(0,0,0,.3); }
.admin-sidebar-backdrop { display: none; }
.admin-stat-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; margin-bottom: 18px; }
.admin-stat-grid article { min-height: 140px; display: grid; grid-template-columns: 50px 1fr auto; gap: 13px; align-items: center; padding: 19px; border: 1px solid var(--line); border-radius: 19px; background: rgba(8,34,51,.66); }
.admin-stat-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; color: var(--cyan); background: rgba(81,228,233,.08); }
.admin-stat-grid strong { display: block; font-size: 2rem; }
.admin-stat-grid small { color: var(--muted); }
.admin-stat-grid article > a { color: var(--cyan-soft); font-size: .72rem; font-weight: 800; }
.admin-grid { display: grid; gap: 18px; }
.admin-grid--2 { grid-template-columns: repeat(2,minmax(0,1fr)); }
.admin-grid--booking { grid-template-columns: minmax(0,1fr) 330px; align-items: start; }
.admin-grid--calendar { grid-template-columns: minmax(0,1fr) 330px; align-items: start; }
.admin-card { padding: 24px; border: 1px solid var(--line); border-radius: 21px; background: rgba(7,30,45,.72); }
.admin-card + .admin-card, .admin-stack, .admin-quick { margin-top: 18px; }
.admin-card__head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.admin-card__head h2 { margin-top: 7px; font-size: 1.55rem; }
.admin-list { display: grid; }
.admin-list > a { min-height: 66px; display: grid; grid-template-columns: auto minmax(0,1fr) auto; gap: 13px; align-items: center; border-bottom: 1px solid var(--line); }
.admin-list > a:last-child { border-bottom: 0; }
.admin-list__date { width: 48px; height: 48px; display: grid; place-items: center; align-content: center; border-radius: 13px; background: rgba(81,228,233,.07); }
.admin-list__date strong { font-size: 1.15rem; }
.admin-list__date small, .admin-list a > span:nth-child(2) small { color: var(--muted); font-size: .67rem; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #718794; }
.status-dot--pending { background: var(--gold); box-shadow: 0 0 0 5px rgba(246,200,95,.08); }
.status-dot--approved { background: #45dfa7; }
.status-dot--declined, .status-dot--cancelled { background: #ff6680; }
.status-dot--expired { background: #7f95a1; }
.admin-quick__grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 10px; }
.admin-quick__grid a { min-height: 170px; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.02); }
.admin-quick__grid a > .icon { width: 28px; height: 28px; color: var(--cyan); }
.admin-quick__grid strong { display: block; margin-top: 28px; }
.admin-quick__grid small { display: block; margin-top: 8px; color: var(--muted); line-height: 1.5; }
.admin-filter { display: grid; grid-template-columns: 160px 150px 150px minmax(190px,1fr) auto auto; gap: 10px; align-items: end; }
.admin-table-card { padding: 0; overflow: hidden; }
.admin-table-wrap { width: 100%; overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 950px; }
.admin-table th { padding: 14px 16px; color: #8299a7; background: rgba(255,255,255,.025); font-size: .65rem; letter-spacing: .1em; text-align: left; text-transform: uppercase; }
.admin-table td { padding: 15px 16px; border-top: 1px solid var(--line); vertical-align: middle; }
.admin-table td strong { display: block; font-size: .84rem; }
.admin-table td small { display: block; margin-top: 4px; color: var(--muted); font-size: .68rem; }
.admin-table-actions { display: flex; align-items: center; justify-content: flex-end; gap: 7px; white-space: nowrap; }
.admin-table-actions form { display: inline-flex; margin: 0; }
.source-badge { display: inline-flex; min-height: 25px; align-items: center; padding: 0 8px; border: 1px solid var(--line); border-radius: 999px; color: #bdd0da; background: rgba(255,255,255,.03); font-size: .62rem; text-transform: uppercase; }
.icon-button { width: 37px; height: 37px; display: inline-grid; place-items: center; border: 1px solid var(--line); border-radius: 11px; color: var(--cyan-soft); background: rgba(255,255,255,.02); cursor: pointer; }
.icon-button--danger { color: #ff9aad; border-color: rgba(255,104,132,.25); }
.admin-form-card form, .admin-inline-form { display: grid; gap: 25px; }
.admin-form-section + .admin-form-section { padding-top: 25px; border-top: 1px solid var(--line); }
.admin-form-section h2 { margin-bottom: 18px; font-size: 1.3rem; }
.admin-form-submit { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding-top: 22px; border-top: 1px solid var(--line); }
.admin-form-submit p { color: var(--muted); font-size: .82rem; }
.booking-detail-status { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.booking-detail-status small { color: var(--muted); }
.booking-detail-date { display: flex; align-items: center; gap: 18px; margin: 25px 0; padding: 19px; border: 1px solid var(--line); border-radius: 17px; background: rgba(81,228,233,.04); }
.booking-detail-date > span { width: 80px; display: grid; place-items: center; padding-right: 18px; border-right: 1px solid var(--line); }
.booking-detail-date > span strong { font-size: 2.2rem; }
.booking-detail-date > span small { color: var(--muted); text-align: center; }
.booking-detail-date h2 { font-size: 1.5rem; }
.booking-detail-date p { margin-top: 5px; color: var(--muted); }
.detail-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.detail-list > div { padding: 14px; border: 1px solid var(--line); border-radius: 13px; }
.detail-list dt { color: var(--muted); font-size: .68rem; text-transform: uppercase; }
.detail-list dd { margin-top: 5px; font-weight: 750; }
.detail-notes { margin-top: 22px; }
.detail-notes h3 { margin-top: 16px; color: var(--cyan-soft); font-size: .72rem; text-transform: uppercase; letter-spacing: .09em; }
.detail-notes p { margin-top: 7px; color: var(--muted); line-height: 1.65; overflow-wrap: anywhere; white-space: pre-wrap; }
.booking-customer { position: sticky; top: 25px; }
.booking-customer h2 { margin: 12px 0 20px; font-size: 1.65rem; }
.booking-customer a { display: flex; align-items: center; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--line); color: #c7dbe5; font-size: .82rem; overflow-wrap: anywhere; }
.booking-customer a .icon { color: var(--cyan); }
.admin-action-card, .booking-detail-main, .booking-customer { min-width: 0; }
.admin-action-card { display: grid; grid-template-columns: .65fr 1.35fr; gap: 35px; align-items: start; }
.admin-action-card h2 { margin-top: 8px; }
.admin-action-card > div > p { margin-top: 10px; max-width: 100%; color: var(--muted); line-height: 1.65; overflow-wrap: anywhere; }
.admin-action-card form { display: grid; gap: 14px; }
.admin-action-buttons { display: flex; flex-wrap: wrap; gap: 9px; }
.admin-action-card--danger { border-color: rgba(255,104,132,.2); }
.admin-calendar-card { min-width: 0; }
.admin-calendar-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 8px; }
.admin-calendar-day { padding: 12px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.02); }
.admin-calendar-day > header { display: flex; align-items: start; justify-content: space-between; gap: 10px; }
.admin-calendar-day > header span { display: grid; }
.admin-calendar-day > header strong { font-size: 1.5rem; }
.admin-calendar-day > header small { color: var(--muted); font-size: .65rem; }
.admin-calendar-day > header em { color: var(--muted); font-size: .58rem; font-style: normal; }
.admin-calendar-day > div { display: grid; gap: 5px; margin-top: 13px; }
.admin-calendar-slot { display: grid; gap: 2px; padding: 7px; border-left: 2px solid #4c6878; border-radius: 6px; background: rgba(255,255,255,.025); }
.admin-calendar-slot b { font-size: .67rem; }
.admin-calendar-slot small { color: var(--muted); font-size: .58rem; }
.admin-calendar-slot--available { border-left-color: #41dfa5; }
.admin-calendar-slot--pending { border-left-color: var(--gold); }
.admin-calendar-slot--booked { border-left-color: #6a8392; }
.admin-calendar-slot--closed { opacity: .52; }
.calendar-control { position: sticky; top: 25px; }
.calendar-control h2 { margin-top: 8px; }
.calendar-control > p { margin: 10px 0 20px; color: var(--muted); line-height: 1.6; }
.calendar-control > form { display: grid; gap: 14px; }
.calendar-blocks { margin-top: 25px; padding-top: 20px; border-top: 1px solid var(--line); }
.calendar-blocks h3 { margin-bottom: 11px; }
.calendar-blocks > p { color: var(--muted); }
.calendar-blocks > div { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.calendar-blocks > div span { display: grid; gap: 3px; }
.calendar-blocks > div small { color: var(--muted); font-size: .68rem; }
.admin-stack { display: grid; gap: 12px; }
.admin-edit-card { margin-top: 0 !important; }
.admin-edit-card__head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.admin-edit-card__head > div { display: flex; align-items: center; gap: 12px; }
.admin-edit-card__head h2 small { color: var(--muted); font-size: .72rem; font-weight: 600; }
.toggle { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.toggle input { position: absolute; opacity: 0; }
.toggle > span { position: relative; width: 42px; height: 24px; border-radius: 999px; background: #304958; }
.toggle > span::after { position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; content: ''; border-radius: 50%; background: white; transition: transform .2s ease; }
.toggle input:checked + span { background: #34cda1; }
.toggle input:checked + span::after { transform: translateX(18px); }
.toggle em { color: var(--muted); font-size: .7rem; font-style: normal; }
.settings-layout { display: grid; grid-template-columns: 190px minmax(0,1fr); gap: 18px; align-items: start; }
.settings-nav { position: sticky; top: 25px; display: grid; padding: 12px; border: 1px solid var(--line); border-radius: 17px; background: rgba(7,30,45,.72); }
.settings-nav a { padding: 10px 11px; border-radius: 9px; color: var(--muted); font-size: .78rem; }
.settings-nav a:hover { color: white; background: rgba(81,228,233,.06); }
.settings-content { min-width: 0; display: grid; gap: 14px; }
.settings-section { scroll-margin-top: 25px; margin-top: 0 !important; }
.settings-note { display: flex; gap: 12px; margin-top: 18px; padding: 13px; border: 1px solid var(--line); border-radius: 13px; color: var(--muted); background: rgba(255,255,255,.02); font-size: .78rem; line-height: 1.55; }
.settings-note .icon { width: 22px; height: 22px; color: var(--cyan); }
.settings-save { position: sticky; z-index: 20; bottom: 15px; display: flex; justify-content: flex-end; padding: 13px; border: 1px solid var(--line-strong); border-radius: 17px; background: rgba(3,19,30,.9); backdrop-filter: blur(16px); box-shadow: 0 20px 50px rgba(0,0,0,.25); }
.smtp-test-card { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.smtp-test-card h2 { margin-top: 7px; }
.smtp-test-card form { display: grid; grid-template-columns: minmax(240px,1fr) auto; gap: 10px; align-items: end; }
.message-card--new { border-color: rgba(246,200,95,.32); }
.message-card__head { display: flex; justify-content: space-between; gap: 20px; }
.message-card__head h2 { margin-top: 10px; }
.message-card__head p { margin-top: 7px; color: var(--muted); font-size: .8rem; }
.message-card__head a { color: var(--cyan-soft); }
.message-card__head > small { color: var(--muted); white-space: nowrap; }
.message-card__body { margin-top: 20px; padding: 17px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.02); }
.message-card__body p { color: #c1d3dd; line-height: 1.7; white-space: pre-wrap; }
.message-card__actions { display: flex; align-items: end; justify-content: space-between; gap: 15px; margin-top: 15px; }
.message-card__actions form { display: flex; gap: 8px; }
.message-card__actions select { min-height: 42px; }

/* Responsive protection: nav changes before overlap can occur */
@media (max-width: 1180px) {
  .desktop-nav { gap: 14px; }
  .desktop-nav a { font-size: .74rem; }
  .header-account span { display: none; }
  .header-account { width: 42px; justify-content: center; padding: 0; }
  .header-logout__button span { display: none; }
  .header-logout__button { width: 42px; justify-content: center; padding: 0; }
  .admin-stat-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .admin-quick__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .admin-calendar-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
}

@media (max-width: 1060px) {
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .hero__content { grid-template-columns: 1fr; }
  .availability-preview { width: min(100%,680px); }
  .package-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .feature-cards { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .process-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-summary { position: static; }
  .date-grid { grid-template-columns: repeat(6,minmax(110px,1fr)); overflow-x: auto; padding-bottom: 6px; scroll-snap-type: x proximity; }
  .date-card { scroll-snap-align: start; }
  .contact-layout { grid-template-columns: 1fr; }
  .auth-page { grid-template-columns: .8fr 1.2fr; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { position: fixed; left: 0; transform: translateX(-105%); width: 280px; transition: transform .25s ease; box-shadow: 30px 0 70px rgba(0,0,0,.4); }
  .admin-sidebar.is-open { transform: translateX(0); }
  .admin-sidebar__brand > button, .admin-menu-toggle { display: grid; }
  .admin-sidebar-backdrop { position: fixed; z-index: 1100; inset: 0; background: rgba(0,8,14,.68); }
  .admin-sidebar-backdrop.is-open { display: block; }
  .admin-main { padding-top: 82px; }
  .admin-grid--calendar { grid-template-columns: 1fr; }
  .calendar-control { position: static; }
  .admin-filter { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .admin-filter__search { grid-column: span 2; }
  .settings-layout { grid-template-columns: 1fr; }
  .settings-nav { position: static; display: flex; overflow-x: auto; white-space: nowrap; }
}

@media (max-width: 820px) {
  .section { padding: 78px 0; }
  .hero { min-height: 940px; }
  .hero__content { padding-bottom: 65px; }
  .signal-strip__inner { grid-template-columns: repeat(2,1fr); }
  .split-intro, .equipment-section__grid, .boat-story, .boat-specs { grid-template-columns: 1fr; gap: 38px; }
  .equipment-photo { min-height: 530px; }
  .boat-story__visual { order: 2; }
  .boat-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 240px; }
  .boat-gallery__large { grid-column: 1 / 3; grid-row: span 1; }
  .boat-gallery figure:last-child { grid-column: 1 / 3; }
  .gallery-grid { grid-template-columns: repeat(2,minmax(0,1fr)); grid-auto-rows: 250px; }
  .article-layout { grid-template-columns: 1fr; gap: 35px; }
  .article-toc { position: static; display: flex; overflow-x: auto; white-space: nowrap; }
  .auth-page { grid-template-columns: 1fr; }
  .auth-visual { min-height: 480px; }
  .auth-panel { padding: 60px 22px; }
  .account-hero__inner { align-items: start; flex-direction: column; }
  .account-summary, .account-settings-grid { grid-template-columns: 1fr; }
  .booking-list-item { grid-template-columns: 70px 1fr; }
  .booking-list-item__actions { grid-column: 1 / -1; grid-template-columns: repeat(2,minmax(0,1fr)); }
  .admin-topbar { align-items: flex-start; flex-direction: column; }
  .admin-topbar__actions { justify-content: flex-start; }
  .admin-grid--2, .admin-grid--booking { grid-template-columns: 1fr; }
  .booking-customer { position: static; }
  .admin-action-card { grid-template-columns: 1fr; }
  .admin-calendar-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .smtp-test-card { align-items: stretch; flex-direction: column; }
  .setup-page { grid-template-columns: 1fr; }
  .setup-visual { position: relative; height: auto; min-height: 580px; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  body { padding-bottom: 74px; }
  .site-header { padding: 12px 0; }
  .site-header__inner { gap: 10px; }
  .brand__icon { width: 40px; height: 40px; }
  .brand__copy strong { font-size: .9rem; }
  .brand__copy small { font-size: .46rem; letter-spacing: .12em; }
  .language-switch { display: none; }
  .mobile-menu { padding: 88px 14px 30px; }
  .mobile-menu__actions { grid-template-columns: 1fr; }
  .mobile-menu__contact { align-items: flex-start; flex-direction: column; }
  .mobile-booking-bar { position: fixed; z-index: 1800; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); left: 10px; min-height: 56px; display: flex; align-items: center; justify-content: center; gap: 9px; border-radius: 999px; color: #031722; background: linear-gradient(135deg,#72f0ef,#34c6df); box-shadow: 0 18px 46px rgba(18,181,205,.35); font-weight: 900; }
  .hero { min-height: 920px; }
  .hero__media img { object-position: 58% center; }
  .hero__content { padding-top: 130px; }
  .hero__copy h1 { font-size: clamp(3rem,14vw,4.7rem); }
  .hero__actions { display: grid; }
  .hero__actions .button { width: 100%; }
  .hero__trust { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero__trust span:last-child { grid-column: 1 / -1; }
  .availability-preview { border-radius: 20px; }
  .availability-preview__days { grid-template-columns: repeat(3,1fr); gap: 5px; padding: 12px; }
  .availability-day { min-height: 108px; flex-direction: column; align-items: stretch; justify-content: center; border: 1px solid var(--line); border-radius: 12px; }
  .availability-day > span { grid-template-columns: 1fr; place-items: center; }
  .availability-day b { width: 100%; margin-top: 5px; }
  .signal-strip__inner { grid-template-columns: 1fr; }
  .signal-strip__inner > div { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .experience-card { min-height: 430px; }
  .package-grid, .feature-cards, .process-grid { grid-template-columns: 1fr; }
  .package-card { min-height: 320px; }
  .inner-hero { min-height: 640px; }
  .inner-hero__content { padding-top: 145px; padding-bottom: 65px; }
  .inner-hero__content h1 { font-size: clamp(2.7rem,13vw,4.2rem); }
  .inner-hero__overlay { background: linear-gradient(180deg, rgba(2,14,24,.35), rgba(2,14,24,.95) 80%), linear-gradient(0deg,var(--navy-950),transparent 30%); }
  .equipment-photo { min-height: 430px; }
  .boat-gallery { grid-template-columns: 1fr; grid-auto-rows: 250px; }
  .boat-gallery__large, .boat-gallery figure:last-child { grid-column: auto; }
  .boat-specs { padding: 26px; }
  .boat-specs dl > div { align-items: flex-start; flex-direction: column; gap: 4px; }
  .boat-specs dd { text-align: left; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 330px; }
  .gallery-item--wide { grid-column: auto; }
  .booking-hero { padding-top: 135px; }
  .booking-hero h1 { font-size: clamp(2.7rem,13vw,4.3rem); }
  .calendar-panel, .booking-summary { padding: 17px; border-radius: 18px; }
  .calendar-panel__head { align-items: flex-start; flex-direction: column; }
  .calendar-legend { display: grid; grid-template-columns: repeat(2,1fr); width: 100%; }
  .date-grid { grid-template-columns: repeat(30,104px); }
  .date-card { min-height: 108px; }
  .form-grid--2, .form-grid--3 { grid-template-columns: 1fr; }
  .contact-form-card { padding: 22px; }
  .article-hero { padding-top: 140px; }
  .article-hero h1 { font-size: clamp(2.7rem,13vw,4.3rem); }
  .article-layout { padding-top: 50px; padding-bottom: 80px; }
  .auth-visual { min-height: 430px; }
  .auth-visual > .brand { top: 20px; left: 20px; }
  .auth-visual > div:last-child { right: 22px; bottom: 30px; left: 22px; }
  .auth-visual h1 { font-size: 2.7rem; }
  .auth-panel { padding: 35px 14px 80px; }
  .auth-card { padding: 24px; border-radius: 21px; }
  .auth-row { align-items: flex-start; flex-direction: column; }
  .account-hero { padding-top: 130px; }
  .account-summary > div { padding: 17px; }
  .account-panel { padding: 17px; }
  .account-panel__head { align-items: flex-start; flex-direction: column; }
  .booking-list-item { grid-template-columns: 1fr; }
  .booking-list-item__date { width: 100%; min-height: 68px; grid-template-columns: auto auto auto; gap: 8px; }
  .booking-list-item__actions { grid-column: auto; grid-template-columns: 1fr; }
  .cookie-banner { top: calc(var(--header-mobile, 64px) + 10px); right: 10px; bottom: auto; left: 10px; width: auto; padding: 15px; }
  .site-footer { padding-bottom: 90px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .setup-visual { min-height: 540px; padding: 24px; }
  .setup-visual__copy h1 { font-size: 2.9rem; }
  .setup-checks { grid-template-columns: 1fr; }
  .setup-form-wrap { padding: 35px 14px 75px; }
  .setup-form fieldset { padding: 20px 15px; }
  .setup-submit { align-items: stretch; flex-direction: column; }
  .setup-submit .button { width: 100%; }
  .admin-main { padding: 78px 14px 70px; }
  .admin-topbar__actions, .admin-topbar__actions .button { width: 100%; }
  .admin-stat-grid, .admin-quick__grid { grid-template-columns: 1fr; }
  .admin-stat-grid article { min-height: 110px; }
  .admin-card { padding: 17px; border-radius: 17px; }
  .admin-filter { grid-template-columns: 1fr; }
  .admin-filter__search { grid-column: auto; }
  .admin-filter .button { width: 100%; }
  .admin-form-submit, .booking-detail-status, .booking-detail-date, .admin-edit-card__head, .message-card__head, .message-card__actions { align-items: flex-start; flex-direction: column; }
  .detail-list { grid-template-columns: 1fr; }
  .admin-calendar-grid { grid-template-columns: 1fr; }
  .admin-action-buttons { display: grid; }
  .admin-action-buttons .button { width: 100%; }
  .settings-save .button { width: 100%; }
  .smtp-test-card form { grid-template-columns: 1fr; }
  .message-card__actions form { width: 100%; display: grid; grid-template-columns: 1fr auto; }
}

@media (max-width: 390px) {
  .brand__copy small { display: none; }
  .brand__copy strong { font-size: .82rem; }
  .header-account,
  .header-logout { display: none; }
  .hero__copy h1 { font-size: 2.85rem; }
  .hero__trust { grid-template-columns: 1fr; }
  .hero__trust span:last-child { grid-column: auto; }
  .availability-preview__days { grid-template-columns: repeat(2,1fr); }
  .site-footer__grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

/* Final overflow guard: keep the horizontally scrollable booking dates inside the viewport. */
.booking-layout,
.booking-layout > *,
.calendar-panel,
.booking-summary,
.calendar-panel__head,
.booking-summary__head,
.slot-list,
.booking-login {
  min-width: 0;
  max-width: 100%;
}
.date-grid {
  width: 100%;
  max-width: 100%;
}

/* Final layout hardening: admin list text and narrow booking containers */
.admin-list > a { min-width: 0; }
.admin-list__content { min-width: 0; display: grid; gap: 4px; }
.admin-list__content strong,
.admin-list__content small { display: block; min-width: 0; }
.admin-list__content small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.admin-list > a > .status { flex-shrink: 0; }

/* Auth pages use a two-column grid; older centering rules must not shrink columns. */
.auth-page:not(.auth-page--simple) {
  align-items: stretch;
  justify-items: stretch;
  place-items: stretch;
}
.auth-page:not(.auth-page--simple) > .auth-visual,
.auth-page:not(.auth-page--simple) > .auth-panel {
  width: 100%;
}

/* Avoid stacked mobile overlays before cookie preference is selected. */
@media (max-width: 760px) {
  body.cookie-pending .mobile-booking-bar { opacity: 0; pointer-events: none; transform: translateY(120%); }
}

/* Home image-quality pass: keep the photo bright, then reveal availability on request. */
.page--home .hero {
  min-height: 820px;
  min-height: min(860px, 100svh);
}
.page--home .hero__media img {
  filter: saturate(1.05) contrast(1.01) brightness(1.05);
  object-position: center 52%;
}
.page--home .hero__overlay {
  background:
    linear-gradient(90deg, rgba(3, 15, 25, .58) 0%, rgba(3, 15, 25, .38) 42%, rgba(3, 15, 25, .12) 72%, rgba(3, 15, 25, .22) 100%),
    linear-gradient(0deg, rgba(3, 15, 25, .58) 0%, transparent 28%),
    linear-gradient(180deg, rgba(3, 15, 25, .18), transparent 24%);
}
.page--home .hero__grid {
  opacity: .08;
}
.page--home .hero__content {
  grid-template-columns: minmax(0, .9fr) minmax(270px, .34fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding-top: 126px;
  padding-bottom: 84px;
}
.page--home .hero__copy {
  max-width: 690px;
  text-shadow: 0 3px 24px rgba(0, 7, 13, .36);
}
.page--home .hero h1 {
  max-width: 680px;
  font-size: clamp(2.8rem, 5.25vw, 5.35rem);
  line-height: .96;
  letter-spacing: -.045em;
}
.page--home .hero__copy > p {
  max-width: 560px;
  margin-top: 20px;
  color: rgba(241, 248, 252, .86);
  font-size: clamp(.96rem, 1.3vw, 1.06rem);
  line-height: 1.66;
}
.page--home .hero__actions {
  margin-top: 26px;
}
.page--home .hero__trust {
  margin-top: 24px;
  gap: 9px;
}
.page--home .hero__trust span {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  background: rgba(2, 17, 28, .24);
  backdrop-filter: blur(8px);
}
.availability-dock {
  position: relative;
  z-index: 5;
  width: min(100%, 335px);
  justify-self: end;
  align-self: center;
}
.availability-summary {
  width: 100%;
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(157, 229, 240, .34);
  border-radius: 22px;
  color: var(--white);
  background: rgba(5, 28, 43, .68);
  box-shadow: 0 18px 44px rgba(0, 7, 13, .2);
  backdrop-filter: blur(14px);
  cursor: pointer;
  text-align: left;
}
.availability-summary span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .15em;
}
.availability-summary span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #63efbd;
  box-shadow: 0 0 0 5px rgba(99,239,189,.1);
}
.availability-summary strong {
  font-size: 1.12rem;
}
.availability-summary small {
  color: #c2d4dd;
}
.availability-preview {
  position: fixed;
  top: 112px;
  right: max(22px, calc((100vw - var(--container)) / 2));
  width: min(420px, calc(100vw - 32px));
  max-height: min(610px, calc(100svh - 120px));
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(.98);
  transform-origin: top right;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.availability-dock.is-open .availability-preview {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.availability-preview__close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  color: white;
  background: rgba(255,255,255,.05);
  cursor: pointer;
}
.availability-preview__head {
  padding-right: 62px;
}
.experience-card__shade {
  background: linear-gradient(180deg, rgba(2,14,24,.04), rgba(2,14,24,.18) 44%, rgba(2,14,24,.74));
}
.gallery-item > span {
  background: rgba(3,17,28,.5);
}
.gallery-video > div {
  background: linear-gradient(transparent, rgba(2,14,24,.68));
}
.inner-hero__overlay {
  background:
    linear-gradient(90deg, rgba(2,14,24,.68) 0%, rgba(2,14,24,.42) 46%, rgba(2,14,24,.12) 78%),
    linear-gradient(0deg, rgba(2,14,24,.72), transparent 34%);
}

@media (max-width: 1060px) {
  .page--home .hero {
    min-height: 840px;
  }
  .page--home .hero__content {
    grid-template-columns: 1fr;
    align-content: center;
    justify-items: start;
  }
  .availability-dock {
    width: min(100%, 420px);
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .page--home .hero {
    min-height: 760px;
  }
  .page--home .hero__media img {
    object-position: 55% center;
  }
  .page--home .hero__overlay {
    background:
      linear-gradient(180deg, rgba(2,13,22,.18) 0%, rgba(2,13,22,.05) 42%, rgba(2,13,22,.58) 100%),
      linear-gradient(90deg, rgba(2,13,22,.48), rgba(2,13,22,.12) 64%);
  }
  .page--home .hero__content {
    gap: 18px;
    padding-top: 112px;
    padding-bottom: 60px;
  }
  .page--home .hero__kicker {
    margin-bottom: 14px;
    font-size: .62rem;
    letter-spacing: .14em;
  }
  .page--home .hero h1 {
    max-width: 11ch;
    font-size: clamp(2.05rem, 9vw, 3.05rem);
    line-height: 1.03;
    letter-spacing: -.025em;
  }
  .page--home .hero__copy > p {
    margin-top: 12px;
    max-width: 28rem;
    font-size: .88rem;
    line-height: 1.55;
  }
  .page--home .hero__actions {
    gap: 8px;
    margin-top: 16px;
  }
  .page--home .hero__actions .button {
    min-height: 46px;
    padding-inline: 14px;
    font-size: .78rem;
  }
  .page--home .hero__trust {
    margin-top: 14px;
    grid-template-columns: 1fr 1fr;
  }
  .page--home .hero__trust span {
    min-width: 0;
    font-size: .7rem;
  }
  .availability-summary {
    padding: 15px 16px;
    border-radius: 18px;
  }
  .availability-preview {
    position: fixed;
    z-index: 2600;
    top: calc(var(--header-mobile, 64px) + 12px);
    right: auto;
    left: 12px;
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    max-height: calc(100svh - 108px);
    transform-origin: top center;
  }
  .page--home .availability-preview__days {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px 14px;
  }
  .page--home .availability-day {
    min-height: 58px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-width: 0 0 1px;
    border-radius: 0;
  }
  .page--home .availability-day > span {
    grid-template-columns: 38px 34px 38px;
    place-items: initial;
  }
  .page--home .availability-day b {
    width: auto;
    margin-top: 0;
  }
  .page--home .hero__scroll {
    display: none;
  }
  .inner-hero__content h1,
  .booking-hero h1,
  .article-hero h1 {
    font-size: clamp(1.85rem, 8.5vw, 2.7rem);
    line-height: 1.06;
    letter-spacing: -.025em;
  }
  .inner-hero__overlay {
    background: linear-gradient(180deg, rgba(2,14,24,.08), rgba(2,14,24,.18) 45%, rgba(2,14,24,.62));
  }
}

@media (max-width: 390px) {
  .page--home .hero h1 {
    font-size: 2rem;
  }
}
