:root {
  --navy-900: #050d1f;
  --navy-850: #07132a;
  --navy-800: #0b1b37;
  --navy-700: #12284b;
  --gold-500: #c89b4e;
  --gold-400: #ddb871;
  --gold-300: #ecd8ae;
  --text-main: #ffffff;
  --text-dark: #182033;
  --text-soft: rgba(255, 255, 255, 0.88);
  --line-soft: rgba(255, 255, 255, 0.12);
  --panel-dark: rgba(7, 20, 43, 0.88);
  --shadow-main: 0 20px 44px rgba(0, 0, 0, 0.22);
  --shadow-soft: 0 20px 44px rgba(0, 0, 0, 0.12);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f4f6fa;
  color: var(--text-dark);
  font-family: 'Open Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

main,
section {
  position: relative;
}

#escursioni,
#barca,
#storia,
#caratteristiche,
#contatti,
#galleria,
#cale-riserva {
  scroll-margin-top: 120px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.shell,
.wrap {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

/* ===== HEADER / MENU / TELEFONO ===== */

.topbar,
.topbar-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 14px 0 0;
  background: rgba(5, 13, 31, 0.18);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  max-width: 170px;
}

.brand-logo {
  display: block;
  width: 100%;
  max-width: 170px;
  height: auto;
  object-fit: contain;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  margin-left: auto;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-phone:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
}

.header-phone svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-phone span {
  display: inline-block;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0;
  cursor: pointer;
  position: relative;
  flex: 0 0 auto;
  z-index: 520;
}

.menu-toggle span {
  position: absolute;
  left: 13px;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}

.menu-toggle span:nth-child(1) {
  top: 17px;
}

.menu-toggle span:nth-child(2) {
  top: 25px;
}

.menu-toggle span:nth-child(3) {
  top: 33px;
}

.topbar.nav-open .menu-toggle span:nth-child(1),
.topbar-page.nav-open .menu-toggle span:nth-child(1) {
  top: 25px;
  transform: rotate(45deg);
}

.topbar.nav-open .menu-toggle span:nth-child(2),
.topbar-page.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.topbar.nav-open .menu-toggle span:nth-child(3),
.topbar-page.nav-open .menu-toggle span:nth-child(3) {
  top: 25px;
  transform: rotate(-45deg);
}

.topbar-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  flex: 1 1 auto;
}

.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 26px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  position: relative;
  display: inline-block;
  padding: 8px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 1px;
  background: rgba(228, 191, 118, 0.75);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.main-nav .has-submenu > a {
  padding-right: 18px;
}

.main-nav .has-submenu > a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid rgba(221, 184, 113, 0.9);
  border-bottom: 1.5px solid rgba(221, 184, 113, 0.9);
  transform: translateY(-65%) rotate(45deg);
}

.main-nav .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  list-style: none;
  margin: 10px 0 0;
  padding: 14px 18px;
  background: rgba(6, 16, 38, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 40;
}

.main-nav .has-submenu:hover .submenu,
.main-nav .has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav .submenu li {
  width: 100%;
}

.main-nav .submenu a {
  display: block;
  padding: 7px 0;
  font-size: 18px;
  white-space: nowrap;
}

.main-nav .submenu a::after {
  display: none;
}

.topbar-tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.social-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
}

.social-pill {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.social-pill:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
}

.social-pill svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-pill .social-dot {
  fill: currentColor;
  stroke: none;
}

.social-pill[aria-label="Facebook"] svg,
.social-pill[aria-label="TikTok"] svg,
.social-pill[aria-label="YouTube"] svg {
  fill: currentColor;
  stroke: none;
}

.social-pill[aria-label="Tripadvisor"] svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== DESKTOP MEDIO ===== */

@media (max-width: 1400px) {
  .brand {
    max-width: 155px;
  }

  .brand-logo {
    max-width: 155px;
  }

  .main-nav ul {
    gap: 22px;
  }

  .main-nav a {
    font-size: 18px;
  }

  .header-phone {
    font-size: 14px;
    padding: 9px 12px;
  }
}

@media (max-width: 1180px) {
  .brand {
    max-width: 145px;
  }

  .brand-logo {
    max-width: 145px;
  }

  .main-nav ul {
    gap: 16px;
  }

  .main-nav a {
    font-size: 17px;
  }

  .header-phone {
    font-size: 13px;
    padding: 8px 11px;
  }

  .topbar-tools {
    gap: 8px;
  }

  .social-pill {
    width: 38px;
    height: 38px;
  }
}

/* ===== MOBILE / TABLET ===== */

@media (max-width: 860px) {
  .topbar,
  .topbar-page {
    padding-top: 10px;
  }

  .topbar-tools .social-pill-lang,
  .topbar-page .topbar-tools .social-pill-lang {
    display: none;
  }

  .header-lang-mobile {
    display: inline-flex;
    width: 38px;
    min-width: 38px;
    height: 38px;
    flex: 0 0 auto;
    position: relative;
    z-index: 521;
    margin-left: 0;
  }

  .topbar-row {
    min-height: 72px;
    gap: 12px;
  }

  .brand {
    max-width: 110px;
  }

  .brand-logo {
    max-width: 110px;
  }

  .header-phone {
    display: inline-flex;
    margin-left: auto;
    margin-right: 0;
    font-size: 13px;
    padding: 8px 11px;
    max-width: 165px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-phone svg {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .topbar-right {
    display: none;
  }

  .topbar.nav-open .topbar-right,
  .topbar-page.nav-open .topbar-right {
    display: flex;
    position: fixed;
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100vh;
    padding: 88px 20px 28px;
    background: rgba(5, 13, 31, 0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow-y: auto;
    border-radius: 0;
    z-index: 510;
    align-items: flex-start;
  }

  .topbar.nav-open .menu-toggle,
  .topbar-page.nav-open .menu-toggle {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 520;
    margin: 0;
  }

  .topbar.nav-open .brand,
  .topbar-page.nav-open .brand,
  .topbar.nav-open .header-phone,
  .topbar-page.nav-open .header-phone {
    opacity: 0;
    pointer-events: none;
  }

  .main-nav,
  .topbar-tools {
    width: 100%;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
  }

  .main-nav a {
    font-size: 26px;
    padding: 2px 0;
  }

  .main-nav .has-submenu > a::before {
    display: none;
  }

  .main-nav .submenu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    padding: 8px 0 0 18px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .main-nav .submenu a {
    font-size: 18px;
    padding: 4px 0;
  }

  .topbar-tools {
    justify-content: flex-start;
    gap: 10px;
    padding-top: 4px;
    margin-top: 18px;
  }

  .social-title {
    width: 100%;
    font-size: 22px;
    margin-bottom: 2px;
  }
}

@media (max-width: 640px) {
  .brand {
    max-width: 96px;
  }

  .brand-logo {
    max-width: 96px;
  }

  .header-phone {
    font-size: 12px;
    padding: 7px 9px;
    max-width: 140px;
    gap: 6px;
  }

  .header-phone svg {
    width: 13px;
    height: 13px;
    flex: 0 0 13px;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
  }

  .menu-toggle span {
    left: 12px;
    width: 22px;
  }

  .menu-toggle span:nth-child(1) {
    top: 16px;
  }

  .menu-toggle span:nth-child(2) {
    top: 23px;
  }

  .menu-toggle span:nth-child(3) {
    top: 30px;
  }

  .topbar.nav-open .menu-toggle span:nth-child(1),
  .topbar.nav-open .menu-toggle span:nth-child(3),
  .topbar-page.nav-open .menu-toggle span:nth-child(1),
  .topbar-page.nav-open .menu-toggle span:nth-child(3) {
    top: 23px;
  }

  .main-nav a {
    font-size: 22px;
  }

  .social-title {
    font-size: 20px;
  }

  .social-pill {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 420px) {
  .brand {
    max-width: 86px;
  }

  .brand-logo {
    max-width: 86px;
  }

  .header-phone {
    font-size: 11px;
    padding: 6px 8px;
    max-width: 126px;
  }

  .header-phone svg {
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
  }

  .main-nav a {
    font-size: 20px;
  }

  .social-title {
    font-size: 18px;
  }
}

/* ===== HOMEPAGE HERO ===== */

.hero-banner {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  color: var(--text-main);
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(4, 10, 24, 0.86) 0%,
      rgba(4, 10, 24, 0.44) 22%,
      rgba(4, 10, 24, 0.14) 42%,
      rgba(4, 10, 24, 0.42) 72%,
      rgba(4, 10, 24, 0.82) 100%
    ),
    radial-gradient(circle at 18% 28%, rgba(88, 112, 212, 0.18), transparent 38%),
    radial-gradient(circle at 82% 24%, rgba(72, 96, 201, 0.14), transparent 32%),
    url("../images/micus-tramonto.png") center center / cover no-repeat;
  background-attachment: scroll;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 10, 24, 0.22) 0%,
    rgba(4, 10, 24, 0.10) 26%,
    transparent 60%
  );
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: 170px;
  padding-bottom: 28px;
}

.hero-copy {
  max-width: 680px;
  padding-top: 120px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-300);
}

.hero-copy h1 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(62px, 7vw, 92px);
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
  text-wrap: balance;
}

.hero-copy h1 span {
  display: inline-block;
  color: var(--gold-400);
}

.lead {
  max-width: 560px;
  margin: 26px 0 34px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.28;
  font-style: italic;
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-bottom {
  margin-top: auto;
}

/* ===== BUTTONS ===== */

.btn,
.cta-main,
.cta-alt,
.cta-book,
.experience-link-btn,
.program-extra-btn {
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.cta-main:hover,
.cta-alt:hover,
.cta-book:hover,
.experience-link-btn:hover,
.program-extra-btn:hover {
  transform: translateY(-1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}

.btn-gold {
  background: linear-gradient(180deg, #cca452 0%, #a97724 100%);
  color: #fff;
}

.btn-gold:hover {
  opacity: 0.95;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.38);
}

.section-light .btn-outline,
.copy-card .btn-outline,
.cove-links-box .btn-outline,
.spotlight-link-card .btn-outline {
  border-color: rgba(11, 27, 55, 0.18);
  background: rgba(11, 27, 55, 0.02);
  color: #0b1b37;
}

.section-light .btn-outline:hover,
.copy-card .btn-outline:hover,
.cove-links-box .btn-outline:hover,
.spotlight-link-card .btn-outline:hover {
  background: rgba(11, 27, 55, 0.08);
  border-color: rgba(11, 27, 55, 0.28);
}

.cta-main,
.cta-alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
}

.cta-main {
  background: linear-gradient(180deg, #cca452 0%, #a97724 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.cta-alt {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.experience-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: #0b1b37;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.experience-link-btn:hover {
  background: #12284b;
}

.program-extra-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, #cca452 0%, #a97724 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.program-extra-btn:hover {
  opacity: 0.95;
}

/* ===== BOOKING BOX ===== */

.booking-box {
  background: var(--panel-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-main);
  padding: 30px 46px 38px;
}

.booking-head {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 24px;
}

.booking-head h2 {
  margin: 0;
  flex: 0 0 auto;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 4vw, 58px);
  line-height: 1;
  font-weight: 600;
  color: var(--gold-400);
}

.booking-head::after {
  content: "";
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.booking-submit-wrap {
  grid-column: 1 / -1;
}

.field {
  position: relative;
}

.field::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.72);
  border-bottom: 2px solid rgba(255, 255, 255, 0.72);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.field-date::after {
  display: none;
}

.field select,
.field input[type="date"] {
  width: 100%;
  height: 68px;
  padding: 0 54px 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.field input[type="date"] {
  padding-right: 18px;
}

.field select:focus,
.field input[type="date"]:focus {
  border-color: rgba(221, 184, 113, 0.72);
}

.field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.95;
  cursor: pointer;
}

.field option {
  color: #111;
}

.cta-book {
  width: 100%;
  min-width: 0;
  height: 68px;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(180deg, #cda556 0%, #a77525 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

/* ===== SERVICE ICONS ===== */

.service-list {
  width: min(760px, 100%);
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-item {
  position: relative;
  text-align: center;
  padding: 26px 18px 10px;
}

.service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  color: var(--gold-400);
}

.service-item h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 2vw, 38px);
  line-height: 1.15;
  font-weight: 600;
  font-style: italic;
  color: #fff;
}

/* ===== SECTIONS ===== */

.section {
  padding: 92px 0;
}

.section-light {
  background: #f4f6fa;
  color: var(--text-dark);
}

.section-dark {
  background: linear-gradient(180deg, rgba(6, 18, 40, 0.98) 0%, rgba(10, 28, 57, 0.98) 100%);
  color: #fff;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head-left {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.section-mini {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold-500);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.section-head h2 {
  margin: 0 0 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1;
  font-weight: 600;
}

.section-head p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(24, 32, 51, 0.8);
}

.section-head-light p {
  color: rgba(255, 255, 255, 0.82);
}

/* ===== CARDS / LISTS ===== */

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.experience-card,
.spec-card,
.contact-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-main);
}

.experience-card {
  padding: 28px 28px 26px;
  background: #fff;
}

.experience-top {
  margin-bottom: 18px;
}

.experience-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(200, 155, 78, 0.12);
  color: #9d6a16;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience-card h3,
.spec-card h3,
.boat-copy h3,
.contact-card h3,
.copy-card h2,
.mini-card h3,
.crew-card h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.experience-card h3,
.spec-card h3,
.boat-copy h3,
.contact-card h3 {
  font-size: 34px;
  line-height: 1.05;
}

.experience-card p,
.copy-card p,
.mini-card p,
.crew-card p {
  line-height: 1.75;
}

.route-list,
.spec-list,
.feature-points {
  list-style: none;
  margin: 0;
  padding: 0;
}

.route-list li,
.spec-list li,
.feature-points li {
  position: relative;
  padding-left: 18px;
  line-height: 1.65;
}

.route-list li + li,
.spec-list li + li,
.feature-points li + li {
  margin-top: 8px;
}

.route-list li::before,
.spec-list li::before,
.feature-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-500);
}

.highlights-row {
  width: min(760px, 100%);
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.highlight-box {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-main);
  text-align: center;
  font-weight: 700;
}

.program-extra-link {
  margin-top: 26px;
  padding: 28px 24px;
  text-align: center;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.program-extra-link p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #182033;
}

.experience-link-title {
  color: inherit;
  transition: color 0.2s ease;
}

.experience-link-title:hover {
  color: #9d6a16;
}

.experience-actions {
  margin-top: 22px;
}

/* ===== COVE LINKS ===== */

.cove-links-box {
  width: min(980px, 100%);
  margin: 26px auto 0;
  padding: 28px 24px;
  text-align: center;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.cove-links-box h3 {
  margin: 0 0 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1;
  font-weight: 600;
  color: #182033;
}

.cove-links-box p {
  max-width: 760px;
  margin: 0 auto 18px;
  font-size: 16px;
  line-height: 1.75;
  color: #596273;
}

.cove-links-grid,
.pill-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.cove-links-grid a,
.pill-list span,
.pill-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(200, 155, 78, 0.12);
  color: #9d6a16;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.cove-links-grid a:hover,
.pill-list a:hover {
  background: #c89b4e;
  color: #fff;
  transform: translateY(-1px);
}

.cove-links-main {
  margin-top: 18px;
}

.cove-links-main a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: #0b1b37;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.cove-links-main a:hover {
  background: #12284b;
}

/* ===== BOAT / STORY / SPECS ===== */

.boat-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 26px;
  align-items: stretch;
}

.photo-card,
.image-card,
.route-map,
.story-badge,
.crew-card,
.copy-card,
.mini-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.photo-card,
.image-card {
  margin: 0;
  background: rgba(255, 255, 255, 0.08);
}

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

.boat-copy {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-main);
}

.boat-copy p {
  margin: 14px 0 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.84);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 34px;
  align-items: center;
}

.story-copy p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.85;
}

.story-badge {
  padding: 16px;
  background: #fff;
  box-shadow: var(--shadow-main);
}

.story-badge img {
  width: 100%;
  height: auto;
}

.movie-strip-card {
  margin: 28px 0 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.movie-strip-card img {
  display: block;
  width: 100%;
  height: auto;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.spec-card {
  padding: 28px;
  background: #fff;
  color: #182033;
}

.spec-card h3 {
  color: #182033;
}

.spec-card .spec-list li {
  color: #596273;
}

.spec-card h3 {
  margin-bottom: 18px;
}

/* ===== CONTACTS / FOOTER ===== */

.contacts-section {
  padding-bottom: 100px;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.contact-card {
  padding: 30px 28px;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
}

.contact-number {
  margin: 16px 0 22px;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-300);
}

.contact-note {
  margin-top: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  background: #050d1f;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
}

.footer-inner {
  text-align: center;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

.footer-inner strong {
  color: #ddb871;
  font-weight: 700;
}

/* ===== PAGINE INTERNE ===== */

.page-hero {
  position: relative;
  color: #fff;
  padding: 190px 0 86px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 10, 24, 0.82) 0%,
    rgba(4, 10, 24, 0.44) 30%,
    rgba(4, 10, 24, 0.62) 100%
  );
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.page-title {
  margin: 0 0 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(46px, 6vw, 80px);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.page-lead {
  max-width: 760px;
  margin: 0 0 30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.22;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

.page-breadcrumb {
  margin: 0 0 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.86);
}

.page-breadcrumb a:hover {
  color: #ddb871;
}

.page-breadcrumb .current {
  color: #ddb871;
}

.page-grid-two {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.reverse-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.copy-card,
.mini-card {
  background: #fff;
  padding: 30px 30px 28px;
}

.copy-card h2 {
  margin: 0 0 16px;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1;
}

.copy-card p:last-child {
  margin-bottom: 0;
}

.section-tight {
  padding-top: 0;
}

.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.mini-card h3 {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.05;
}

.mini-card-dark {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.mini-card-dark p {
  color: rgba(255, 255, 255, 0.82);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.media-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.route-map {
  margin: 0;
  padding: 10px;
  background: #fff;
}

.route-map img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.cta-band {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: 38px 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-main);
}

.cta-band h2 {
  margin: 0 0 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
  font-weight: 600;
}

.cta-band p {
  max-width: 760px;
  margin: 0 auto 24px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}

/* ===== EQUIPAGGIO ===== */

.crew-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.crew-card {
  background: #fff;
}

.crew-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.crew-card-body {
  padding: 22px 20px 24px;
}

.crew-role {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9d6a16;
}

.crew-card h3 {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1;
}

.crew-license {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(200, 155, 78, 0.10);
  color: #9d6a16;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
}

/* ===== SPOTLIGHT LINK ===== */

.spotlight-link-card {
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  border-radius: 24px;
  background: #0b1325;
  box-shadow: var(--shadow-soft);
}

.spotlight-link-media {
  margin: 0;
  min-height: 100%;
}

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

.spotlight-link-copy {
  padding: 34px 32px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spotlight-link-copy .section-mini {
  color: #ddb871;
}

.spotlight-link-copy h3 {
  margin: 10px 0 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 0.98;
  font-weight: 600;
}

.spotlight-link-copy p {
  margin: 0 0 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.spotlight-link-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== HERO IMMAGINI PAGINE ===== */

.page-hero--riserva {
  background-image: url("../images/ragazze-nuotano-riserva-zingaro.png");
}

.page-hero--sunset {
  background-image: url("../images/sunset-boat.png");
}

.page-hero--private {
  background-image: url("../images/private-relax.png");
  background-position: center 38%;
}

.page-hero--crew {
  background-image: url("../images/team-massimo.png");
  background-position: center 24%;
}

.page-hero--faraglioni {
  background-image: url("../images/scopello-nuotare-faraglioni.png");
}

.page-hero--tonnarella {
  background-image: url("../images/cala-tonnarella-uzzo-zingaro.jpg");
}

.page-hero--cala-uzzo {
  background-image: url("../images/cala-dell-uzzo-zingaro.jpg");
}

.page-hero--marinella {
  background-image: url("../images/cala-marinella.jpg");
}

.page-hero--disa {
  background-image: url("../images/cala-disa-panoramica.jpg");
}

.page-hero--beretta {
  background-image: url("../images/cala-beretta-zingaro.png");
}

.page-hero--varo {
  background-image: url("../images/cala-del-varo-zingaro.png");
}

.page-hero--capreria {
  background-image: url("../images/cala-capreria-zingaro.png");
}

/* ===== FRECCETTA DISATTIVATA ===== */

.back-to-top {
  display: none !important;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1200px) {
  .main-nav ul {
    gap: 20px;
  }

  .main-nav a {
    font-size: 19px;
  }

  .brand {
    max-width: 165px;
  }

  .brand-logo {
    max-width: 165px;
  }

  .header-phone {
    font-size: 14px;
    padding: 9px 12px;
  }
}

@media (max-width: 1080px) {
  .hero-copy {
    padding-top: 140px;
  }

  .booking-box {
    padding: 26px 28px 30px;
  }

  .boat-grid,
  .story-grid,
  .spec-grid,
  .page-grid-two,
  .reverse-grid,
  .mini-card-grid,
  .media-grid,
  .media-grid-two,
  .crew-grid,
  .spotlight-link-card {
    grid-template-columns: 1fr;
  }

  .spotlight-link-media {
    min-height: 300px;
  }
}

@media (max-width: 860px) {
  .topbar,
  .topbar-page {
    padding-top: 10px;
  }

  .topbar-tools .social-pill-lang,
  .topbar-page .topbar-tools .social-pill-lang {
    display: none;
  }

  .header-lang-mobile {
    display: inline-flex;
    width: 38px;
    min-width: 38px;
    height: 38px;
    flex: 0 0 auto;
    position: relative;
    z-index: 521;
    margin-left: 0;
  }

  .topbar-row {
    min-height: 72px;
    gap: 12px;
  }

  .brand {
    max-width: 108px;
  }

  .brand-logo {
    max-width: 108px;
  }

  .header-phone {
    display: inline-flex;
    margin-left: auto;
    margin-right: 0;
    font-size: 13px;
    padding: 8px 11px;
    max-width: 155px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-phone svg {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
  }

  .menu-toggle {
    display: inline-flex;
    width: 50px;
    height: 50px;
  }

  .topbar-right {
    display: none;
  }

  .topbar.nav-open .topbar-right,
  .topbar-page.nav-open .topbar-right {
    display: flex;
    position: fixed;
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100vh;
    padding: 88px 20px 28px;
    background: rgba(5, 13, 31, 0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow-y: auto;
    border-radius: 0;
    z-index: 510;
    align-items: flex-start;
  }

  .topbar.nav-open .menu-toggle,
  .topbar-page.nav-open .menu-toggle {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 520;
    margin: 0;
  }

  .topbar.nav-open .brand,
  .topbar-page.nav-open .brand,
  .topbar.nav-open .header-phone,
  .topbar-page.nav-open .header-phone {
    opacity: 0;
    pointer-events: none;
  }

  .main-nav,
  .topbar-tools {
    width: 100%;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
  }

  .main-nav a {
    font-size: 26px;
    padding: 2px 0;
  }

  .main-nav .has-submenu > a::before {
    display: none;
  }

  .main-nav .submenu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    padding: 8px 0 0 18px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .main-nav .submenu a {
    font-size: 18px;
    padding: 4px 0;
  }

  .topbar-tools {
    justify-content: flex-start;
    gap: 10px;
    padding-top: 4px;
    margin-top: 18px;
  }

  .social-title {
    width: 100%;
    font-size: 22px;
    margin-bottom: 2px;
  }

  .hero-layout {
    min-height: auto;
    padding-top: 128px;
    padding-bottom: 18px;
  }

  .hero-copy {
    max-width: 100%;
    padding-top: 18px;
  }

  .page-hero {
    padding-top: 148px;
    padding-bottom: 56px;
  }

  .page-hero__inner {
    max-width: 100%;
  }

  .service-list,
  .experience-grid,
  .highlights-row,
  .contacts-grid,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 78px 0;
  }
}

@media (max-width: 640px) {
  .wrap,
  .shell {
    width: calc(100% - 28px);
  }

  .hero-banner {
    min-height: 100svh;
    background:
      linear-gradient(
        180deg,
        rgba(4, 10, 24, 0.90) 0%,
        rgba(4, 10, 24, 0.54) 24%,
        rgba(4, 10, 24, 0.24) 45%,
        rgba(4, 10, 24, 0.58) 74%,
        rgba(4, 10, 24, 0.88) 100%
      ),
      radial-gradient(circle at 16% 18%, rgba(88, 112, 212, 0.12), transparent 30%),
      url("../images/micus-tramonto.png") center center / cover no-repeat;
  }

  .hero-banner::after {
    background: linear-gradient(180deg, rgba(4, 10, 24, 0.10) 0%, transparent 100%);
  }

  .brand {
    max-width: 92px;
  }

  .brand-logo {
    max-width: 92px;
  }

  .header-phone {
    font-size: 12px;
    padding: 7px 9px;
    max-width: 132px;
    gap: 6px;
  }

  .header-phone svg {
    width: 13px;
    height: 13px;
    flex: 0 0 13px;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
  }

  .menu-toggle span {
    left: 12px;
    width: 22px;
  }

  .menu-toggle span:nth-child(1) {
    top: 16px;
  }

  .menu-toggle span:nth-child(2) {
    top: 23px;
  }

  .menu-toggle span:nth-child(3) {
    top: 30px;
  }

  .topbar.nav-open .menu-toggle span:nth-child(1),
  .topbar.nav-open .menu-toggle span:nth-child(3),
  .topbar-page.nav-open .menu-toggle span:nth-child(1),
  .topbar-page.nav-open .menu-toggle span:nth-child(3) {
    top: 23px;
  }

  .main-nav a {
    font-size: 22px;
  }

  .social-title {
    font-size: 20px;
  }

  .social-pill {
    width: 38px;
    height: 38px;
  }

  .hero-layout {
    padding-top: 112px;
    padding-bottom: 16px;
  }

  .hero-copy {
    padding-top: 10px;
  }

  .page-hero {
    padding-top: 132px;
    padding-bottom: 48px;
  }

  .page-title {
    font-size: clamp(38px, 10vw, 54px);
    line-height: 1;
  }

  .page-lead {
    font-size: 22px;
    line-height: 1.25;
    margin-top: 10px;
  }

  .eyebrow {
    margin: 0 0 12px;
    font-size: 12px;
    letter-spacing: 0.16em;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 11vw, 56px);
    line-height: 0.98;
  }

  .lead {
    margin: 16px 0 24px;
    font-size: 22px;
    line-height: 1.2;
  }

  .hero-actions,
  .cta-band-actions,
  .spotlight-link-actions {
    flex-direction: column;
  }

  .cta-main,
  .cta-alt,
  .cta-book,
  .experience-link-btn,
  .program-extra-btn,
  .cove-links-main a,
  .cta-band-actions .btn,
  .spotlight-link-actions .btn {
    width: 100%;
  }

  .booking-box {
    padding: 22px 18px 20px;
  }

  .booking-head {
    gap: 14px;
    margin-bottom: 18px;
  }

  .booking-head h2 {
    font-size: 40px;
  }

  .booking-form {
    gap: 14px;
  }

  .field select,
  .field input[type="date"],
  .cta-book {
    height: 58px;
  }

  .cta-book {
    font-size: 16px;
  }

  .service-item,
  .experience-card,
  .spec-card,
  .boat-copy,
  .contact-card,
  .copy-card,
  .mini-card,
  .crew-card-body,
  .program-extra-link,
  .cove-links-box,
  .spotlight-link-copy {
    padding-left: 18px;
    padding-right: 18px;
  }

  .copy-card {
    padding-top: 22px;
    padding-bottom: 20px;
  }

  .mini-card {
    padding-top: 22px;
    padding-bottom: 20px;
  }

  .service-item {
    padding-top: 20px;
    padding-bottom: 6px;
  }

  .service-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 14px;
  }

  .service-item h3,
  .experience-card h3,
  .spec-card h3,
  .boat-copy h3,
  .contact-card h3,
  .copy-card h2,
  .mini-card h3,
  .crew-card h3 {
    font-size: 28px;
  }

  .section-head h2,
  .cta-band h2 {
    font-size: 42px;
  }

  .section-head p,
  .story-copy p,
  .program-extra-link p,
  .cove-links-box p {
    font-size: 15px;
  }

  .contact-number {
    font-size: 28px;
  }

  .crew-license {
    font-size: 13px;
    line-height: 1.6;
  }

  .site-footer {
    padding: 18px 0;
  }

  .footer-inner p {
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .brand {
    max-width: 80px;
  }

  .brand-logo {
    max-width: 80px;
  }

  .header-phone {
    font-size: 11px;
    padding: 6px 8px;
    max-width: 122px;
  }

  .header-phone svg {
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
  }

  .main-nav a {
    font-size: 20px;
  }

  .social-title {
    font-size: 18px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .lead {
    font-size: 20px;
  }

  .booking-head h2 {
    font-size: 34px;
  }

  .service-item h3 {
    font-size: 24px;
  }
}

@media (min-width: 1200px) and (hover: hover) and (pointer: fine) {
  .hero-banner {
    background-attachment: fixed;
  }
}

/* Booking online */
.booking-page {
  padding: 8rem 0 4rem;
  min-height: 100vh;
  background: linear-gradient(180deg, #f7f7f2 0%, #ffffff 100%);
}
.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}
.booking-card,
.booking-side-card,
.admin-card,
.auth-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(17, 34, 68, 0.12);
  padding: 1.5rem;
}
.booking-intro { margin-bottom: 1.25rem; }
.booking-intro p,
.booking-side-card p,
.booking-help-text,
.booking-inline-note,
.form-feedback { color: #475467; }
.booking-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.booking-fields .field-block {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.booking-fields .field-full { grid-column: 1 / -1; }
.booking-fields input,
.booking-fields select,
.booking-fields textarea {
  width: 100%;
  border: 1px solid #d0d5dd;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  font: inherit;
  background: #fff;
}
.booking-fields textarea { min-height: 110px; resize: vertical; }
.booking-label { font-size: 0.92rem; font-weight: 600; color: #101828; }
.booking-price-box,
.booking-availability-box,
.booking-status-box {
  border: 1px solid #e4e7ec;
  background: #f8fafc;
  border-radius: 18px;
  padding: 1rem 1.1rem;
  margin-top: 1rem;
}
.booking-price-row,
.booking-side-row,
.admin-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.4rem 0;
}
.booking-total { font-size: 1.25rem; font-weight: 700; color: #0f172a; }
.booking-cta-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}
.btn-inline-link {
  border: 0;
  background: transparent;
  color: #0f172a;
  font-weight: 600;
  cursor: pointer;
}
.form-feedback,
.inline-error,
.inline-success {
  margin-top: 0.9rem;
  font-size: 0.95rem;
}
.inline-error { color: #b42318; }
.inline-success { color: #027a48; }
.availability-good { color: #027a48; }
.availability-warn { color: #b54708; }
.availability-bad { color: #b42318; }
.small-muted { color: #667085; font-size: 0.9rem; }
.booking-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  background: #ecfdf3;
  color: #027a48;
  font-size: 0.88rem;
  font-weight: 600;
}
.booking-list,
.admin-list { margin: 1rem 0 0; padding-left: 1.1rem; }
.booking-list li,
.admin-list li { margin-bottom: 0.55rem; }
.booking-panel-title { margin: 0 0 0.5rem; }
.booking-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
}
.table-wrap {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid #e4e7ec;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.admin-table th,
.admin-table td {
  padding: 0.8rem 0.9rem;
  border-bottom: 1px solid #eaecf0;
  text-align: left;
  font-size: 0.94rem;
}
.admin-table th { background: #f9fafb; color: #344054; }
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.status-pill {
  display: inline-flex;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}
.status-paid { background: #ecfdf3; color: #027a48; }
.status-pending { background: #fffaeb; color: #b54708; }
.status-cancelled, .status-failed { background: #fef3f2; color: #b42318; }
.auth-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: linear-gradient(180deg, #0d1b2a 0%, #102a43 100%);
}
.auth-card { width: min(100%, 460px); }
.auth-card h1,
.auth-card p,
.auth-card label { color: #101828; }
.auth-card input {
  width: 100%;
  border: 1px solid #d0d5dd;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  font: inherit;
  margin-top: 0.35rem;
}
@media (max-width: 960px) { .booking-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .booking-fields { grid-template-columns: 1fr; } }
.price-box {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin: 18px 0 0;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(200, 155, 78, 0.12);
  border: 1px solid rgba(200, 155, 78, 0.22);
}

.price-box--dark {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.price-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  font-weight: 700;
  color: #9d6a16;
}

.price-box--dark .price-main {
  color: #ddb871;
}

.price-note {
  font-size: 13px;
  line-height: 1.5;
  color: #596273;
}

.price-box--dark .price-note {
  color: rgba(255, 255, 255, 0.76);
}

.experience-price {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(24, 32, 51, 0.08);
}

.experience-price .price-main {
  font-size: 30px;
}

.experience-price .price-note {
  display: block;
  margin-top: 4px;
}

@media (max-width: 640px) {
  .price-box {
    width: 100%;
    padding: 12px 14px;
  }

  .price-main {
    font-size: 30px;
  }

  .price-note {
    font-size: 12px;
  }

  .experience-price .price-main {
    font-size: 28px;
  }
}
.header-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: auto;
  flex: 0 0 auto;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-contact:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
}

.header-contact svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

@media (max-width: 860px) {
  .header-contacts {
    gap: 6px;
  }

  .header-contact {
    padding: 8px 12px;
    font-size: 13px;
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-mail-desktop {
    display: none;
  }

  .topbar.nav-open .header-contacts,
  .topbar-page.nav-open .header-contacts {
    opacity: 0;
    pointer-events: none;
  }
}

@media (max-width: 640px) {
  .header-lang-mobile {
    width: 36px;
    min-width: 36px;
    height: 36px;
  }

  .header-contact {
    font-size: 12px;
    padding: 7px 10px;
    max-width: 160px;
  }
}










/* ===== ALWAYS-VISIBLE LANGUAGE SWITCH ===== */
/* ===== ALWAYS-VISIBLE LANGUAGE SWITCH ===== */
.header-lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  margin-left: 10px;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px;
  overflow: hidden;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  text-decoration: none;
  appearance: none;
  z-index: 1200;
}

.header-lang-switch::before,
.header-lang-switch::after {
  content: none !important;
  display: none !important;
}

.header-lang-switch img {
  display: block;
  width: 100%;
  height: 100%;
  margin-top: 4px;
  scale: 1.70;
  object-fit: cover;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.header-lang-switch:hover {
  transform: translateY(-1px) scale(1.03);
}

@media (max-width: 860px) {
  .header-lang-switch {
    width: 44px;
    height: 44px;
    margin-left: 8px;
    position: relative;
    z-index: 1400;
  }

  .topbar.nav-open .header-lang-switch,
  .topbar-page.nav-open .header-lang-switch {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    position: fixed;
    top: 64px;
    right: 12px;
    z-index: 1501;
  }
}

@media (max-width: 640px) {
  .header-lang-switch {
    width: 44px;
    height: 44px;
    margin-left: 8px;
  }
}


/* ===== HOMEPAGE DOUBLE BOAT IMAGE ===== */
.experience-intro-media {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 0 auto 34px;
  align-items: stretch;
}

.experience-intro-media .photo-card {
  margin: 0;
  min-height: 260px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.experience-intro-media .photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 860px) {
  .experience-intro-media {
    gap: 14px;
    margin: 0 auto 26px;
  }

  .experience-intro-media .photo-card {
    min-height: 170px;
    border-radius: 22px;
  }
}

@media (max-width: 640px) {
  .experience-intro-media {
    gap: 12px;
    margin: 0 auto 22px;
  }

  .experience-intro-media .photo-card {
    min-height: 145px;
    border-radius: 18px;
  }
}


/* ===== PARTNER LOGOS ===== */
.partner-logos-section {
  padding: 0 0 34px;
  background: #f4f6fa;
}

.partner-logos-head {
  text-align: center;
  margin-bottom: 22px;
}

.partner-logos-head h2 {
  margin: 0 0 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  font-weight: 600;
  color: #182033;
}

.partner-logos-head p {
  margin: 0 auto;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.75;
  color: #596273;
}

.partner-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.partner-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 170px;
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.10);
  border: 1px solid rgba(11, 27, 55, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-logo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.14);
}

.partner-logo-card img {
  display: block;
  max-width: 100%;
  max-height: 132px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 980px) {
  .partner-logos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .partner-logos-section {
    padding-bottom: 24px;
  }

  .partner-logos-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .partner-logo-card {
    min-height: 150px;
    padding: 16px;
  }

  .partner-logo-card img {
    max-height: 118px;
  }
}
