:root {
  --navy-950: #03182b;
  --navy-900: #06233d;
  --navy-800: #0a3458;
  --navy-700: #12486e;
  --mist: #edf2f5;
  --white: #ffffff;
  --ink: #142033;
  --muted: #667385;
  --gold: #d8b86f;
  --reef: #1d9a9a;
  --sand: #d8c7a3;
  --line: rgba(20, 32, 51, 0.12);
  --glass-line: rgba(255, 255, 255, 0.24);
  --shadow: 0 24px 70px rgba(3, 24, 43, 0.18);
  --serif: "Gentium Book Plus", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--mist);
  font-family: var(--sans);
}

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

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

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

.has-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.has-reveal [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 18px clamp(18px, 5vw, 68px);
  color: var(--white);
  background: rgba(3, 24, 43, 0.48);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand img,
.header-logo {
  width: auto;
  height: 98px;
  object-fit: contain;
}

.footer-brand img,
.footer-logo {
  width: auto;
  height: 124px;
  object-fit: contain;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  opacity: 0.78;
}

.nav a.is-active,
.nav a:hover {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search {
  display: flex;
  min-width: 246px;
  min-height: 42px;
  border: 1px solid var(--glass-line);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.search input {
  width: 200px;
  min-width: 0;
  border: 0;
  padding: 0 12px;
  color: var(--white);
  background: transparent;
  outline: 0;
}

.search input::placeholder {
  color: rgba(255, 255, 255, 0.82);
}

.search button {
  position: relative;
  width: 42px;
  overflow: hidden;
  border: 0;
  color: transparent;
  background: var(--white);
  cursor: pointer;
}

.search button::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 3px solid var(--navy-950);
  border-radius: 999px;
}

.search button::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 3px;
  right: 9px;
  bottom: 12px;
  background: var(--navy-950);
  transform: rotate(45deg);
}

.reserve-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: var(--navy-950);
  background: var(--white);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--glass-line);
  background: rgba(255, 255, 255, 0.1);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 24, 43, 0.12), rgba(3, 24, 43, 0.74)),
    linear-gradient(90deg, rgba(3, 24, 43, 0.54), rgba(3, 24, 43, 0.06), rgba(3, 24, 43, 0.48));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 32px));
  padding: 120px 0 158px;
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(70px, 11vw, 164px);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero p {
  max-width: 690px;
  margin: 24px auto 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  line-height: 1.58;
  text-shadow: 0 2px 22px rgba(3, 24, 43, 0.72);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 0;
  font: 800 14px/1 var(--sans);
  cursor: pointer;
}

.button-glass {
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

.button-dark {
  color: var(--white);
  background: var(--navy-950);
}

.button-primary {
  width: 100%;
  color: var(--navy-950);
  background: var(--gold);
}

.button-primary:disabled {
  opacity: 0.62;
  cursor: progress;
}

.button-light {
  color: var(--navy-950);
  background: var(--white);
}

.hero-tabs {
  position: absolute;
  z-index: 3;
  left: clamp(18px, 4vw, 48px);
  right: clamp(18px, 4vw, 48px);
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(6, 35, 61, 0.68);
  backdrop-filter: blur(16px);
}

.hero-tabs a {
  min-height: 104px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 16px 10px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-tabs a:first-child {
  border-left: 0;
}

.hero-tabs strong {
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 28px);
}

.hero-tabs span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.hero-tabs .is-selected {
  color: var(--navy-950);
  background: var(--white);
}

.hero-tabs .is-selected span {
  color: var(--navy-700);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 100px 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(42px, 5.4vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
  color: var(--navy-950);
}

h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1;
  letter-spacing: 0;
  color: var(--navy-950);
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

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

.section-heading-center .eyebrow {
  position: relative;
  padding: 0 56px;
}

.section-heading-center .eyebrow::before,
.section-heading-center .eyebrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: rgba(3, 24, 43, 0.26);
}

.section-heading-center .eyebrow::before {
  left: 0;
}

.section-heading-center .eyebrow::after {
  right: 0;
}

.trust-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0 64px;
  text-align: center;
}

.trust-avatars {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
}

.trust-avatars img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border: 2px solid var(--mist);
  border-radius: 999px;
  margin-left: -10px;
}

.trust-avatars img:first-child {
  margin-left: 0;
}

.trust-avatars div {
  margin-left: 14px;
  text-align: left;
}

.trust-avatars strong,
.trust-avatars span {
  display: block;
}

.trust-avatars strong {
  color: var(--navy-950);
}

.trust-avatars span {
  color: var(--muted);
  font-size: 13px;
}

.statement {
  max-width: 980px;
  margin: 0 auto;
}

.statement h2 {
  font-size: clamp(42px, 5.7vw, 82px);
}

.partner-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 54px;
  background: rgba(20, 32, 51, 0.1);
}

.partner-row span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 14px;
  color: rgba(20, 32, 51, 0.62);
  background: var(--mist);
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 700;
}

.image-stat-section {
  width: min(1180px, calc(100% - 36px));
  min-height: 620px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(6, 96px);
  gap: 18px;
  margin: 0 auto;
  padding: 46px 0 84px;
}

.image-stat {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  box-shadow: var(--shadow);
  background: var(--navy-900);
}

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

.image-stat div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 14px;
  padding: 16px;
  color: var(--white);
  background: rgba(3, 24, 43, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.image-stat strong {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 62px);
  line-height: 0.9;
}

.image-stat span {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.image-stat-1 {
  grid-column: 1 / span 4;
  grid-row: 1 / span 4;
}

.image-stat-2 {
  grid-column: 5 / span 4;
  grid-row: 2 / span 4;
}

.image-stat-3 {
  grid-column: 9 / span 4;
  grid-row: 1 / span 3;
}

.image-stat-4 {
  grid-column: 8 / span 5;
  grid-row: 4 / span 3;
}

.journeys-showcase-section {
  width: min(1240px, calc(100% - 36px));
}

.journey-stack {
  display: grid;
  gap: 54px;
}

.journey-showcase {
  position: relative;
  box-shadow: var(--shadow);
}

.journey-visual {
  position: relative;
  display: block;
  min-height: 560px;
  overflow: hidden;
  background: var(--navy-950);
}

.journey-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
  transition: transform 800ms ease;
}

.journey-showcase:hover .journey-visual img {
  transform: scale(1.035);
}

.journey-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 24, 43, 0.16), rgba(3, 24, 43, 0.7));
}

.journey-title {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 30px;
  color: var(--white);
  text-align: center;
}

.journey-title span {
  font-family: var(--serif);
  font-size: clamp(58px, 9.5vw, 128px);
  line-height: 0.86;
  text-transform: uppercase;
}

.journey-title p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.journey-meta {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: 100px;
  color: var(--white);
  background: rgba(3, 24, 43, 0.92);
}

.journey-meta > * {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 18px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.journey-meta > *:first-child {
  border-left: 0;
}

.journey-meta span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.journey-meta strong {
  font-size: 14px;
}

.journey-meta a {
  color: var(--navy-950);
  background: var(--white);
  font-weight: 900;
}

.steps-section {
  width: min(1120px, calc(100% - 36px));
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
}

.step-card {
  position: relative;
  min-height: 300px;
  padding: 34px 26px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.step-card:nth-child(2),
.step-card:nth-child(4) {
  margin-top: 54px;
}

.step-card > span {
  position: absolute;
  right: 18px;
  bottom: 8px;
  color: rgba(3, 24, 43, 0.07);
  font-family: var(--serif);
  font-size: 132px;
  line-height: 0.8;
}

.step-card i {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 30px;
  height: 22px;
  background:
    radial-gradient(circle, var(--gold) 2px, transparent 3px) 0 0 / 10px 10px;
}

.step-card h3,
.step-card p {
  position: relative;
  z-index: 1;
}

.services-section {
  width: min(1200px, calc(100% - 36px));
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: -10px 0 34px;
}

.service-tabs button {
  min-height: 38px;
  border: 1px solid var(--line);
  padding: 0 16px;
  color: var(--navy-950);
  background: var(--white);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.service-tabs button.is-active {
  color: var(--white);
  background: var(--navy-950);
}

.service-panel {
  display: none;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  min-height: 420px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-panel.is-visible {
  display: grid;
}

.service-panel > img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.service-panel > div {
  padding: clamp(28px, 5vw, 58px);
}

.service-panel dl,
.detail-list {
  display: grid;
  gap: 10px;
  margin: 26px 0;
}

.service-panel dl div,
.detail-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  border-top: 1px solid #e4eaf0;
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.feature-section {
  width: min(1180px, calc(100% - 36px));
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 118px;
  padding: 16px;
  background: var(--white);
  box-shadow: 0 14px 44px rgba(3, 24, 43, 0.08);
}

.feature-item img {
  width: 88px;
  height: 74px;
  object-fit: cover;
}

.feature-item h3 {
  margin-bottom: 6px;
  font-size: 22px;
}

.feature-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.testimonials-section {
  width: min(1120px, calc(100% - 36px));
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.testimonial-card {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 26px;
  align-items: center;
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.testimonial-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.05;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  margin-top: 18px;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 13px;
}

.journal-section {
  width: min(1180px, calc(100% - 36px));
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.post-card {
  background: var(--white);
  box-shadow: var(--shadow);
}

.post-card.is-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 0.86fr;
}

.post-image {
  display: block;
  height: 240px;
  overflow: hidden;
  background: var(--navy-900);
}

.post-card.is-featured .post-image {
  height: 100%;
  min-height: 360px;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.post-card:hover img {
  transform: scale(1.04);
}

.post-card > div {
  padding: 26px;
}

.post-card h3 a {
  color: var(--navy-950);
}

.post-date {
  color: var(--muted);
  font-size: 13px;
}

.section-action {
  margin-top: 34px;
  text-align: center;
}

.journal-search {
  display: flex;
  max-width: 520px;
  margin: -14px auto 34px;
  background: var(--white);
  box-shadow: 0 14px 44px rgba(3, 24, 43, 0.08);
}

.journal-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 16px;
  outline: 0;
}

.journal-search button {
  border: 0;
  padding: 0 20px;
  color: var(--white);
  background: var(--navy-950);
  font-weight: 800;
}

.faq-section,
.booking-grid,
.route-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: var(--white);
  box-shadow: 0 14px 44px rgba(3, 24, 43, 0.08);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--navy-950);
  font-weight: 900;
}

.faq-list summary:hover {
  background: rgba(20, 32, 51, 0.04);
}

.faq-list details > p {
  padding: 0 24px 22px;
  background: rgba(20, 32, 51, 0.02);
}

/* Booking Form Styles */
.booking-form-wrapper {
  padding: 32px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 8px;
}

.book-form {
  display: grid;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-submit {
  grid-column: 1 / -1;
  padding-top: 8px;
}

.form-status {
  grid-column: 1 / -1;
  text-align: center;
  margin: 0;
  padding: 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}

.form-status.success {
  background: rgba(29, 154, 154, 0.12);
  color: var(--reef);
  border: 1px solid var(--reef);
}

.form-status.error {
  background: rgba(3, 24, 43, 0.08);
  color: var(--navy-950);
  border: 1px solid var(--line);
}

.required {
  color: #dc3545;
}

.book-form label {
  display: block;
  color: var(--navy-950);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
}

.book-form input,
.book-form select,
.book-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px 16px;
  color: var(--navy-950);
  background: var(--white);
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus {
  outline: none;
  border-color: var(--reef);
  box-shadow: 0 0 0 3px rgba(29, 154, 154, 0.12);
}

.book-form input::placeholder {
  color: rgba(20, 32, 51, 0.42);
}

.book-form textarea {
  resize: vertical;
  min-height: 120px;
}

.book-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23667385' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

/* Responsive form layout */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .booking-form-wrapper {
    padding: 24px;
  }
}

/* ============================================
   YACHT CARD STYLES - Professional Layout
   ============================================ */

.fleet-section {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding: 80px 0;
}

.yacht-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Main Card */
.yacht-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(3, 24, 43, 0.06);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

.yacht-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(3, 24, 43, 0.15);
}

/* Image Section */
.yacht-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--navy-950);
}

.yacht-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.yacht-card:hover .yacht-card__image img {
  transform: scale(1.1);
}

/* Type Badge - Top Left */
.yacht-card__type {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 16px;
  background: var(--navy-950);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 6px;
  z-index: 2;
}

/* Body Section */
.yacht-card__body {
  display: flex;
  flex-direction: column;
  padding: 28px;
  flex: 1;
}

/* Header */
.yacht-card__header {
  margin-bottom: 20px;
  text-align: center;
}

.yacht-card__eyebrow {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.yacht-card__title {
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy-950);
  line-height: 1.25;
}

/* Specs Grid - 3 Columns */
.yacht-card__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.yacht-card__spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  text-align: center;
  background: var(--mist);
}

.yacht-card__spec:not(:last-child) {
  border-right: 1px solid var(--line);
}

.yacht-card__spec-label {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.yacht-card__spec-value {
  display: block;
  color: var(--navy-950);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

/* Description */
.yacht-card__desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
}

/* Pricing Section */
.yacht-card__pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(216, 184, 111, 0.08) 0%, rgba(216, 184, 111, 0.04) 100%);
  border-radius: 12px;
  border: 1px solid rgba(216, 184, 111, 0.2);
}

.yacht-card__price-label {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.yacht-card__price {
  display: block;
  color: var(--navy-950);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
}

/* Action Buttons */
.yacht-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: auto;
}

.yacht-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.yacht-card__btn--primary {
  background: var(--navy-950);
  color: var(--white);
}

.yacht-card__btn--primary:hover {
  background: var(--navy-800);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(3, 24, 43, 0.25);
}

.yacht-card__btn--secondary {
  background: transparent;
  color: var(--navy-950);
  border: 2px solid var(--navy-950);
}

.yacht-card__btn--secondary:hover {
  background: var(--navy-950);
  color: var(--white);
  transform: translateY(-2px);
}

/* Responsive Yacht Grid */
@media (max-width: 1024px) {
  .yacht-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .yacht-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .yacht-card__image {
    height: 200px;
  }

  .yacht-card__body {
    padding: 24px;
  }

  .yacht-card__title {
    font-size: 22px;
  }

  .yacht-card__specs {
    grid-template-columns: 1fr;
  }

  .yacht-card__spec:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .yacht-card__price {
    font-size: 22px;
  }

  .yacht-card__actions {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  background: var(--navy-950);
  color: var(--white);
  padding: clamp(60px, 8vw, 100px) clamp(18px, 5vw, 68px) clamp(40px, 6vw, 80px);
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(40px, 6vw, 100px);
  width: min(1340px, 100%);
  margin: 0 auto;
  max-width: 1340px;
}

.footer-inner > div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-inner h3 {
  margin: 0;
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.footer-inner a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  text-decoration: none;
  transition: color 300ms ease;
}

.footer-inner a:hover {
  color: var(--white);
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.footer-inner span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.social-row {
  display: flex;
  gap: 14px;
}

.social-row a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
  font-size: 0;
}

.social-row a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.booking-detail {
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.booking-detail h3 {
  margin-top: 0;
  margin-bottom: 20px;
  color: var(--navy-950);
}

.booking-detail .button {
  width: 100%;
  margin-top: 20px;
}

.quote-row {
  display: grid;
  gap: 18px;
}

.quote-section {
  padding: 16px 20px;
  border-left: 4px solid var(--gold);
  background: rgba(216, 184, 111, 0.08);
}

.quote-section strong {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.quote-section span {
  font-weight: 700;
  color: var(--navy-950);
}

.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.post-meta a {
  color: var(--navy-950);
  font-weight: 900;
  font-size: 12px;
  transition: opacity 300ms ease;
}

.post-meta a:hover {
  opacity: 0.64;
}

@media (max-width: 1024px) {
  .brand img,
  .header-logo {
    width: auto;
    height: 72px;
  }

  .footer-brand img,
  .footer-logo {
    width: auto;
    height: 100px;
  }

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

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

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

  .post-card.is-featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .post-card.is-featured .post-image {
    height: 240px;
    min-height: auto;
  }

  .image-stat-section {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(8, 96px);
  }

  .image-stat-1 {
    grid-column: 1 / span 3;
    grid-row: 1 / span 4;
  }

  .image-stat-2 {
    grid-column: 4 / span 3;
    grid-row: 1 / span 4;
  }

  .image-stat-3 {
    grid-column: 1 / span 3;
    grid-row: 5 / span 4;
  }

  .image-stat-4 {
    grid-column: 4 / span 3;
    grid-row: 5 / span 4;
  }

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

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

  .testimonial-track {
    grid-template-columns: 1fr;
  }

  .faq-section,
  .booking-grid,
  .route-detail {
    grid-template-columns: 1fr;
  }

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

  /* Fleet Section */
  .fleet-section {
    width: min(1180px, calc(100% - 36px));
  }

  .yacht-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .yacht-card {
    background: var(--white);
    box-shadow: var(--shadow);
    overflow: hidden;
  }

  .yacht-visual {
    position: relative;
    min-height: 280px;
    overflow: hidden;
  }

  .yacht-visual img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    transition: transform 600ms ease;
  }

  .yacht-card:hover img {
    transform: scale(1.04);
  }

  .yacht-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    color: var(--white);
    background: var(--navy-950);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .yacht-content {
    padding: 26px;
  }

  .yacht-content .eyebrow {
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .yacht-content h3 {
    margin: 8px 0 12px;
    font-family: var(--serif);
    font-size: clamp(24px, 2vw, 32px);
    color: var(--navy-950);
  }

  .yacht-content p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
  }

  .yacht-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 18px;
    padding: 16px;
    background: var(--mist);
  }

  .spec-item {
    display: grid;
    gap: 4px;
  }

  .spec-label {
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .spec-value {
    color: var(--navy-950);
    font-size: 14px;
    font-weight: 700;
  }

  .yacht-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 18px;
  }

  .price-from {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
  }

  .price-value {
    color: var(--navy-950);
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 700;
  }

  .yacht-actions {
    display: flex;
    gap: 12px;
  }

  .yacht-actions .button {
    flex: 1;
    min-height: 44px;
    font-size: 13px;
    font-weight: 700;
  }

  .button-outline {
    color: var(--navy-950);
    background: transparent;
    border: 1px solid var(--navy-950);
  }

  /* Yacht Detail Page */
  .yacht-detail {
    display: grid;
    gap: 48px;
  }

  .yacht-overview {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .overview-content .eyebrow {
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .overview-content h2 {
    margin: 12px 0 18px;
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 52px);
    color: var(--navy-950);
  }

  .overview-content p {
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.75;
    color: var(--muted);
  }

  .yacht-capacity {
    display: flex;
    gap: 32px;
    padding: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .capacity-item {
    display: grid;
    gap: 6px;
  }

  .capacity-label {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .capacity-value {
    color: var(--navy-950);
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 700;
  }

  .yacht-specs-full {
    padding: 32px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .yacht-specs-full h3 {
    margin: 0 0 24px;
    font-family: var(--serif);
    font-size: 28px;
    color: var(--navy-950);
  }

  .specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
  }

  .spec-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .spec-row dt {
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
  }

  .spec-row dd {
    margin: 0;
    color: var(--navy-950);
    font-size: 14px;
    font-weight: 700;
    text-align: right;
  }

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

  .feature-col {
    padding: 28px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .feature-col h3 {
    margin: 0 0 20px;
    font-family: var(--serif);
    font-size: 20px;
    color: var(--navy-950);
  }

  .feature-list {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .feature-list li {
    padding: 10px 0;
    color: var(--muted);
    font-size: 14px;
    border-bottom: 1px solid var(--line);
  }

  .feature-list li:last-child {
    border-bottom: 0;
  }

  .yacht-pricing-full {
    padding: 32px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .yacht-pricing-full h3 {
    margin: 0 0 24px;
    font-family: var(--serif);
    font-size: 28px;
    color: var(--navy-950);
  }

  .pricing-table {
    display: grid;
    gap: 12px;
  }

  .pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: var(--mist);
  }

  .pricing-route {
    display: grid;
    gap: 4px;
  }

  .route-name {
    color: var(--navy-950);
    font-size: 16px;
    font-weight: 700;
  }

  .route-duration {
    color: var(--muted);
    font-size: 13px;
  }

  .pricing-price {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-950);
  }

  .yacht-included,
  .yacht-optional {
    padding: 28px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .yacht-included h3,
  .yacht-optional h3 {
    margin: 0 0 20px;
    font-family: var(--serif);
    font-size: 22px;
    color: var(--navy-950);
  }

  .included-list,
  .optional-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .included-list li,
  .optional-list li {
    padding: 10px 0;
    color: var(--muted);
    font-size: 14px;
  }

  .yacht-included li::before {
    content: "✓ ";
    color: var(--reef);
    font-weight: 700;
  }

  .yacht-policies {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .policy-section {
    padding: 28px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .policy-section h3 {
    margin: 0 0 18px;
    font-family: var(--serif);
    font-size: 20px;
    color: var(--navy-950);
  }

  .policy-list {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .policy-list li {
    padding: 10px 0;
    color: var(--muted);
    font-size: 14px;
    border-bottom: 1px solid var(--line);
  }

  .policy-list li:last-child {
    border-bottom: 0;
  }

  /* Fleet Responsive */
  .yacht-grid,
  .yacht-features,
  .yacht-policies {
    grid-template-columns: 1fr;
  }

  .yacht-detail {
    gap: 28px;
  }

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

  .included-list,
  .optional-list {
    grid-template-columns: 1fr;
  }

  .Yacht-capacity {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .brand img,
  .header-logo {
    width: auto;
    height: 64px;
  }

  .footer-brand img,
  .footer-logo {
    width: auto;
    height: 80px;
  }

  .site-header {
    grid-template-columns: auto 1fr;
  }

  .nav {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav.is-open {
    position: fixed;
    z-index: 20;
    inset: 80px 18px 18px;
    width: calc(100% - 36px);
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 18px;
    background: rgba(3, 24, 43, 0.96);
    backdrop-filter: blur(18px);
  }

  .header-actions.is-open {
    position: fixed;
    z-index: 20;
    inset: 200px 18px auto;
    width: calc(100% - 36px);
    display: flex;
    flex-direction: column;
  }

  .search.is-open {
    width: 100%;
    min-width: auto;
  }

  .reserve-link.is-open {
    width: 100%;
  }

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

  .hero-tabs {
    grid-template-columns: 1fr;
  }

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

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

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

  .feature-item {
    grid-template-columns: 1fr;
  }

  .feature-item img {
    width: 100%;
    height: 200px;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
  }

  .image-stat-section {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .image-stat-1,
  .image-stat-2,
  .image-stat-3,
  .image-stat-4 {
    grid-column: 1;
    grid-row: auto;
    min-height: 240px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}
