/* ============================================
   OLDS PONTOON RENTAL & STORAGE
   Production Stylesheet
   ============================================ */

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ── VARIABLES ── */
:root {
  --cabin-dark: #1C1510;
  --cabin: #2E231A;
  --cabin-mid: #3D3028;
  --wood: #6B4E35;
  --wood-light: #8C6D4F;
  --wood-pale: #A68B6B;
  --bark: #4A3726;
  --cream: #F4EDE3;
  --cream-dark: #E8DFD2;
  --parchment: #FBF8F3;
  --blue: #1e45fa;
  --blue-hover: #3358ff;
  --blue-muted: rgba(30,69,250,0.10);
  --blue-glow: rgba(30,69,250,0.25);
  --green: #2A6B3A;
  --green-muted: rgba(42,107,58,0.1);
  --text-dark: #1C1510;
  --text-medium: #5C4E40;
  --text-light: #8A7B6B;
  --white: #FFFDF9;
}

body {
  font-family: 'Cabin', sans-serif;
  color: var(--text-dark);
  background: var(--parchment);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Bitter', serif; }

img { max-width: 100%; height: auto; display: block; }

a { transition: all 0.2s; }


/* ── WOOD GRAIN TEXTURE ── */
.wood-texture { position: relative; }
.wood-texture::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(92deg, transparent 0px, transparent 3px, rgba(0,0,0,0.02) 3px, rgba(0,0,0,0.02) 4px),
    repeating-linear-gradient(88deg, transparent 0px, transparent 7px, rgba(0,0,0,0.015) 7px, rgba(0,0,0,0.015) 8px);
}


/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--cabin-dark);
  color: var(--cream);
  padding: 9px 0;
  font-size: 13px;
  letter-spacing: 0.3px;
  border-bottom: 2px solid var(--wood);
}
.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a { color: #93b4ff; text-decoration: none; font-weight: 600; }
.top-bar a:hover { color: #b3ccff; }
.top-bar .location { opacity: 0.7; font-size: 12px; }


/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  background: var(--cabin);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  box-shadow: 0 2px 12px var(--blue-glow);
}
.logo-img {
  height: 75px;
  width: auto;
}
.logo-text .name {
  font-family: 'Bitter', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
}
.logo-text .tagline {
  font-size: 11px;
  color: var(--wood-pale);
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

/* Nav links */
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  color: var(--cream-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 9px 18px;
  border-radius: 6px;
  transition: all 0.2s;
}
.nav-links a:hover { background: rgba(255,255,255,0.07); color: white; }
.nav-links a.active { background: rgba(255,255,255,0.1); color: white; }
.nav-links .cta-nav {
  background: var(--blue);
  color: white !important;
  margin-left: 12px;
  box-shadow: 0 2px 12px var(--blue-glow);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-links .cta-nav:hover { background: var(--blue-hover); }

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 28px;
  cursor: pointer;
  padding: 8px;
}


/* ============================================
   BUTTONS (shared)
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  font-family: 'Cabin', sans-serif;
}
.btn-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 4px 20px var(--blue-glow);
}
.btn-primary:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px var(--blue-glow);
}
.btn-wood {
  background: var(--wood);
  color: var(--cream);
}
.btn-wood:hover {
  background: var(--wood-light);
  transform: translateY(-2px);
}


/* ============================================
   SECTION SHARED
   ============================================ */
.section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 38px; color: var(--cabin); margin-bottom: 6px; }
.section-header .rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 18px 0;
}
.section-header .rule span {
  width: 40px;
  height: 2px;
  background: var(--wood-pale);
  border-radius: 1px;
}
.section-header .rule .diamond {
  width: 8px;
  height: 8px;
  background: var(--blue);
  transform: rotate(45deg);
}
.section-header p {
  font-size: 17px;
  color: var(--text-medium);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================
   HERO (homepage)
   ============================================ */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cabin-dark);
}

/* Slideshow layers */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
}

/* Dark overlay + treeline */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(28,21,16,0.88) 0%,
      rgba(28,21,16,0.72) 40%,
      rgba(10,25,60,0.65) 75%,
      rgba(30,69,250,0.15) 100%
    );
}
.hero-overlay::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: url('/img/treeline.png') center bottom / auto 140px repeat-x;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 140px;
  color: var(--cream);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--wood-pale);
  padding: 7px 18px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--blue-glow);
}
.hero h1 {
  font-size: 54px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 620px;
  color: white;
}
.hero h1 .accent {
  color: var(--blue);
  text-shadow: 0 0 30px var(--blue-glow);
}
.hero p {
  font-size: 19px;
  opacity: 0.75;
  max-width: 500px;
  line-height: 1.65;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 50px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat .number {
  font-family: 'Bitter', serif;
  font-size: 34px;
  font-weight: 700;
  color: white;
}
.hero-stat .label {
  font-size: 13px;
  opacity: 0.5;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   BOAT FLEET GRID (homepage)
   ============================================ */
.fleet-section {
  background: var(--cream);
  position: relative;
}
.fleet-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(90deg, transparent 0px, transparent 199px, rgba(0,0,0,0.03) 199px, rgba(0,0,0,0.03) 200px);
}
.boat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  position: relative;
}
.boat-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.3s;
  text-decoration: none;
  color: var(--text-dark);
  display: block;
}
.boat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
  border-color: var(--blue);
}
.boat-card-img {
  height: 210px;
  position: relative;
  overflow: hidden;
}
.boat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.boat-card-img .size-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--cabin);
  color: var(--cream);
  padding: 4px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.boat-card-info { padding: 20px 22px; }
.boat-card-info h3 { font-size: 21px; color: var(--cabin); margin-bottom: 6px; }
.boat-card-info .boat-desc {
  color: var(--text-medium);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 16px;
}
.boat-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--cream-dark);
}
.boat-price { font-size: 14px; color: var(--text-medium); font-weight: 600; }
.boat-price strong {
  font-family: 'Bitter', serif;
  font-size: 19px;
  color: var(--cabin);
}
.boat-link {
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.boat-link:hover { gap: 8px; }
.fleet-note {
  text-align: center;
  margin-top: 28px;
  color: var(--text-light);
  font-size: 14px;
  font-style: italic;
  position: relative;
}


/* ============================================
   WHY CHOOSE US (homepage)
   ============================================ */
.why-section {
  background: var(--cabin);
  color: var(--cream);
}
.why-section .section-header h2 { color: var(--cream); }
.why-section .section-header p { color: var(--wood-pale); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  padding: 32px 24px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s;
}
.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(30,69,250,0.3);
}
.why-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-muted);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 24px;
}
.why-card h3 { font-size: 19px; color: white; margin-bottom: 8px; }
.why-card p { color: var(--wood-pale); font-size: 14px; line-height: 1.6; }


/* ============================================
   CTA BANNER (shared)
   ============================================ */
.cta-banner {
  background: var(--blue);
  padding: 56px 24px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 20% 0%, rgba(255,255,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 80% 100%, rgba(0,0,0,0.15) 0%, transparent 60%);
}
.cta-banner h2 { font-size: 32px; margin-bottom: 10px; position: relative; }
.cta-banner p { font-size: 17px; opacity: 0.85; margin-bottom: 24px; position: relative; }
.cta-banner .btn-cta {
  background: white;
  color: var(--blue);
  padding: 16px 36px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  position: relative;
  font-family: 'Cabin', sans-serif;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cta-banner .btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.cta-contact {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-top: 20px;
  position: relative;
}
.cta-contact a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}
.cta-contact a:hover { color: white; }


/* ============================================
   INFO BAR (shared)
   ============================================ */
.info-bar {
  background: var(--cream);
  padding: 56px 24px;
  border-top: 3px solid var(--cream-dark);
}
.info-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.info-block h4 {
  font-size: 16px;
  color: var(--cabin);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--blue);
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.info-block p {
  color: var(--text-medium);
  line-height: 1.7;
  font-size: 14px;
}
.info-block a { color: var(--blue); text-decoration: none; font-weight: 600; }
.info-block a:hover { text-decoration: underline; }


/* ============================================
   FOOTER (shared)
   ============================================ */
.footer {
  background: var(--cabin-dark);
  color: rgba(255,255,255,0.45);
  padding: 40px 24px;
  font-size: 13px;
  border-top: 3px solid var(--wood);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.footer-logo-img {
  height: 75px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.footer-logo-img:hover { opacity: 1; }
.footer-middle { text-align: center; flex: 1; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 10px;
}
.footer a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer a:hover { color: white; }
.footer .pipe { color: rgba(255,255,255,0.15); }
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.footer-contact a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.footer-contact a:hover { color: white; }

/* ============================================
   BREADCRUMB (boat detail pages)
   ============================================ */
.breadcrumb-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  padding: 14px 24px;
}
.breadcrumb-bar nav {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 13px;
  color: var(--text-light);
}
.breadcrumb-bar a { color: var(--blue); text-decoration: none; font-weight: 600; }
.breadcrumb-bar a:hover { text-decoration: underline; }
.breadcrumb-bar .sep { margin: 0 8px; opacity: 0.4; }


/* ============================================
   BOAT DETAIL PAGE
   ============================================ */
.boat-detail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}
.boat-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

/* Gallery */
.gallery { display: flex; flex-direction: column; gap: 12px; }
.gallery-main {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  border: 3px solid var(--cream-dark);
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-thumbs { display: flex; gap: 10px; }
.gallery-thumbs .thumb {
  flex: 1;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--cream-dark);
  cursor: pointer;
  transition: border-color 0.2s;
}
.gallery-thumbs .thumb:hover,
.gallery-thumbs .thumb.active { border-color: var(--blue); }
.gallery-thumbs .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Info panel */
.boat-info-panel { display: flex; flex-direction: column; }
.boat-size-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-muted);
  color: var(--blue);
  padding: 5px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  width: fit-content;
}
.boat-info-panel h1 {
  font-size: 38px;
  color: var(--cabin);
  margin-bottom: 8px;
  line-height: 1.15;
}
.boat-subtitle {
  color: var(--text-medium);
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.5;
}
.boat-subtitle strong { color: var(--text-dark); }

/* Quick specs */
.quick-specs {
  display: flex;
  margin-bottom: 28px;
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  overflow: hidden;
}
.quick-spec {
  flex: 1;
  padding: 14px 16px;
  text-align: center;
  background: var(--cream);
  border-right: 1px solid var(--cream-dark);
}
.quick-spec:last-child { border-right: none; }
.quick-spec .val {
  font-family: 'Bitter', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--cabin);
}
.quick-spec .lbl {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 2px;
}

/* Pricing table */
.pricing-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
}
.pricing-header {
  background: var(--cabin);
  color: var(--cream);
  padding: 14px 20px;
  font-family: 'Bitter', serif;
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table tr { border-bottom: 1px solid var(--cream-dark); }
.pricing-table tr:last-child { border-bottom: none; }
.pricing-table td { padding: 13px 20px; font-size: 15px; }
.pricing-table .duration { color: var(--text-medium); font-weight: 600; }
.pricing-table .price {
  text-align: right;
  font-family: 'Bitter', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--cabin);
}
.pricing-table .per-day {
  font-size: 12px;
  color: var(--text-light);
  font-family: 'Cabin', sans-serif;
  font-weight: 400;
  margin-left: 4px;
}
.pricing-table tr.best-value { background: var(--blue-muted); }
.pricing-table tr.best-value .duration::after {
  content: 'Best Value';
  margin-left: 8px;
  background: var(--blue);
  color: white;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 3px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  vertical-align: middle;
}
.pricing-note {
  padding: 12px 20px;
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
}

/* Boat CTA buttons */
.boat-ctas { display: flex; gap: 12px; margin-top: auto; }
.boat-ctas .btn { flex: 1; }

/* Features + Delivery grid */
.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: 56px;
}
.detail-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 10px;
  overflow: hidden;
}
.detail-card-header {
  padding: 16px 24px;
  font-family: 'Bitter', serif;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.detail-card-header.dark { background: var(--cabin); color: var(--cream); }
.detail-card-header.wood { background: var(--bark); color: var(--cream); }
.detail-card-body { padding: 24px; }

/* Feature checklist */
.feature-list { list-style: none; }
.feature-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--cream);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-dark);
}
.feature-list li:last-child { border-bottom: none; }
.feature-check {
  width: 22px;
  height: 22px;
  background: var(--green-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--green);
  flex-shrink: 0;
}

/* Delivery table */
.delivery-table { width: 100%; border-collapse: collapse; }
.delivery-table tr { border-bottom: 1px solid var(--cream); }
.delivery-table tr:last-child { border-bottom: none; }
.delivery-table td { padding: 11px 0; font-size: 14px; }
.delivery-table .dest { color: var(--text-medium); }
.delivery-table .del-price { text-align: right; font-weight: 700; color: var(--cabin); }
.delivery-table .free { color: var(--green); font-weight: 700; }
.delivery-note {
  margin-top: 14px;
  padding: 12px 16px;
  background: var(--cream);
  border-radius: 6px;
  font-size: 13px;
  color: var(--text-medium);
  line-height: 1.5;
}

/* Calendar placeholder */
.calendar-section {
  background: var(--cream);
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  margin-bottom: 56px;
  border: 1px solid var(--cream-dark);
}
.calendar-section h2 { font-size: 26px; color: var(--cabin); margin-bottom: 8px; }
.calendar-section p { color: var(--text-medium); font-size: 15px; margin-bottom: 20px; }

/* Other boats row */
.other-boats { margin-bottom: 56px; }
.other-boats h2 { font-size: 28px; color: var(--cabin); margin-bottom: 24px; text-align: center; }
.other-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.other-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  text-decoration: none;
  color: var(--text-dark);
  transition: all 0.25s;
  display: block;
}
.other-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  border-color: var(--blue);
}
.other-card-img {
  height: 140px;
  overflow: hidden;
}
.other-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.other-card-info { padding: 16px; }
.other-card-info h4 { font-size: 16px; color: var(--cabin); margin-bottom: 4px; }
.other-card-info span { font-size: 13px; color: var(--text-light); }


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .boat-top { grid-template-columns: 1fr; gap: 32px; }
  .details-grid { grid-template-columns: 1fr; }
  .other-grid { grid-template-columns: 1fr; }
  .boat-info-panel h1 { font-size: 30px; }
  .quick-specs { flex-wrap: wrap; }
  .quick-spec { flex: 1 1 45%; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 34px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-stat .number { font-size: 26px; }
  .boat-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .top-bar-inner { flex-direction: column; gap: 4px; text-align: center; }
  .cta-contact { flex-direction: column; gap: 12px; }
  .boat-ctas { flex-direction: column; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
}