/* Bandama Charters — luxury yacht site */
:root {
  --c-navy: #0d2240;
  --c-navy-deep: #081a33;
  --c-navy-soft: #1a3559;
  --c-sand: #d6b97b;
  --c-sand-light: #e8d4a4;
  --c-cream: #f6f1e7;
  --c-ivory: #fbf8f2;
  --c-text: #1c2638;
  --c-muted: #6b7689;
  --c-line: rgba(13, 34, 64, 0.12);

  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --container: 1240px;
  --section-pad-y: clamp(64px, 9vw, 140px);
  --gap: clamp(24px, 3vw, 48px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* Display type */
.display, h1.display, h2.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin: 0;
}

h1.display { font-size: clamp(44px, 6.2vw, 88px); }
h2.display { font-size: clamp(36px, 5vw, 64px); }
h3.display { font-size: clamp(24px, 2.4vw, 32px); font-family: var(--font-display); font-weight: 400; line-height: 1.15; margin: 0; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 500;
  color: var(--c-sand);
}

.eyebrow.dark { color: var(--c-navy); opacity: 0.7; }

p { margin: 0; }
p.lead { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.55; color: var(--c-text); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-sand);
  color: var(--c-navy-deep);
}
.btn-primary:hover { background: var(--c-sand-light); transform: translateY(-1px); box-shadow: 0 12px 24px -12px rgba(214, 185, 123, 0.6); }

.btn-ghost {
  background: transparent;
  border-color: var(--c-sand);
  color: var(--c-sand);
}
.btn-ghost:hover { background: var(--c-sand); color: var(--c-navy-deep); }

.btn-outline-dark {
  background: transparent;
  border-color: var(--c-navy);
  color: var(--c-navy);
}
.btn-outline-dark:hover { background: var(--c-navy); color: var(--c-ivory); }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s ease, padding 0.3s ease, backdrop-filter 0.3s ease;
}
.nav.scrolled {
  background: rgba(13, 34, 64, 0.92);
  backdrop-filter: blur(12px);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-logo img { height: 102px; width: auto; }
.nav-logo .wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.08em;
  color: #fff;
  white-space: nowrap;
  line-height: 1.1;
}
.nav-logo .wordmark small {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--c-sand); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}
.nav-phone svg { width: 16px; height: 16px; }
.nav .btn { height: 40px; padding: 0 20px; font-size: 11px; white-space: nowrap; }

@media (max-width: 1180px) {
  .nav-phone { display: none; }
}
@media (max-width: 1024px) {
  .nav-links { display: none; }
}
@media (max-width: 720px) {
  .nav-logo .wordmark small { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: max(640px, 100vh);
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding-top: 120px;
}
.hero-bg {
  position: absolute;
  inset: -8% 0 0 0;
  height: 116%;
  z-index: 0;
  will-change: transform;
}
.hero-bg image-slot {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-bg .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(8, 26, 51, 0.55) 0%,
    rgba(8, 26, 51, 0.2) 30%,
    rgba(8, 26, 51, 0.4) 70%,
    rgba(8, 26, 51, 0.85) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(80px, 12vh, 140px);
}
.hero-eyebrow {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--c-sand);
}
.hero h1 {
  max-width: 14ch;
  margin: 0 0 28px;
  text-wrap: balance;
}
.hero-tagline {
  max-width: 52ch;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.6));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(0.4); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* Hero side meta — small specs strip */
.hero-meta {
  position: absolute;
  right: clamp(20px, 4vw, 48px);
  bottom: clamp(80px, 12vh, 140px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: right;
  border-right: 1px solid rgba(255,255,255,0.18);
  padding-right: 24px;
}
.hero-meta-item {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  color: #fff;
}
.hero-meta-item span {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  font-weight: 500;
}
@media (max-width: 1100px) {
  .hero-meta { display: none; }
}
@media (max-width: 720px) {
  .hero-meta { display: none; }
}

/* ============ SUBHERO STRIP ============ */
.subhero {
  background: var(--c-navy);
  color: #fff;
  padding: clamp(56px, 8vw, 96px) 0;
  text-align: center;
  position: relative;
}
.subhero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(214, 185, 123, 0.08), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(214, 185, 123, 0.06), transparent 50%);
  pointer-events: none;
}
.subhero p {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.4;
  font-style: italic;
  max-width: 24ch;
  margin: 0 auto 14px;
  color: #fff;
  position: relative;
}
.subhero p + p { font-style: normal; font-size: clamp(15px, 1.2vw, 17px); color: rgba(255,255,255,0.7); font-family: var(--font-body); max-width: 50ch; }

/* ============ SECTION HEADER ============ */
.section { padding: var(--section-pad-y) 0; position: relative; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto clamp(48px, 6vw, 80px); }
.section-header .eyebrow { display: inline-block; margin-bottom: 18px; }
.section-header h2 { margin-bottom: 18px; }
.section-header p { font-size: 17px; line-height: 1.6; color: var(--c-muted); max-width: 56ch; margin: 0 auto; }

/* ============ ABOUT (yacht) ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: stretch;
}
.about-image { position: relative; align-self: stretch; display: flex; }
.about-image image-slot { width: 100%; height: 100%; min-height: 560px; aspect-ratio: auto; }
.about-image::before {
  content: '';
  position: absolute;
  top: -24px; left: -24px; right: 24px; bottom: 24px;
  border: 1px solid var(--c-sand);
  z-index: -1;
}
.about-content .eyebrow { display: inline-block; margin-bottom: 18px; }
.about-content h2 { margin-bottom: 28px; }
.about-content p { font-size: 17px; line-height: 1.7; color: var(--c-text); margin-bottom: 18px; }
.about-content p strong { color: var(--c-navy); font-weight: 600; }
.about-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--c-line);
}
.about-signature-name { font-family: var(--font-display); font-size: 20px; color: var(--c-navy); }
.about-signature-title { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-muted); }

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image::before { display: none; }
}

/* ============ FEATURES GRID ============ */
.features {
  background: var(--c-cream);
}
.features-hero {
  margin: 0 auto 4rem;
  max-width: 1100px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(20, 30, 50, 0.25);
}
.features-hero-bottom {
  margin: 4rem auto 0;
}
.features-hero img {
  display: block;
  width: 100%;
  height: clamp(260px, 50vw, 520px);
  object-fit: cover;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
}
.feature {
  background: var(--c-cream);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.25s;
}
.feature:hover { background: #fff; }
.feature svg { width: 32px; height: 32px; color: var(--c-navy); stroke-width: 1.25; }
.feature-value {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  color: var(--c-navy);
  margin-top: 12px;
}
.feature-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
}
@media (max-width: 880px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============ DESTINATIONS ============ */
.destinations { background: var(--c-ivory); }
.dest-stage {
  position: relative;
  height: clamp(420px, 60vh, 620px);
  overflow: hidden;
  border-radius: 4px;
}
.dest-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.dest-slide.active { opacity: 1; pointer-events: auto; z-index: 2; }
.dest-slide image-slot { width: 100%; height: 100%; }
.dest-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,26,51,0.1) 40%, rgba(8,26,51,0.85) 100%);
}
.dest-caption {
  position: absolute;
  left: 0; bottom: 0;
  padding: clamp(32px, 5vw, 64px);
  color: #fff;
  z-index: 2;
  max-width: 560px;
}
.dest-caption .eyebrow { color: var(--c-sand); margin-bottom: 14px; display: inline-block; }
.dest-caption h3 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  margin: 0 0 12px;
  line-height: 1.05;
}
.dest-caption p { color: rgba(255,255,255,0.9); font-size: 16px; line-height: 1.55; }

.dest-stepper {
  margin-top: 48px;
  position: relative;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}
.dest-step-line {
  position: absolute;
  top: 5px; left: 0; right: 0;
  height: 1px;
  background: var(--c-line);
}
.dest-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.dest-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
  font-family: inherit;
}
.dest-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--c-navy);
  transition: all 0.3s;
  position: relative;
}
.dest-dot::after {
  content: '';
  position: absolute;
  inset: -10px;
}
.dest-step.active .dest-dot {
  background: var(--c-sand);
  transform: scale(1.4);
  box-shadow: 0 0 0 6px rgba(214, 185, 123, 0.18);
}
.dest-step-label {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--c-navy);
  transition: color 0.3s;
}
.dest-step.active .dest-step-label { color: var(--c-sand); }

.dest-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-navy);
  box-shadow: 0 8px 24px rgba(8, 26, 51, 0.18);
  transition: transform 0.2s;
}
.dest-arrow:hover { transform: translateY(-50%) scale(1.06); }
.dest-arrow svg { width: 18px; height: 18px; }
.dest-arrow.prev { left: 24px; }
.dest-arrow.next { right: 24px; }
@media (max-width: 720px) {
  .dest-arrow { top: 28%; width: 44px; height: 44px; }
  .dest-arrow:hover { transform: translateY(-50%) scale(1.04); }
  .dest-arrow.prev { left: 12px; }
  .dest-arrow.next { right: 12px; }
}

/* ============ CHARTER OFFER ============ */
.charter-offer {
  background: var(--c-navy);
  color: #fff;
}
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: stretch;
}
.offer-image { position: relative; }
.offer-image { align-self: stretch; }
.offer-image image-slot { width: 100%; height: 100%; min-height: 520px; }
.offer-content .eyebrow { color: var(--c-sand); display: inline-block; margin-bottom: 18px; }
.offer-content h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 24px;
  color: #fff;
}
.offer-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 18px;
  margin: 28px 0 18px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.offer-price-amt {
  font-family: var(--font-body);
  font-size: clamp(46px, 5.2vw, 68px);
  font-weight: 300;
  letter-spacing: -0.02em;
  font-variant-numeric: lining-nums tabular-nums;
  line-height: 1;
  color: var(--c-sand);
  flex-shrink: 0;
}
.offer-price-vat {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 10px;
}
.offer-price-unit {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  min-width: 0;
  flex: 1 1 200px;
}
.offer-price-unit strong { color: #fff; font-weight: 500; letter-spacing: 0.08em; }

.offer-desc {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}
.offer-includes-title {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-sand);
  margin-bottom: 18px;
  font-weight: 500;
}
.offer-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.offer-includes li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.92);
  line-height: 1.4;
}
.offer-includes li svg { width: 16px; height: 16px; color: var(--c-sand); flex-shrink: 0; margin-top: 4px; }

@media (max-width: 880px) {
  .offer-grid { grid-template-columns: 1fr; }
  .offer-includes { grid-template-columns: 1fr; }
}

/* ============ OCCASIONS ============ */
.occasions { background: var(--c-cream); }
.occ-stage {
  position: relative;
  height: clamp(480px, 65vh, 640px);
  overflow: hidden;
  border-radius: 4px;
}
.occ-slide {
  position: absolute; inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}
.occ-slide.active { opacity: 1; z-index: 2; pointer-events: auto; }
.occ-slide image-slot { width: 100%; height: 100%; }
.occ-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,26,51,0.1) 30%, rgba(8,26,51,0.9) 100%);
}
.occ-content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: clamp(32px, 5vw, 64px);
  color: #fff;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.occ-text { max-width: 640px; display: flex; gap: 20px; align-items: flex-start; }
.occ-num {
  width: 36px; height: 36px;
  background: var(--c-sand);
  color: var(--c-navy-deep);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 8px;
}
.occ-content h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 10px;
}
.occ-content p { color: rgba(255,255,255,0.88); font-size: 16px; line-height: 1.55; }
.occ-nav { display: flex; flex-direction: column; gap: 10px; }
.occ-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-navy);
  transition: transform 0.2s;
}
.occ-btn:hover { transform: scale(1.06); background: #fff; }
.occ-btn svg { width: 18px; height: 18px; }

@media (max-width: 720px) {
  .occ-content { flex-direction: column; align-items: flex-start; }
  .occ-nav { flex-direction: row; }
}

/* ============ GALLERY ============ */
.gallery { background: var(--c-ivory); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.gallery-grid image-slot { width: 100%; height: 100%; }
.gal-item { overflow: hidden; }
.gal-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gal-item:nth-child(4) { grid-column: span 2; }
.gal-item:nth-child(7) { grid-column: span 2; }
@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gal-item:nth-child(4) { grid-column: span 2; }
  .gal-item:nth-child(7) { grid-column: span 2; }
}

/* ============ TESTIMONIALS ============ */
.testimonials { background: var(--c-navy); color: #fff; }
.testimonials .section-header h2 { color: #fff; }
.testimonials .section-header p { color: rgba(255,255,255,0.7); }
.testimonials .eyebrow { color: var(--c-sand); }
.test-stage {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  min-height: 280px;
}
.test-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s;
  pointer-events: none;
}
.test-slide.active { opacity: 1; pointer-events: auto; }
.test-slide blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-style: italic;
  line-height: 1.4;
  margin: 0 0 32px;
  color: #fff;
  text-wrap: balance;
}
.test-slide blockquote::before { content: '"'; color: var(--c-sand); font-size: 1.2em; line-height: 0; vertical-align: -0.3em; margin-right: 4px; }
.test-slide blockquote::after { content: '"'; color: var(--c-sand); font-size: 1.2em; line-height: 0; vertical-align: -0.3em; margin-left: 2px; }
.test-author {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-sand);
  font-weight: 500;
}
.test-author span { display: block; margin-top: 6px; color: rgba(255,255,255,0.55); letter-spacing: 0.14em; }
.test-stars { color: var(--c-sand); font-size: 16px; letter-spacing: 4px; margin-bottom: 24px; }
.test-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 56px;
}
.test-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s;
}
.test-dot.active { background: var(--c-sand); width: 24px; border-radius: 4px; }

/* ============ CONTACT ============ */
.contact {
  background: var(--c-cream);
  position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 64px);
  align-items: start;
}
.contact-info { text-align: center; max-width: 720px; margin: 0 auto; }
.contact-info .eyebrow { display: inline-block; margin-bottom: 18px; }
.contact-info h2 { margin-bottom: 24px; }
.contact-info p.lead { color: var(--c-text); margin-bottom: 36px; max-width: 42ch; margin-left: auto; margin-right: auto; }
.contact-info .contact-detail { justify-content: center; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--c-line);
}
.contact-detail:last-child { border-bottom: 1px solid var(--c-line); }
.contact-detail svg { width: 20px; height: 20px; color: var(--c-navy); flex-shrink: 0; margin-top: 2px; }
.contact-detail-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 4px;
  font-weight: 500;
}
.contact-detail-value { font-family: var(--font-display); font-size: 19px; color: var(--c-navy); }

.contact-form {
  background: #fff;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--c-line);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field { margin-bottom: 16px; }
.form-field label, .form-row label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--c-muted);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea,
.form-row input {
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--c-line);
  font-family: inherit;
  font-size: 16px;
  color: var(--c-text);
  background: transparent;
  outline: none;
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-row input:focus { border-bottom-color: var(--c-navy); }
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field.error input,
.form-field.error textarea { border-bottom-color: #c44; }
.form-field-error { font-size: 12px; color: #c44; margin-top: 6px; display: none; }
.form-field.error .form-field-error { display: block; }
.form-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.form-note { font-size: 12px; color: var(--c-muted); }

.form-success {
  text-align: center;
  padding: 48px 16px;
  display: none;
}
.form-success.show { display: block; }
.form-success svg { width: 56px; height: 56px; color: var(--c-sand); margin: 0 auto 24px; }
.form-success h3 { font-family: var(--font-display); font-size: 28px; color: var(--c-navy); margin: 0 0 12px; }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============ FOOTER ============ */
footer {
  background: var(--c-navy-deep);
  color: rgba(255,255,255,0.7);
  padding: clamp(56px, 8vw, 96px) 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { color: #fff; }
.footer-brand img { height: 56px; margin-bottom: 20px; }
.footer-brand .wordmark {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  color: #fff;
}
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 36ch; }
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-sand);
  margin: 0 0 20px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-col a:hover { color: var(--c-sand); }
.footer-socials { display: flex; gap: 12px; margin-top: 12px; }
.footer-socials a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
}
.footer-socials a:hover { background: var(--c-sand); border-color: var(--c-sand); color: var(--c-navy-deep); }
.footer-socials svg { width: 16px; height: 16px; }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.06em;
}
@media (max-width: 880px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Density tweak */
body.compact { --section-pad-y: clamp(48px, 6vw, 96px); }
body.compact .features-grid { gap: 1px; }
body.compact .feature { padding: 24px 20px; }

/* hide section helper */
.is-hidden { display: none !important; }

/* image-slot styling tweak */
image-slot {
  background: linear-gradient(135deg, #e6dccb 0%, #cdbf9f 100%);
}

/* WhatsApp floating action button */
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 500;
  width: 56px; height: 56px; background: #25D366; color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
}
.whatsapp-fab:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,.5); }
.whatsapp-fab:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }

/* Form field hint */
.form-hint {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--c-muted);
  line-height: 1.4;
}

/* Hero CTA — primary conversion target, scaled up for prominence */
.btn.btn-hero {
  height: 64px;
  padding: 0 44px;
  font-size: 15px;
  letter-spacing: 0.2em;
  box-shadow: 0 18px 40px -16px rgba(214, 185, 123, 0.7);
}
.btn.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px -16px rgba(214, 185, 123, 0.85);
}

.cta-banner {
  width: 100%;
  padding: 24px 6vw;
  background: var(--c-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner p {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.01em;
}
.cta-banner .btn { white-space: nowrap; }
.cta-banner + .container { margin-top: clamp(48px, 6vw, 96px); }
@media (max-width: 600px) {
  .cta-banner { flex-direction: column; align-items: stretch; text-align: center; padding: 20px; }
  .cta-banner p { font-size: 18px; }
}
