/* ============================================
   SPAIN YACHT RENTALS — TURQUOISE / WHITE / GOLD
   Brochure-inspired luxury aesthetic
   ============================================ */

:root {
  /* Turquoise palette (matches brochures) */
  --turquoise: #2c8c87;
  --turquoise-dark: #1f6a66;
  --turquoise-deep: #154f4c;
  --turquoise-light: #5fb3ae;
  --turquoise-pale: #e8f3f1;
  --turquoise-mist: #f4faf9;

  /* Gold accents */
  --gold: #c9a961;
  --gold-dark: #a88c4d;
  --gold-pale: #f5ecd6;

  /* Neutrals */
  --white: #ffffff;
  --cream: #fafaf7;
  --paper: #ffffff;
  --ink: #1a3a3e;
  --ink-soft: #4a6b6f;
  --ink-mute: #7e9a9d;
  --line: rgba(26, 58, 62, 0.1);
  --line-strong: rgba(26, 58, 62, 0.18);
  --line-gold: rgba(201, 169, 97, 0.5);

  --serif: 'Cormorant Garamond', 'Didot', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, sans-serif;

  /* Tighter spacing */
  --space-sm: 1rem;
  --space: 1.75rem;
  --space-lg: 2.75rem;
  --space-xl: 4rem;
  --space-2xl: 5.5rem;

  --container-max: 1280px;
  --container-pad: 2rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad); }

/* ============ TYPOGRAPHY ============ */
.section-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--turquoise);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  font-weight: 400;
}
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.25rem;
  max-width: 22ch;
}
.section-title-center { text-align: center; margin-left: auto; margin-right: auto; }
.section-lead {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 58ch;
  margin-bottom: 2.5rem;
}
.section-lead-center { margin-left: auto; margin-right: auto; text-align: center; }

/* ============ DIVIDERS ============ */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 700px;
  margin: 2rem auto 2.5rem;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-gold), transparent);
}
.divider-symbol {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.85rem 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s ease;
}
.nav.scrolled { padding: 0.55rem 0; background: rgba(255, 255, 255, 0.97); }
.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--turquoise-deep);
}
.brand-sub {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-top: 0.2rem;
  font-weight: 500;
}
.nav-links { display: flex; align-items: center; gap: 1.65rem; }
.nav-links > a {
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.2s;
}
.nav-links > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links > a:hover { color: var(--turquoise); }
.nav-links > a:hover::after { width: 100%; }
.lang-switch {
  display: flex;
  gap: 0.3rem;
  padding-left: 1.15rem;
  border-left: 1px solid var(--line);
}
.lang-btn {
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  padding: 0.2rem 0.32rem;
  font-weight: 500;
  transition: color 0.2s;
}
.lang-btn:hover { color: var(--turquoise); }
.lang-btn.active { color: var(--turquoise); border-bottom: 1px solid var(--gold); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; z-index: 102; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--ink); transition: 0.3s; }

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image { position: absolute; inset: 0; z-index: 1; }
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 20s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(21, 79, 76, 0.5) 0%, rgba(21, 79, 76, 0.25) 40%, rgba(0, 0, 0, 0.55) 100%),
    radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  padding: 0 2rem;
  max-width: 900px;
  animation: fadeUp 1.4s 0.3s ease-out both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  color: var(--gold);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 24px rgba(0,0,0,0.7), 0 2px 8px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  gap: 0.3em;
  color: #fff;
}
.hero-tilde { font-size: 0.6em; color: var(--gold); font-style: italic; }
.hero-italic { font-style: italic; font-weight: 300; }
.hero-cta {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.5); transform-origin: top; }
  50% { transform: scaleY(1); }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  background: transparent;
}
.btn-primary {
  background: var(--turquoise);
  color: #fff;
  border-color: var(--turquoise);
}
.btn-primary:hover {
  background: var(--turquoise-dark);
  border-color: var(--gold);
  color: var(--gold);
}
.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(201, 169, 97, 0.15);
  border-color: var(--gold);
  color: var(--gold);
}
.btn-large { padding: 1rem 2.5rem; font-size: 0.8rem; }

/* ============ INTRO ============ */
.intro {
  padding: var(--space-2xl) 0 var(--space) 0;
  text-align: center;
}
.intro .section-title { margin: 0 auto 1rem; }
.intro .section-eyebrow { text-align: center; }
.intro .section-lead { margin: 0 auto; }

/* ============ FLEET (collapsible cards) ============ */
.fleet { padding: var(--space) 0 var(--space-2xl); }
.fleet-intro { text-align: center; margin-bottom: var(--space); }
.fleet-intro .section-title { margin: 0 auto 0.5rem; }

.yacht-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  align-items: start;
}

.yacht-card {
  background: var(--paper);
  border: 1px solid var(--line);
  transition: box-shadow 0.3s, border-color 0.3s;
  overflow: hidden;
}
.yacht-card[open] {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(44, 140, 135, 0.12);
}
.yacht-card:hover { box-shadow: 0 8px 24px rgba(44, 140, 135, 0.08); }

.yacht-summary { cursor: pointer; list-style: none; position: relative; outline: none; }
.yacht-summary::-webkit-details-marker { display: none; }
.yacht-summary-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}
.yacht-summary-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.yacht-card:hover .yacht-summary-image img { transform: scale(1.04); }
.yacht-summary-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(21,79,76,0.3) 100%);
  pointer-events: none;
}

.yacht-summary-info {
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line-gold);
}
.yacht-summary-text { flex: 1; }
.yacht-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 0.2rem;
  display: block;
  letter-spacing: 0.04em;
}
.yacht-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.55rem;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 0.15rem;
}
.yacht-edition {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 0.88rem;
}
.yacht-chevron {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  transition: transform 0.4s ease, background 0.3s, color 0.3s;
  flex-shrink: 0;
}
.yacht-card[open] .yacht-chevron {
  transform: rotate(180deg);
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.yacht-body {
  padding: 0 1.5rem 1.5rem;
  animation: slideDown 0.4s ease-out;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.yacht-desc {
  font-size: 0.93rem;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  line-height: 1.7;
  padding-top: 0.5rem;
}

/* Mini-gallery inside each yacht card */
.yacht-mini-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-bottom: 1.25rem;
}
.yacht-mini-gallery > div {
  aspect-ratio: 1;
  overflow: hidden;
}
.yacht-mini-gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.yacht-mini-gallery > div:hover img { transform: scale(1.08); }

.specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 1.25rem;
  border-top: 1px solid var(--line);
}
.specs > div {
  display: flex;
  flex-direction: column;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  padding-right: 0.8rem;
}
.specs > div:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 0.8rem; }
.specs > div:nth-child(even) { padding-left: 0.8rem; }
.specs dt {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.2rem;
  font-weight: 500;
}
.specs dd {
  font-family: var(--serif);
  font-size: 0.98rem;
  color: var(--ink);
  font-weight: 500;
}
.yacht-cta {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  background: var(--turquoise);
  padding: 0.8rem 1.5rem;
  border: 1px solid var(--turquoise);
  transition: all 0.3s;
  font-weight: 500;
  width: 100%;
  text-align: center;
}
.yacht-cta:hover {
  background: var(--turquoise-dark);
  border-color: var(--gold);
  color: var(--gold);
}

/* ============ PRICING ============ */
.pricing { padding: var(--space-xl) 0 var(--space-lg); background: var(--turquoise-mist); }
.pricing .container { text-align: center; }
.pricing .section-eyebrow { text-align: center; }

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.price-tab {
  padding: 0.75rem 1.4rem;
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 400;
  color: var(--ink-mute);
  position: relative;
  transition: color 0.2s;
}
.price-tab::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.price-tab.active { color: var(--turquoise); }
.price-tab.active::after { width: 70%; }
.price-tab:hover { color: var(--turquoise); }

.pricing-panel { display: none; }
.pricing-panel.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.pricing-season { margin-bottom: 1.75rem; }
.pricing-season:last-child { margin-bottom: 0; }
.season-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 400;
  text-align: center;
  color: var(--turquoise);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  max-width: 900px;
  margin: 0 auto;
}
.price-card {
  background: var(--white);
  padding: 1.4rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: background 0.3s;
}
.price-card:hover { background: var(--gold-pale); }
.price-hours {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.price-amount {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--turquoise-deep);
  font-weight: 500;
}

.pricing-included {
  max-width: 760px;
  margin: 2rem auto 0;
  text-align: center;
  padding: 1.4rem 1.5rem;
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
}
.pricing-included h4 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--turquoise);
  margin-bottom: 0.7rem;
  font-weight: 400;
}
.pricing-included ul {
  list-style: none;
  font-size: 0.88rem;
  color: var(--ink);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.25rem;
}
.pricing-included li::before {
  content: '·';
  margin-right: 0.5rem;
  color: var(--gold);
}

/* ============ GALLERY ============ */
.gallery { padding: var(--space-xl) 0; }
.gallery .container { text-align: center; }
.gallery .section-eyebrow { text-align: center; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 140px;
  gap: 6px;
  max-width: var(--container-max);
  margin: 1.5rem auto 0;
  padding: 0 var(--container-pad);
}
.g-item { overflow: hidden; position: relative; }
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.g-item:hover img { transform: scale(1.07); }
.g-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(21,79,76,0.3));
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.g-item:hover::after { opacity: 1; }
.g-2x2 { grid-column: span 2; grid-row: span 2; }
.g-3x2 { grid-column: span 3; grid-row: span 2; }
.g-2x1 { grid-column: span 2; }
.g-1x2 { grid-row: span 2; }

/* ============ ADD-ONS ============ */
.addons { padding: var(--space-xl) 0; background: var(--turquoise-mist); }
.addons .container { text-align: center; }
.addons .section-eyebrow { text-align: center; }

.addon-category {
  max-width: var(--container-max);
  margin: 0 auto var(--space);
  padding: 0 var(--container-pad);
}
.addon-cat-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--turquoise-deep);
  margin-bottom: 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--line-gold);
}
.addon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
.addon-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  cursor: default;
  border: 1px solid var(--line);
  transition: border-color 0.3s, transform 0.3s;
}
.addon-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.addon-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1);
  filter: saturate(1.05);
}
.addon-card:hover img { transform: scale(1.05); }
.addon-name {
  display: block;
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
  color: var(--ink);
  background: var(--white);
  font-weight: 400;
}

/* ============ BOOKING ============ */
.booking { padding: var(--space-xl) 0; }
.booking .container { text-align: center; }
.booking .section-eyebrow { text-align: center; }

.booking-form {
  max-width: 760px;
  margin: 1.75rem auto 0;
  text-align: left;
  background: var(--white);
  padding: 2.25rem;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.form-field { display: flex; flex-direction: column; margin-bottom: 1.2rem; }
.form-row .form-field { margin-bottom: 0; }
.form-field label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 0.6rem 0;
  font-size: 1rem;
  color: var(--ink);
  font-family: var(--sans);
  outline: none;
  transition: border-color 0.2s;
  font-weight: 300;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--turquoise); }
.form-field textarea { resize: vertical; min-height: 70px; }

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin-top: 0.4rem;
}
.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.86rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  cursor: pointer;
  font-weight: 300;
  margin-bottom: 0;
}
.checkbox-grid input[type="checkbox"] { accent-color: var(--turquoise); width: 16px; height: 16px; }

.form-note {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--ink-mute);
  font-style: italic;
  text-align: center;
}
.booking-form .btn { display: block; width: 100%; margin-top: 1rem; }

/* ============ CALENDAR ============ */
.calendar-wrap { margin-bottom: 1.2rem; }
.calendar-wrap > label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.calendar { border: 1px solid var(--line); padding: 1.1rem; background: var(--turquoise-mist); }
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.8rem; }
.cal-title {
  font-family: var(--serif);
  font-size: 1.08rem;
  color: var(--turquoise-deep);
  letter-spacing: 0.04em;
  text-transform: capitalize;
}
.cal-nav {
  width: 32px; height: 32px;
  border: 1px solid var(--line-gold);
  color: var(--turquoise);
  font-size: 1.3rem;
  line-height: 1;
  transition: all 0.2s;
}
.cal-nav:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.cal-weekdays, .cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-weekdays span {
  text-align: center;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 0.4rem 0;
}
.cal-days { margin-top: 3px; }
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
}
.cal-day.empty { cursor: default; background: transparent; }
.cal-day.past { color: var(--ink-mute); cursor: not-allowed; background: transparent; opacity: 0.4; }
.cal-day.partial::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--gold);
}
.cal-day.booked { color: var(--ink-mute); cursor: not-allowed; text-decoration: line-through; opacity: 0.55; }
.cal-day.available:hover { background: var(--turquoise-pale); color: var(--turquoise-deep); }
.cal-day.selected { background: var(--turquoise) !important; color: #fff !important; border-color: var(--turquoise); }
.cal-day.today::before {
  content: ''; position: absolute; top: 4px; right: 4px;
  width: 4px; height: 4px; border-radius: 50%; background: var(--turquoise);
}
.cal-legend {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
  font-size: 0.73rem;
  color: var(--ink-mute);
}
.cal-legend span { display: flex; align-items: center; gap: 0.35rem; }
.cal-legend i { display: inline-block; width: 9px; height: 9px; border-radius: 50%; }
.dot-avail { background: var(--white); border: 1px solid var(--line-strong); }
.dot-partial { background: var(--gold); }
.dot-booked { background: var(--ink-mute); }

/* ============ INQUIRY ============ */
.inquiry { padding: var(--space-xl) 0; background: var(--turquoise-mist); }
.inquiry .container { text-align: center; }
.inquiry .section-eyebrow { text-align: center; }
.inquiry-form {
  max-width: 680px;
  margin: 1.75rem auto 0;
  text-align: left;
  background: var(--white);
  padding: 2.25rem;
  border: 1px solid var(--line);
  border-top: 3px solid var(--turquoise);
}
.inquiry-form .btn { display: block; width: 100%; margin-top: 1rem; }

/* ============ FAQ ============ */
.faq { padding: var(--space-xl) 0; }
.faq .container { text-align: center; }
.faq .section-eyebrow { text-align: center; }
.faq-list { max-width: 800px; margin: 1.75rem auto 0; text-align: left; }
.faq-item { border-bottom: 1px solid var(--line); padding: 1rem 0; }
.faq-item summary {
  font-family: var(--serif);
  font-size: 1.08rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
  font-weight: 400;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.3s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item[open] summary { color: var(--turquoise); }
.faq-item p {
  margin-top: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 0.94rem;
  padding-right: 2rem;
}

/* ============ CONTACT ============ */
.contact { padding: var(--space-xl) 0; }
.contact .container { text-align: center; }
.contact .section-eyebrow { text-align: center; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 1.75rem auto 0;
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  transition: all 0.3s;
}
.contact-card:not(.contact-static) { cursor: pointer; }
.contact-card:not(.contact-static):hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(44, 140, 135, 0.1);
}
.contact-icon {
  color: var(--turquoise);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-label {
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.4rem;
}
.contact-value {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 500;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--turquoise-deep);
  color: rgba(255, 255, 255, 0.82);
  padding: var(--space-lg) 0 0;
  margin-top: var(--space-lg);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .brand-name { color: #fff; font-size: 1.5rem; }
.footer-brand .brand-sub { color: var(--gold); }
.footer-tag {
  margin-top: 0.85rem;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  font-family: var(--serif);
  max-width: 30ch;
}
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.footer-cols h4 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.94rem;
  color: var(--gold);
  margin-bottom: 0.7rem;
  font-weight: 400;
}
.footer-cols a {
  display: block;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.22rem 0;
  transition: color 0.2s;
}
.footer-cols a:hover { color: var(--gold); }
.footer-bottom {
  text-align: center;
  padding: 1rem 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.05em;
}

/* ============ WHATSAPP FLOATING ============ */
.wa-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s;
}
.wa-float:hover { transform: scale(1.08); }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .yacht-grid { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 130px; }
  .g-3x2 { grid-column: span 4; }
  .addon-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.75rem; }
}

@media (max-width: 720px) {
  :root { --container-pad: 1.25rem; --space-2xl: 4rem; --space-xl: 3rem; --space-lg: 2.25rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 80%; max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.2rem;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    border-left: 1px solid var(--line);
    z-index: 101;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links > a { font-size: 1rem; }
  .lang-switch { padding: 1rem 0 0; border-left: none; border-top: 1px solid var(--line); width: 100%; }
  .nav.menu-open .nav-toggle span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
  .nav.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.menu-open .nav-toggle span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

  .hero-title { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .hero-cta { flex-direction: column; gap: 0.7rem; }
  .hero-cta .btn { width: 100%; }
  .yacht-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-row .form-field { margin-bottom: 1.2rem; }
  .price-grid { grid-template-columns: 1fr; }
  .specs { grid-template-columns: 1fr; }
  .specs > div:nth-child(odd) { border-right: none; padding-right: 0; }
  .specs > div:nth-child(even) { padding-left: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 120px; }
  .g-2x2, .g-3x2, .g-2x1 { grid-column: span 2; }
  .addon-grid { grid-template-columns: 1fr 1fr; gap: 0.7rem; }
  .footer-cols { grid-template-columns: 1fr; }
  .booking-form, .inquiry-form { padding: 1.5rem; }
  .pricing-tabs { flex-direction: column; }
  .price-tab { padding: 0.65rem 1rem; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .yacht-mini-gallery { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   MULTI-PAGE ADDITIONS — yacht pages, discover, etc.
   ============================================ */

/* Active nav link */
.nav-links > a.active { color: var(--turquoise); }
.nav-links > a.active::after { width: 100%; }

/* Breadcrumb */
.breadcrumb {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 400;
}
.breadcrumb a {
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 0.5rem; color: rgba(255,255,255,0.5); }

/* ============ YACHT HERO (smaller hero for individual yacht pages) ============ */
.yacht-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.yacht-hero-image { position: absolute; inset: 0; z-index: 1; }
.yacht-hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 16s ease-out forwards;
}
.yacht-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(21,79,76,0.4) 0%, transparent 40%, rgba(0,0,0,0.7) 100%);
}
.yacht-hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  padding-bottom: 3rem;
  padding-top: 7rem;
}
.yacht-hero-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.yacht-hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
  margin-bottom: 0.6rem;
}
.yacht-hero-edition {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

/* ============ YACHT INTRO + SPECS ============ */
.yacht-intro {
  padding: var(--space-xl) 0;
  background: var(--white);
}
.yacht-intro-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}
.yacht-intro-text .section-title {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin-bottom: 1.25rem;
  max-width: none;
}
.yacht-intro-text p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.yacht-intro-specs {
  background: var(--turquoise-mist);
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
}
.specs-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--turquoise-deep);
  margin-bottom: 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--line-gold);
}
.specs-page > div { padding: 0.6rem 0; }
.yacht-book-cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 1.5rem;
}

/* ============ YACHT PAGE GALLERY ============ */
.yacht-page-gallery {
  padding: var(--space-xl) 0;
  background: var(--cream);
}
.yp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  max-width: var(--container-max);
  margin: 1.5rem auto 0;
  padding: 0 var(--container-pad);
}
.yp-gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.yp-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2,0.6,0.2,1);
}
.yp-gallery-item:hover img { transform: scale(1.06); }
.yp-gallery-item:first-child { grid-column: span 2; grid-row: span 2; }

/* ============ YACHT PAGE PRICING ============ */
.yacht-page-pricing {
  padding: var(--space-xl) 0;
  background: var(--turquoise-mist);
}
.yacht-page-pricing .container { text-align: center; }
.yacht-cta-block {
  text-align: center;
  margin-top: 2rem;
}
.yacht-cta-block .btn { display: inline-block; }

/* ============ OTHER YACHTS (bottom of yacht page) ============ */
.yacht-other-vessels {
  padding: var(--space-xl) 0;
  background: var(--white);
}
.yacht-other-vessels .container { text-align: center; }
.other-yachts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 2rem auto 0;
}
.other-yacht-card {
  display: block;
  background: var(--cream);
  border: 1px solid var(--line);
  transition: all 0.3s;
  text-decoration: none;
}
.other-yacht-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(44,140,135,0.12);
}
.other-yacht-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.other-yacht-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.other-yacht-card:hover .other-yacht-image img { transform: scale(1.05); }
.other-yacht-info { padding: 1rem 1.25rem; text-align: left; }
.other-yacht-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.78rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.2rem;
}
.other-yacht-info h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 0.15rem;
}
.other-yacht-edition {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ============ HOME: linking yacht cards (replaces collapsible) ============ */
.yacht-link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.yacht-link-card {
  background: var(--white);
  border: 1px solid var(--line);
  transition: all 0.3s;
  display: block;
  overflow: hidden;
  text-decoration: none;
}
.yacht-link-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(44,140,135,0.15);
  transform: translateY(-2px);
}
.yacht-link-image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.yacht-link-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2,0.6,0.2,1);
}
.yacht-link-card:hover .yacht-link-image img { transform: scale(1.05); }
.yacht-link-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(21,79,76,0.3));
  pointer-events: none;
}
.yacht-link-info {
  padding: 1.4rem 1.5rem;
  border-top: 1px solid var(--line-gold);
  position: relative;
}
.yacht-link-arrow {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-top: 0.7rem;
  font-weight: 500;
  transition: color 0.3s, padding-left 0.3s;
}
.yacht-link-card:hover .yacht-link-arrow {
  color: var(--gold);
  padding-left: 0.3rem;
}

/* "Discover more" banner */
.fleet-more {
  margin-top: 2rem;
  padding: 0 var(--container-pad);
}
.discover-more-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.85rem 2.2rem;
  background: linear-gradient(135deg, var(--turquoise-deep) 0%, var(--turquoise) 100%);
  color: #fff;
  border: 1px solid var(--turquoise-dark);
  transition: all 0.3s;
  max-width: var(--container-max);
  margin: 0 auto;
  text-decoration: none;
}
.discover-more-banner:hover {
  box-shadow: 0 12px 36px rgba(44,140,135,0.3);
  transform: translateY(-2px);
}
.discover-more-text { display: flex; flex-direction: column; gap: 0.3rem; }
.discover-more-banner .section-eyebrow {
  color: var(--gold);
  margin: 0;
  font-size: 0.88rem;
}
.discover-more-title {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.01em;
}
.discover-more-sub {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
  font-weight: 300;
}
.discover-more-arrow {
  font-size: 1.6rem;
  color: var(--gold);
  transition: transform 0.3s;
}
.discover-more-banner:hover .discover-more-arrow { transform: translateX(6px); }

/* ============ INNER HERO (for discover-more page) ============ */
.inner-hero {
  position: relative;
  height: 50vh;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-hero-image { position: absolute; inset: 0; z-index: 1; }
.inner-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.inner-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(21,79,76,0.6), rgba(0,0,0,0.65));
}
.inner-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  padding-top: 5rem;
}
.inner-hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #fff;
  text-shadow: 0 4px 24px rgba(0,0,0,0.6);
  margin-bottom: 0.8rem;
  line-height: 1.1;
}
.inner-hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

/* ============ DISCOVER MORE PAGE ============ */
.discover-intro {
  padding: var(--space-xl) 0 var(--space);
  text-align: center;
}
.discover-section { padding: var(--space) 0 var(--space-xl); }
.discover-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.discover-card {
  background: var(--white);
  border: 1px solid var(--line);
  transition: box-shadow 0.3s, border-color 0.3s;
  overflow: hidden;
}
.discover-card[open] { border-color: var(--gold); box-shadow: 0 12px 36px rgba(44,140,135,0.12); }
.discover-card:hover { box-shadow: 0 8px 24px rgba(44,140,135,0.08); }
.discover-summary {
  cursor: pointer;
  list-style: none;
  outline: none;
  display: flex;
  flex-direction: column;
}
.discover-summary::-webkit-details-marker { display: none; }
.discover-image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--turquoise-pale) 0%, var(--turquoise-mist) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.discover-image img { width: 100%; height: 100%; object-fit: cover; }
.discover-placeholder {
  background: linear-gradient(135deg, var(--turquoise-pale) 0%, var(--turquoise-mist) 100%);
}
.placeholder-text {
  font-family: var(--serif);
  font-style: italic;
  color: var(--turquoise);
  font-size: 1rem;
  letter-spacing: 0.1em;
  opacity: 0.5;
}
.discover-info {
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line-gold);
}
.discover-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.78rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.2rem;
}
.discover-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 0.12rem;
}
.discover-tagline {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 0.86rem;
}
.discover-card[open] .yacht-chevron {
  transform: rotate(180deg);
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.discover-body {
  padding: 0 1.5rem 1.5rem;
}
.discover-pending {
  color: var(--ink-soft);
  font-size: 0.94rem;
  margin-bottom: 1rem;
  padding-top: 0.5rem;
}
.discover-cta {
  padding: var(--space-xl) 0;
  background: var(--turquoise-mist);
  text-align: center;
}
.discover-cta .btn { display: inline-block; margin-top: 1rem; }

@media (max-width: 980px) {
  .yacht-intro-inner { grid-template-columns: 1fr; }
  .other-yachts-grid { grid-template-columns: repeat(2, 1fr); }
  .yp-gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .yp-gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
  .yacht-link-grid { grid-template-columns: 1fr 1fr; }
  .discover-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .other-yachts-grid { grid-template-columns: 1fr; }
  .yp-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .yp-gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
  .yacht-link-grid { grid-template-columns: 1fr; }
  .yacht-hero { height: 60vh; min-height: 420px; }
  .yacht-hero-content { padding-bottom: 2rem; padding-top: 5.5rem; }
  .discover-more-banner { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 1.5rem; }
  .discover-more-arrow { align-self: flex-end; }
  .inner-hero-content { padding-top: 4rem; }
}

/* ============ DISCOVER MORE DETAILS ============ */
.discover-description {
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0.25rem 0 1rem;
}
.discover-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
  margin: 0 0 1rem;
}
.discover-specs div {
  background: var(--turquoise-mist);
  padding: 0.7rem 0.75rem;
  border: 1px solid var(--line);
}
.discover-specs dt {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.discover-specs dd {
  font-family: var(--serif);
  font-size: 0.98rem;
  color: var(--ink);
}
.discover-gallery-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin: 0 0 1.1rem;
}
.discover-gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--turquoise-mist);
}
.discover-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.discover-bottom-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1.2rem;
}
.discover-included h4,
.discover-prices h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.55rem;
}
.discover-included ul {
  padding-left: 1.1rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}
.discover-included li { margin-bottom: 0.35rem; }
.discover-price-grid {
  display: grid;
  gap: 0.45rem;
}
.discover-price-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line-gold);
  background: #fff;
}
.discover-price-card span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}
.discover-price-card strong {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--turquoise-dark);
  white-space: nowrap;
}
.discover-note {
  color: var(--ink-soft);
  opacity: 0.78;
  font-size: 0.78rem;
  line-height: 1.45;
  margin-top: 0.55rem;
}

@media (max-width: 720px) {
  .discover-specs,
  .discover-bottom-grid { grid-template-columns: 1fr; }
  .discover-gallery-mini { grid-template-columns: 1fr 1fr; }
  .discover-gallery-item:first-child { grid-column: span 2; }
}


/* Page hero simple */
.page-hero-simple { padding: calc(var(--nav-h) + 3rem) 0 3rem; background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0)); }
.gallery-jump-links { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; margin-top: 1.8rem; }
.gallery-jump-links a { padding: .75rem 1rem; border: 1px solid var(--line); border-radius: 999px; color: var(--text); background: var(--white); transition: all .25s ease; }
.gallery-jump-links a:hover { border-color: var(--turquoise); color: var(--turquoise); transform: translateY(-2px); }

/* Home info hub */
.info-hub { padding: var(--space-xl) 0; background: var(--sand); }
.info-link-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.5rem; margin-top: 2rem; }
.info-link-card { display: block; padding: 2rem; background: var(--white); border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--soft-shadow); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.info-link-card:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(15,23,42,.08); border-color: rgba(0,168,181,.28); }
.info-link-kicker { display: inline-block; text-transform: uppercase; letter-spacing: .18em; font-size: .74rem; color: var(--muted); margin-bottom: .8rem; }
.info-link-card h3 { margin-bottom: .65rem; font-size: 1.8rem; }
.info-link-card p { color: var(--muted); max-width: 42ch; }
.info-link-arrow { display: inline-block; margin-top: 1rem; color: var(--turquoise); font-weight: 600; }

/* Gallery page */
.gallery-page-section { padding: 0 0 var(--space-xl); }
.gallery-page-grid { margin-top: 1.75rem; padding-inline: min(4vw, 2rem); }
.faq-page { padding-top: 0; }

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


/* Gallery page premium override */
.page-gallery .page-hero-simple,
.page-faq .page-hero-simple,
.gallery-page-section { background: var(--cream); }
.page-gallery .page-hero-simple { padding-bottom: 2rem; }
.gallery-page-section { padding: 2rem 0 var(--space-xl); }
.gallery-page-grid {
  max-width: min(1180px, calc(100% - 2.5rem));
  margin-top: 2rem;
  padding: 1rem;
  gap: 12px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 18px 50px rgba(15,23,42,.06);
}
.gallery-page-grid .yp-gallery-item {
  border-radius: 20px;
  background: var(--sand);
}
.gallery-page-grid .yp-gallery-item img { display: block; }
@media (max-width: 720px) {
  .gallery-page-grid { max-width: calc(100% - 1.5rem); padding: .65rem; gap: 8px; border-radius: 22px; }
  .gallery-page-grid .yp-gallery-item { border-radius: 14px; }
}


/* Gallery page clean card layout */
.page-gallery .gallery-page-section {
  padding: 3rem 0 var(--space-xl);
  background: var(--cream);
}
.page-gallery .gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: min(1180px, calc(100% - 2.5rem));
  margin: 2rem auto 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.page-gallery .gallery-page-grid .yp-gallery-item,
.page-gallery .gallery-page-grid .yp-gallery-item:first-child {
  grid-column: auto;
  grid-row: auto;
  aspect-ratio: 4 / 3;
  border-radius: 26px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(15, 23, 42, .06);
}
.page-gallery .gallery-page-grid .yp-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 980px) {
  .page-gallery .gallery-page-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .page-gallery .gallery-page-grid { grid-template-columns: 1fr; max-width: calc(100% - 1.5rem); gap: .9rem; }
  .page-gallery .gallery-page-grid .yp-gallery-item,
  .page-gallery .gallery-page-grid .yp-gallery-item:first-child { border-radius: 20px; }
}

/* Calendar button reset for generated day cells */
.cal-day {
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  padding: 0;
  line-height: 1;
}
.cal-day:disabled {
  pointer-events: none;
}


/* ============ DISCOVER MORE MOBILE POLISH ============ */
.discover-summary::marker,
.discover-summary::-webkit-details-marker {
  display: none;
  content: "";
}

@media (max-width: 820px) {
  .discover-intro {
    padding: 2.8rem 0 1.2rem;
  }
  .discover-grid {
    gap: 1rem;
  }
  .discover-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(16, 45, 49, 0.06);
  }
  .discover-summary {
    background: #fff;
  }
  .discover-image {
    aspect-ratio: 16/10;
  }
  .discover-info {
    padding: 1rem 1rem 1.05rem;
    align-items: flex-start;
  }
  .discover-name {
    font-size: 1.65rem;
    line-height: 1.05;
    margin-bottom: 0.25rem;
  }
  .discover-tagline {
    font-size: 0.95rem;
    line-height: 1.45;
    display: block;
  }
  .discover-body {
    padding: 0 1rem 1rem;
  }
  .discover-description {
    font-size: 0.95rem;
    line-height: 1.75;
  }
  .discover-specs {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.6rem !important;
    margin: 0 0 1rem;
  }
  .discover-specs div {
    min-width: 0;
    padding: 0.8rem 0.85rem;
    border-radius: 16px;
    background: #f7fbfb;
  }
  .discover-specs dd {
    font-size: 1.05rem;
    line-height: 1.25;
  }
  .discover-gallery-mini {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.6rem !important;
    margin: 0 0 1rem;
  }
  .discover-gallery-item,
  .discover-gallery-item:first-child {
    grid-column: auto !important;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
  }
  .discover-gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .discover-bottom-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.85rem;
    margin-bottom: 1rem;
  }
  .discover-included,
  .discover-prices {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fbfbf9;
    padding: 0.95rem 1rem;
  }
  .discover-included ul {
    margin: 0;
    padding-left: 1rem;
  }
  .discover-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }
  .discover-price-card {
    border-radius: 16px;
    min-width: 0;
  }
  .yacht-cta {
    width: 100%;
    text-align: center;
    border-radius: 16px;
  }
}

@media (max-width: 560px) {
  .discover-info {
    padding: 0.95rem;
  }
  .discover-name {
    font-size: 1.45rem;
  }
  .discover-num {
    font-size: 0.76rem;
  }
  .discover-tagline {
    font-size: 0.9rem;
  }
  .discover-specs {
    grid-template-columns: 1fr 1fr !important;
  }
  .discover-gallery-mini {
    grid-template-columns: 1fr 1fr !important;
  }
}


/* ============ IBIZA PRICING CLEAN CARDS ============ */
.ibiza-rate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 760px;
  margin: 2.5rem auto 0;
}
.ibiza-rate-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 2.4rem 1.8rem;
  text-align: center;
  box-shadow: 0 18px 45px rgba(16, 45, 49, 0.06);
}
.ibiza-rate-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.8rem;
}
.ibiza-rate-price {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1;
  color: var(--turquoise-deep);
  font-weight: 500;
}
.ibiza-rate-note {
  display: block;
  margin-top: 0.75rem;
  color: var(--ink-mute);
  font-size: 0.95rem;
}
@media (max-width: 700px) {
  .ibiza-rate-grid { grid-template-columns: 1fr; gap: 1rem; margin-top: 1.8rem; }
  .ibiza-rate-card { border-radius: 22px; padding: 2rem 1.4rem; }
}
