/* ==========================================================================
   CAPTAIN JACK WATER TOURS — MINIMALIST NATURAL LUXURY DESIGN SYSTEM
   Boutique maritime aesthetic inspired by architectural editorial design
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

:root {
  /* Natural Coastal & Sand Palette */
  --bg-main: #fcfbfa;
  --bg-sand: #f5f2ed;
  --bg-sand-light: #faf8f5;
  --bg-white: #ffffff;
  --bg-charcoal: #141920;
  --bg-charcoal-card: #1b222c;
  
  --text-dark: #12171e;
  --text-main: #2b333e;
  --text-muted: #67717e;
  --text-light: #8e98a4;
  --text-white: #fcfbfa;
  
  /* Earth & Warm Accent Colors (Subtle & Matte, No Flashy Gradients) */
  --accent-brass: #9c8260;
  --accent-brass-hover: #836d4f;
  --accent-linen: #d9d1c5;
  --border-subtle: #e8e3da;
  --border-light: #ece7df;
  --border-dark: #2a3340;
  
  /* Refined Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Spacing & Structure */
  --max-width: 1200px;
  --max-width-narrow: 860px;
  --header-height: 80px;
  
  --radius-subtle: 4px;
  --radius-md: 8px;
  
  --shadow-natural: 0 4px 20px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.07);
  
  --transition: 0.25s ease;
}

/* Global Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* Containers */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
}

.container-narrow {
  max-width: var(--max-width-narrow);
}

/* ==========================================================================
   MINIMALIST HEADER & NAVIGATION
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: rgba(252, 251, 250, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background-color var(--transition), border-color var(--transition);
}

.site-header.scrolled {
  background-color: #ffffff;
  border-bottom-color: #ded8ce;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo .helm-icon {
  width: 28px;
  height: 28px;
  color: var(--text-dark);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 0;
  position: relative;
  transition: color var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-dark);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--text-dark);
}

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

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-main);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.header-phone svg {
  width: 15px;
  height: 15px;
  color: var(--accent-brass);
}

.header-phone:hover {
  color: var(--text-dark);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  width: 38px;
  height: 38px;
  cursor: pointer;
  padding: 6px;
  align-items: center;
  justify-content: center;
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

/* ==========================================================================
   BUTTONS & UNDERSTATED ACCENTS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-subtle);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--text-dark);
  color: #ffffff;
  border-color: var(--text-dark);
}

.btn-primary:hover {
  background-color: #2a3340;
  border-color: #2a3340;
  color: #ffffff;
}

.btn-outline {
  background-color: transparent;
  color: var(--text-dark);
  border-color: var(--border-subtle);
}

.btn-outline:hover {
  border-color: var(--text-dark);
  background-color: #ffffff;
}

.btn-outline-white {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.78rem;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 0.88rem;
}

.eyebrow-tag {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-brass);
  display: inline-block;
  margin-bottom: 12px;
}

/* ==========================================================================
   HERO SECTIONS (Natural & Restrained)
   ========================================================================== */

/* Home Hero */
.hero-home {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background-color: var(--bg-sand);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: brightness(0.68) contrast(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 23, 30, 0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 36px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Understated Highlights Strip */
.hero-features-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
}

.feature-strip-item {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-strip-item::before {
  content: '•';
  color: var(--accent-brass);
  font-size: 1.2rem;
  line-height: 1;
}

/* Subpage Clean Header */
.page-intro-header {
  background-color: var(--bg-sand);
  padding: 64px 0 54px;
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}

.page-intro-header .breadcrumbs {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.page-intro-header .page-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 14px;
}

.page-intro-header .page-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ==========================================================================
   SECTIONS & EDITORIAL CONTENT
   ========================================================================== */

.section {
  padding: 88px 0;
}

.section-sand {
  background-color: var(--bg-sand);
}

.section-white {
  background-color: var(--bg-white);
}

.section-charcoal {
  background-color: var(--bg-charcoal);
  color: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-charcoal .section-title {
  color: #ffffff;
}

.section-desc {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.section-charcoal .section-desc {
  color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
   STORY & EDITORIAL 2-COLUMN (Home & About)
   ========================================================================== */

.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-media img {
  width: 100%;
  border-radius: var(--radius-subtle);
  box-shadow: var(--shadow-natural);
}

.story-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 22px;
}

.story-copy p {
  color: var(--text-main);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.story-points {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.story-point-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-main);
}

.story-point-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent-brass);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ==========================================================================
   NATURAL PHOTO SHOWCASE ("No work - Just play")
   ========================================================================== */

.photo-grid-natural {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
}

.photo-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-subtle);
  background-color: var(--bg-sand);
  cursor: pointer;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.photo-frame:hover img {
  transform: scale(1.025);
}

.photo-caption-bar {
  padding: 12px 16px;
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-top: none;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ==========================================================================
   CLIENT REVIEWS (Minimalist Editorial Cards)
   ========================================================================== */

.reviews-grid-minimal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card-minimal {
  background-color: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-subtle);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-natural);
}

.review-stars {
  display: flex;
  gap: 4px;
  color: var(--accent-brass);
  margin-bottom: 20px;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.review-card-minimal blockquote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-weight: 400;
  font-style: italic;
  flex-grow: 1;
}

.review-card-minimal .reviewer-meta {
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}

.reviewer-meta h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.reviewer-meta span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   RESERVATION FORM (Clean & Boutique)
   ========================================================================== */

.booking-panel {
  background-color: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-subtle);
  box-shadow: var(--shadow-natural);
  max-width: 860px;
  margin: 0 auto;
  overflow: hidden;
}

.booking-panel-header {
  padding: 28px 36px;
  border-bottom: 1px solid var(--border-subtle);
  background-color: var(--bg-sand-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.booking-panel-header h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.booking-panel-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.direct-contact-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-brass);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.direct-contact-link:hover {
  color: var(--accent-brass-hover);
  text-decoration: underline;
}

.booking-form-natural {
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row.single-col {
  grid-template-columns: 1fr;
}

.input-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  text-transform: uppercase;
}

.input-label .req {
  color: #c94a4a;
}

.text-input,
.select-input,
.textarea-input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-subtle);
  background-color: var(--bg-main);
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition), background-color var(--transition);
}

.text-input:focus,
.select-input:focus,
.textarea-input:focus {
  border-color: var(--accent-brass);
  background-color: #ffffff;
}

.textarea-input {
  min-height: 100px;
  resize: vertical;
}

/* Time segment tabs */
.time-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.time-tab-label {
  padding: 10px 14px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-subtle);
  background-color: var(--bg-main);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.time-tab-label input[type="radio"] {
  display: none;
}

.time-tab-label:hover {
  border-color: var(--accent-brass);
  color: var(--text-dark);
}

.time-tab-label:has(input[type="radio"]:checked) {
  background-color: var(--text-dark);
  color: #ffffff;
  border-color: var(--text-dark);
}

.form-actions-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
  gap: 16px;
}

.guarantee-note {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   OUR BOAT PAGE (Clean Specs & Gallery)
   ========================================================================== */

.boat-highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.boat-specs-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 36px 0;
  padding: 24px;
  background-color: var(--bg-sand-light);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-subtle);
}

.spec-cell {
  text-align: center;
}

.spec-number {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--text-dark);
  line-height: 1.1;
}

.spec-desc {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 4px;
}

.zones-minimal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.zone-box {
  background-color: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-subtle);
  padding: 32px 26px;
}

.zone-box h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.zone-box p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Natural Gallery Grid */
.gallery-natural {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-subtle);
  height: 280px;
  cursor: pointer;
  background-color: var(--bg-sand);
}

.gallery-tile.vertical {
  grid-row: span 2;
  height: 580px;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-tile:hover img {
  transform: scale(1.03);
}

/* ==========================================================================
   ABOUT PAGE (Values & Pillars)
   ========================================================================== */

.values-clean-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.value-box {
  background-color: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-subtle);
  padding: 40px 34px;
}

.value-box h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.value-box p {
  color: var(--text-main);
  line-height: 1.8;
  font-size: 1rem;
}

.pillars-clean-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.pillar-clean-box {
  padding: 28px 22px;
  background-color: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-subtle);
  text-align: center;
}

.pillar-clean-box h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.pillar-clean-box p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   FAQ ACCORDION (Reserve Now)
   ========================================================================== */

.faq-clean-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-row {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-btn {
  width: 100%;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.22rem;
  color: var(--text-dark);
  cursor: pointer;
}

.faq-icon {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  transition: transform var(--transition);
}

.faq-row.active .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-main);
  font-size: 0.98rem;
  line-height: 1.75;
}

.faq-row.active .faq-content {
  max-height: 240px;
  padding-bottom: 20px;
}

/* ==========================================================================
   MINIMALIST FOOTER
   ========================================================================== */

.site-footer {
  background-color: var(--bg-sand);
  border-top: 1px solid var(--border-subtle);
  padding: 72px 0 32px;
  color: var(--text-main);
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-weight: 500;
}

.footer-col p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--text-dark);
}

.map-embed-wrapper {
  height: 220px;
  border-radius: var(--radius-subtle);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  position: relative;
  background-color: var(--bg-sand-light);
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: auto;
}

/* ==========================================================================
   DEDICATED DEPARTURE & LARGE MAP SECTION (Reserve Now)
   ========================================================================== */

.departure-section {
  padding: 88px 0;
  background-color: #ffffff;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.departure-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 52px;
  align-items: start;
}

.departure-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 2.7rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.departure-info p.lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.departure-details-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0 36px;
}

.departure-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.departure-detail-icon {
  width: 22px;
  height: 22px;
  color: var(--accent-brass);
  flex-shrink: 0;
  margin-top: 3px;
}

.departure-detail-text h4 {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.departure-detail-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.large-map-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.large-map-wrapper {
  height: 460px;
  border-radius: var(--radius-subtle);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-natural);
  position: relative;
  background-color: var(--bg-sand);
}

.large-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: auto;
}

.map-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 10px;
}

.map-action-bar a {
  color: var(--text-dark);
  text-decoration: underline;
  font-weight: 500;
}

.map-action-bar a:hover {
  color: var(--accent-brass);
}


.footer-copyright {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-light);
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   MODAL DIALOGS (Lightbox & Confirmation)
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(18, 23, 30, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-subtle);
}

.modal-close-btn {
  position: absolute;
  top: -42px;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
}

.lightbox-prev { left: -56px; }
.lightbox-next { right: -56px; }

.dialog-card {
  background: #ffffff;
  border-radius: var(--radius-subtle);
  padding: 40px 36px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  color: var(--text-dark);
}

.dialog-card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.dialog-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

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

@media (max-width: 900px) {
  .story-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .photo-grid-natural {
    grid-template-columns: 1fr;
  }

  .reviews-grid-minimal {
    grid-template-columns: 1fr;
  }

  .gallery-natural {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-tile.vertical {
    grid-row: auto;
    height: 320px;
  }

  .boat-highlight-grid {
    grid-template-columns: 1fr;
  }

  .zones-minimal-grid {
    grid-template-columns: 1fr;
  }

  .values-clean-grid {
    grid-template-columns: 1fr;
  }

  .pillars-clean-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .departure-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .large-map-wrapper {
    height: 380px;
  }

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .header-actions .header-phone {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-subtle);
    padding: 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .booking-form-natural {
    padding: 24px 20px;
  }

  .booking-panel-header {
    padding: 20px;
  }

  .hero-features-strip {
    gap: 16px;
  }
}
