/* ==========================================================================
   W Divers Coron — Design System & Site Styles
   Built by Lendez Studio
   ========================================================================== */

/* ---- Design Tokens ---- */
:root {
  /* Color: ocean + adventure palette */
  --navy-950: #071c2c;
  --navy-900: #0a2a40;
  --navy-800: #0e3550;
  --ocean-700: #0e4c6b;
  --ocean-600: #125d80;
  --ocean-500: #146b8c;
  --teal-500: #1c9c8c;
  --teal-400: #2cb5a0;
  --teal-700: #0f6e62; /* darker teal for text on light backgrounds — meets WCAG AA */
  --coral-500: #ff7a59;
  --coral-600: #ef5f3d;
  --coral-700: #d94e2f;
  --sand-50: #fbf8f3;
  --sand-100: #f3ecdf;
  --sand-200: #ebe1cd;
  --ink-900: #10222d;
  --ink-700: #2c4150;
  --ink-600: #45596a;
  --ink-400: #7c8fa0;
  --white: #ffffff;
  --line: rgba(16, 34, 45, 0.1);
  --line-light: rgba(255, 255, 255, 0.18);

  /* Typography */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  /* Layout */
  --container-max: 1180px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(10, 30, 45, 0.06), 0 1px 1px rgba(10, 30, 45, 0.04);
  --shadow-md: 0 8px 24px -8px rgba(10, 30, 45, 0.18);
  --shadow-lg: 0 20px 48px -16px rgba(10, 30, 45, 0.28);
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--sand-50);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

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

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

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

ul {
  list-style: none;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy-950);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  color: var(--ink-600);
}

.lede {
  font-size: 1.15rem;
  color: var(--ink-700);
}

/* Focus states — accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--coral-500);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy-950);
  color: var(--white);
  padding: var(--space-3) var(--space-5);
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  left: 0;
}

/* ---- Layout helpers ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

@media (min-width: 640px) {
  .container {
    padding-inline: var(--space-6);
  }
}

section {
  padding-block: var(--space-9);
}

.section-tight {
  padding-block: var(--space-8);
}

.section-header {
  max-width: 640px;
  margin-bottom: var(--space-7);
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: var(--space-4);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--coral-500);
  display: inline-block;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--coral-500);
  color: var(--navy-950);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--coral-600);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--line-light);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--navy-950);
  border-color: var(--line);
}

.btn-outline:hover {
  border-color: var(--navy-950);
  background: var(--sand-100);
}

.btn-block {
  width: 100%;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ---- Header / Nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-4);
  gap: var(--space-5);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--navy-950);
  flex-shrink: 0;
}

.brand-mark {
  height: 40px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

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

.brand-text small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-700);
}

.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-6);
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-700);
  padding-block: var(--space-2);
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--navy-950);
  border-bottom-color: var(--coral-500);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav-actions .btn {
  display: none;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-4) var(--space-5) var(--space-6);
  border-top: 1px solid var(--line);
  background: var(--sand-50);
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu a {
  padding: var(--space-3) var(--space-2);
  font-weight: 500;
  border-radius: var(--radius-sm);
  color: var(--ink-700);
}

.mobile-menu a[aria-current="page"] {
  color: var(--navy-950);
  background: var(--sand-100);
  font-weight: 600;
}

.mobile-menu .btn {
  margin-top: var(--space-3);
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
  .nav-actions .btn {
    display: inline-flex;
  }
  .nav-toggle {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  background-image: linear-gradient(160deg, rgba(7, 28, 44, 0.92) 0%, rgba(10, 42, 64, 0.78) 45%, rgba(10, 42, 64, 0.45) 100%),
    url("../assets/images/hero-reef-diver.jpg");
  background-size: cover;
  background-position: center 30%;
  color: var(--white);
  overflow: hidden;
  padding-block: var(--space-9) var(--space-8);
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 640px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sand-100);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: var(--space-2) var(--space-4);
  border-radius: 999px;
  margin-bottom: var(--space-5);
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-5);
}

.hero .lede {
  color: rgba(255, 255, 255, 0.92);
  max-width: 46ch;
  margin-bottom: var(--space-6);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-7);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-7);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
}

.hero-stat span {
  font-size: 0.85rem;
  color: var(--sand-100);
  opacity: 0.85;
}

.wave-divider {
  display: block;
  width: 100%;
  line-height: 0;
}

.wave-divider svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ---- Placeholder media blocks (no photography supplied yet) ---- */
.media-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, var(--ocean-700), var(--teal-500));
  color: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-md);
  overflow: hidden;
  isolation: isolate;
}

.media-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 45%),
    radial-gradient(circle at 80% 75%, rgba(255, 255, 255, 0.14), transparent 40%);
  z-index: -1;
}

.media-placeholder svg {
  width: 34%;
  max-width: 84px;
  height: auto;
  opacity: 0.85;
}

.feature-visual,
.gallery-item {
  position: relative;
}

.feature-visual {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.feature-visual img,
.trip-card-photo img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.feature-visual:hover img,
.trip-card:hover .trip-card-photo img,
.gallery-item:hover img {
  transform: scale(1.06);
}

/* Scroll-reveal for photos — progressive enhancement, safe with JS disabled */
.reveal {
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.reveal-pending {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.media-placeholder-label {
  position: absolute;
  bottom: var(--space-3);
  left: var(--space-3);
  right: var(--space-3);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(7, 28, 44, 0.35);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(2px);
}

/* ---- Cards ---- */
.card-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--sand-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean-700);
  margin-bottom: var(--space-2);
}

.card-icon svg {
  width: 26px;
  height: 26px;
}

.card h3 {
  margin-bottom: 0;
}

.card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ocean-700);
  padding-top: var(--space-2);
}

.card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.15s ease;
}

.card-link:hover svg {
  transform: translateX(3px);
}

/* Trip / service cards — full-bleed photo with text overlaid on a scrim */
.trip-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.trip-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 20, 32, 0.97) 0%,
    rgba(5, 20, 32, 0.93) 38%,
    rgba(5, 20, 32, 0.7) 58%,
    rgba(5, 20, 32, 0.18) 82%,
    rgba(5, 20, 32, 0) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.trip-card-photo {
  position: absolute;
  inset: 0;
}

.trip-card-body {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--space-3);
}

.trip-card-body h3 {
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.trip-card-body p {
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.trip-card-body .card-link {
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.trip-card-body .tag {
  align-self: flex-start;
}

.trip-card-body ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin: var(--space-2) 0;
}

.trip-card-body ul li {
  display: flex;
  gap: var(--space-2);
  font-size: 0.92rem;
  color: var(--ink-600);
}

.trip-card-body ul li svg {
  width: 18px;
  height: 18px;
  color: var(--teal-500);
  flex-shrink: 0;
  margin-top: 2px;
}

.trip-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
}

.tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-700);
  background: rgba(28, 156, 140, 0.1);
  padding: var(--space-1) var(--space-3);
  border-radius: 999px;
}

/* ---- Alternating feature rows ---- */
.feature-row {
  display: grid;
  gap: var(--space-7);
  align-items: center;
}

@media (min-width: 900px) {
  .feature-row {
    grid-template-columns: 1fr 1fr;
  }
  .feature-row.reverse .feature-visual {
    order: 2;
  }
}

.feature-text ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-block: var(--space-5);
}

.feature-text ul li {
  display: flex;
  gap: var(--space-3);
  color: var(--ink-700);
}

.feature-text ul li svg {
  width: 20px;
  height: 20px;
  color: var(--coral-500);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- Stats band ---- */
.stats-band {
  background: var(--navy-950);
  color: var(--white);
}

.stats-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}

@media (min-width: 700px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--white);
}

.stat span {
  font-size: 0.85rem;
  color: var(--sand-100);
  opacity: 0.85;
}

/* ---- Testimonials ---- */
.review-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.review-stars {
  display: flex;
  gap: 3px;
  color: var(--coral-500);
}

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

.review-quote {
  color: var(--ink-700);
  font-size: 0.98rem;
}

.review-source {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: auto;
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--ink-600);
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sand-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ocean-700);
  flex-shrink: 0;
}

.rating-summary {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  align-items: center;
}

.rating-pill {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
}

.rating-pill strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy-950);
}

.rating-pill span {
  display: block;
  font-size: 0.8rem;
  color: var(--ink-600);
}

/* ---- CTA band ---- */
.cta-band {
  background: linear-gradient(135deg, var(--ocean-700), var(--teal-500));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-7);
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: var(--space-3);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: var(--space-6);
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

/* ---- Process steps ---- */
.steps {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: var(--space-6);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: var(--space-4);
}

/* ---- FAQ ---- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 760px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  font-weight: 600;
  color: var(--navy-950);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary .chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--ocean-700);
  transition: transform 0.2s ease;
}

.faq-item[open] summary .chevron {
  transform: rotate(180deg);
}

.faq-item-body {
  padding: 0 var(--space-5) var(--space-5);
  color: var(--ink-600);
  font-size: 0.95rem;
}

/* ---- Contact page ---- */
.contact-grid {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.form-row {
  display: grid;
  gap: var(--space-5);
}

@media (min-width: 560px) {
  .form-row.two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-950);
}

.field .hint {
  font-size: 0.78rem;
  color: var(--ink-400);
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  background: var(--sand-50);
  font-size: 1rem;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ocean-500);
  background: var(--white);
  outline: none;
}

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

.form-note {
  font-size: 0.82rem;
  color: var(--ink-400);
}

.contact-info-card {
  background: var(--navy-950);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.contact-info-card h3 {
  color: var(--white);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-info-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.contact-info-item .icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item .icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-item a,
.contact-info-item p {
  color: var(--sand-100);
  font-size: 0.95rem;
}

.contact-info-item strong {
  display: block;
  color: var(--white);
  margin-bottom: 2px;
}

.social-row {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s ease;
}

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

.social-row svg {
  width: 19px;
  height: 19px;
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16/9;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---- Gallery ---- */
.gallery-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gallery-note {
  background: var(--sand-100);
  border: 1px dashed var(--ink-400);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  margin-bottom: var(--space-7);
}

.gallery-note svg {
  width: 24px;
  height: 24px;
  color: var(--ocean-700);
  flex-shrink: 0;
}

.gallery-note p {
  margin: 0;
  font-size: 0.92rem;
}

/* ---- Breadcrumb / page hero (interior pages) ---- */
.page-hero {
  background: linear-gradient(160deg, var(--navy-950), var(--ocean-700) 80%);
  color: var(--white);
  padding-block: var(--space-8) var(--space-7);
}

.page-hero .eyebrow {
  color: var(--sand-100);
}

.page-hero .eyebrow::before {
  background: var(--coral-500);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: var(--space-3);
}

.page-hero p {
  color: var(--sand-100);
  max-width: 60ch;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--navy-950);
  color: var(--sand-100);
  padding-block: var(--space-8) var(--space-6);
}

.footer-grid {
  display: grid;
  gap: var(--space-7);
  grid-template-columns: 1fr;
  padding-bottom: var(--space-7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer-brand .brand {
  color: var(--white);
  margin-bottom: var(--space-4);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  max-width: 40ch;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-col a,
.footer-col p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-6);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social svg {
  width: 17px;
  height: 17px;
  color: var(--white);
}

/* ---- WhatsApp floating button ---- */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-5);
  right: var(--space-5);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: #17703c;
  color: var(--white);
  padding: var(--space-3) var(--space-5);
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  font-size: 0.88rem;
  transition: transform 0.15s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

.whatsapp-float svg {
  width: 20px;
  height: 20px;
}

/* ---- Utility ---- */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

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