/* Belicia Tourism-inspired design system for Playa del Amor */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --color-cream: #f7f6f2;
  --color-cream-dark: #efede6;
  --color-white: #ffffff;
  --color-navy: #1a2b48;
  --color-navy-dark: #0b1622;
  --color-charcoal: #1f232b;
  --color-sage: #94b7b7;
  --color-sage-dark: #6d9494;
  --color-text: #333333;
  --color-text-muted: #666666;
  --color-text-light: #999999;
  --color-border: #e5e5e5;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', 'Segoe UI', sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 1200px;
  --header-height: 80px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

/* ─── Typography ─── */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.85);
}

h1, h2, h3, .heading-serif {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.25;
  margin: 0 0 1rem;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title .eyebrow {
  display: block;
  margin-bottom: 0.75rem;
}

/* ─── Layout ─── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
}

.section--cream {
  background: var(--color-cream);
}

.section--white {
  background: var(--color-white);
}

/* ─── Header / Navigation ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(11, 22, 34, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
}

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn--ghost-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.9);
  color: #fff;
}

.btn--ghost-light:hover {
  background: #fff;
  color: var(--color-navy);
}

.btn--ghost-dark {
  background: transparent;
  border-color: var(--color-navy);
  color: var(--color-navy);
}

.btn--ghost-dark:hover {
  background: var(--color-navy);
  color: #fff;
}

.btn--solid {
  background: var(--color-navy);
  color: #fff;
  border-color: var(--color-navy);
}

.btn--solid:hover {
  background: var(--color-charcoal);
  border-color: var(--color-charcoal);
}

/* ─── Hero Slider ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height) + 40px) 24px 80px;
  color: #fff;
}

.hero-content h1 {
  color: #fff;
  max-width: 800px;
  margin-bottom: 1.25rem;
}

.hero-content .hero-tagline {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.hero-social {
  margin-bottom: 1rem;
}

.hero-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: #fff;
  margin: 0 4px;
  font-size: 14px;
  transition: all var(--transition);
}

.hero-social a:hover {
  background: #fff;
  color: var(--color-navy);
  border-color: #fff;
}

.hero-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  pointer-events: none;
}

.hero-arrow {
  pointer-events: all;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
  transition: color var(--transition), transform var(--transition);
}

.hero-arrow:hover {
  color: #fff;
  transform: scale(1.1);
}

.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}

.hero-dot.active {
  background: #fff;
  transform: scale(1.15);
}

/* ─── Welcome / Feature Section ─── */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-text p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
}

.feature-image {
  position: relative;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.feature-image .welcome-feature-img {
  object-position: center 35%;
}

.feature-image:hover img {
  transform: scale(1.04);
}

/* ─── Gallery (Belicia staggered showcase) ─── */
.gallery-section {
  padding: 90px 0 100px;
  background: var(--color-cream);
}

.gallery-section-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  font-weight: 400;
  color: var(--color-navy);
  margin: 0 0 60px;
  line-height: 1.2;
}

.gallery-section-title em {
  font-style: italic;
  font-weight: 400;
}

.gallery-showcase {
  display: grid;
  grid-template-columns: 1fr 1.18fr 1fr;
  gap: 22px;
  align-items: center;
}

.gallery-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 0;
  text-decoration: none;
}

.gallery-card--side {
  height: 480px;
}

.gallery-card--featured {
  height: 640px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 32px 30px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.28) 42%,
    transparent 68%
  );
  color: #fff;
  text-align: left;
  transition: background 0.45s ease;
}

.gallery-card:hover .gallery-card-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.35) 48%,
    transparent 72%
  );
}

.gallery-card-location {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.gallery-card-location i {
  font-size: 0.8rem;
  opacity: 0.92;
}

.gallery-card-desc {
  margin: 16px 0 0;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.75;
  max-width: 340px;
  color: rgba(255, 255, 255, 0.94);
}

.gallery-card-cta {
  margin-top: 22px;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.3s ease;
}

.gallery-card:hover .gallery-card-cta {
  gap: 14px;
}

.gallery-card--side .gallery-card-desc,
.gallery-card--side .gallery-card-cta {
  display: none;
}

/* Legacy album styles (footer instagram etc.) */
.album {
  position: relative;
  display: block;
  overflow: hidden;
  height: 250px;
}

.album img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.album:hover img {
  transform: scale(1.08);
}

.album .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 60%);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  text-align: center;
  transition: background var(--transition);
}

.album:hover .overlay {
  background: linear-gradient(to top, rgba(26, 43, 72, 0.75) 0%, rgba(26, 43, 72, 0.2) 60%);
}

/* ─── Rates Section (Resort Pricing) ─── */
.rates-section {
  padding: 100px 0 90px;
  background: linear-gradient(180deg, #f7f6f2 0%, #efede6 50%, #f7f6f2 100%);
  position: relative;
  overflow: hidden;
}

.rates-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-sage), transparent);
}

.rates-heading {
  margin-bottom: 2.5rem;
}

.rates-subtitle {
  max-width: 520px;
  margin: 0.75rem auto 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.rates-notice {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  max-width: 880px;
  margin: 0 auto 48px;
  padding: 24px 28px;
  background: var(--color-white);
  border-left: 4px solid var(--color-sage-dark);
  box-shadow: 0 4px 24px rgba(26, 43, 72, 0.06);
}

.rates-notice-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(148, 183, 183, 0.2);
  border-radius: 50%;
  color: var(--color-sage-dark);
  font-size: 1rem;
}

.rates-notice-body {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.rates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.rate-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.rate-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(26, 43, 72, 0.12);
}

.rate-card--featured {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: #fff;
  transform: scale(1.03);
  z-index: 1;
  box-shadow: 0 20px 50px rgba(26, 43, 72, 0.2);
}

.rate-card--featured:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: 0 28px 60px rgba(26, 43, 72, 0.28);
}

.rate-card--featured h3,
.rate-card--featured .rate-details p {
  color: rgba(255, 255, 255, 0.92);
}

.rate-card--special {
  padding: 0;
}

.rate-ribbon {
  position: absolute;
  top: 20px;
  right: -32px;
  background: var(--color-sage);
  color: var(--color-navy);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 40px;
  transform: rotate(45deg);
  z-index: 2;
}

.rate-card-top {
  padding: 32px 28px 0;
}

.rate-card-head {
  padding: 32px 28px 0;
}

.rate-card-head__sub--spacer {
  visibility: hidden;
  user-select: none;
  pointer-events: none;
}

.rate-card-head .rate-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-sage-dark);
  margin-bottom: 10px;
}

.rate-card-head h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 0;
  line-height: 1.35;
  min-height: calc(1.2rem * 1.35 * 2);
  color: var(--color-navy);
  border: none;
  padding: 0;
}

.rate-card--featured .rate-card-head h3 {
  color: #fff;
}

.rate-card-head__sub {
  margin: 12px 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.rate-card-action {
  padding: 20px 48px 24px;
}

.rate-card-action .btn {
  display: block;
  width: 100%;
  text-align: center;
}

.rate-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-sage-dark);
  margin-bottom: 10px;
}

.rate-label--light {
  color: var(--color-sage);
}

.rate-card-head .rate-label--light {
  color: var(--color-sage);
}

.rate-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 0 0 20px;
  line-height: 1.35;
  color: var(--color-navy);
  border: none;
  padding: 0;
}

.rate-card--featured h3 {
  color: #fff;
}

.rate-price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  padding: 24px 28px;
  margin: 0 20px;
  background: var(--color-cream);
  border: 1px solid var(--color-border);
}

.rate-price-display--light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.rate-currency {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-sage-dark);
}

.rate-price-display--light .rate-currency {
  color: var(--color-sage);
}

.rate-amount {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1;
}

.rate-price-display--light .rate-amount {
  color: #fff;
}

.rate-unit {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-left: 4px;
}

.rate-price-display--light .rate-unit {
  color: rgba(255, 255, 255, 0.7);
}

.rate-price-gate {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 28px;
  margin: 0 20px;
}

.rate-price-gate--light {
  background: transparent;
  border: none;
}

.rate-price-gate__btn {
  display: block;
  width: 100%;
  text-align: center;
}

.rate-price-gate__btn--light {
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}

.rate-price-gate__btn--light:hover {
  background: #fff;
  color: var(--color-navy);
}

.rate-highlights {
  list-style: none;
  margin: 20px 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rate-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--color-text);
}

.rate-highlights--light li {
  color: rgba(255, 255, 255, 0.9);
}

.rate-highlights i {
  width: 18px;
  color: var(--color-sage-dark);
  font-size: 0.75rem;
}

.rate-highlights--light i {
  color: var(--color-sage);
}

.rate-details {
  padding: 0 28px 20px;
  flex: 1;
  border-top: 1px solid var(--color-border);
  margin: 0 20px;
  padding-top: 20px;
}

.rate-details--light {
  border-top-color: rgba(255, 255, 255, 0.15);
}

.rate-details p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 0 0 0.65rem;
  line-height: 1.65;
}

.rate-details--light p {
  color: rgba(255, 255, 255, 0.75);
}

.rate-price-line {
  font-weight: 600;
  color: var(--color-navy) !important;
  font-size: 0.85rem !important;
}

.rate-details--light .rate-price-line {
  color: #fff !important;
}

.rate-disclaimer {
  font-size: 0.72rem !important;
  font-style: italic;
  opacity: 0.8;
  margin-top: 12px !important;
  padding-top: 12px;
  border-top: 1px dashed var(--color-border);
}

.rate-details--light .rate-disclaimer {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.rate-cta {
  margin: auto 28px 28px;
  text-align: center;
  display: block;
  width: calc(100% - 56px);
}

.rate-cta--light {
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}

.rate-cta--light:hover {
  background: #fff;
  color: var(--color-navy);
}

.rate-special-block,
.rate-amor-block {
  padding: 0 0 28px;
}

.rate-special-block .rate-card-head,
.rate-amor-block .rate-card-top {
  padding-left: 28px;
  padding-right: 28px;
}

.rate-special-block .rate-card-action {
  padding-left: 48px;
  padding-right: 48px;
}

.rate-special-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0 0 20px;
  line-height: 1.6;
}

.rate-divider {
  height: 1px;
  background: var(--color-border);
  margin: 0 28px;
}

.rate-amor-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.rate-amor-form input[type="text"] {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  background: var(--color-cream);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.rate-amor-form input[type="text"]:focus {
  outline: none;
  border-color: var(--color-sage-dark);
  box-shadow: 0 0 0 3px rgba(148, 183, 183, 0.25);
  background: #fff;
}

.rate-amor-form button {
  width: 100%;
}

.rate-checklist-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-sage-dark);
  border-bottom: 1px solid var(--color-sage);
  padding-bottom: 3px;
  transition: color var(--transition);
}

.rate-checklist-link:hover {
  color: var(--color-navy);
}

.rates-payment {
  margin-top: 48px;
}

.rates-payment-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 28px 36px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(26, 43, 72, 0.05);
}

.rates-payment-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cream);
  border-radius: 50%;
  color: var(--color-navy);
  font-size: 1rem;
}

.rates-payment-inner img {
  max-width: 160px;
  height: auto;
}

.rates-payment-inner span {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Legacy pricing classes (fallback) */
.pricing-notice {
  background: var(--color-cream-dark);
  padding: 20px 28px;
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.pricing-card {
  background: var(--color-white);
  padding: 36px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--color-border);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(26, 43, 72, 0.08);
}

.pricing-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.pricing-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0 0 0.75rem;
  line-height: 1.65;
}

.pricing-card input[type="text"] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  margin-bottom: 10px;
  transition: border-color var(--transition);
}

.pricing-card input[type="text"]:focus {
  outline: none;
  border-color: var(--color-sage);
}

.pricing-card button {
  width: 100%;
  margin-bottom: 12px;
}

.pricing-card .button {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-sage-dark);
  border-bottom: 1px solid var(--color-sage);
  padding-bottom: 2px;
  transition: color var(--transition);
}

.pricing-card .button:hover {
  color: var(--color-navy);
}

.payment-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.payment-info img {
  max-width: 180px;
}

@media (max-width: 1100px) {
  .rates-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .rate-card--featured {
    transform: none;
    order: -1;
  }

  .rate-card--featured:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {
  .rates-section {
    padding: 70px 0 60px;
  }

  .rates-notice {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .rate-amount {
    font-size: 2.25rem;
  }

  .rates-payment-inner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
}

/* ─── Location Banner ─── */
.location-banner {
  position: relative;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.location-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 22, 34, 0.55);
}

.location-banner .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 60px;
  padding-bottom: 60px;
}

.location-banner h2 {
  color: #fff;
  max-width: 500px;
  margin: 0;
}

.location-details {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--color-text-muted);
}

.map-wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.map-wrap iframe {
  width: 100%;
  max-width: 900px;
  height: 380px;
  border: 0;
}

/* ─── Contact Form ─── */
.contact-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px;
  border: 1px solid rgba(26, 43, 72, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(148, 183, 183, 0.12), rgba(247, 246, 242, 0.92)),
    var(--color-white);
  box-shadow: 0 20px 50px rgba(26, 43, 72, 0.08);
}

.contact-card__intro {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}

.contact-card__icon {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 1.2rem;
  box-shadow: 0 14px 28px rgba(26, 43, 72, 0.18);
}

.contact-card__intro h3 {
  margin: 0 0 8px;
  font-size: 1.3rem;
  color: var(--color-navy);
}

.contact-card__intro p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(26, 43, 72, 0.12);
  border-radius: 16px;
  font-family: var(--font-sans);
  font-size: 0.96rem;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.92);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-sage);
  box-shadow: 0 0 0 4px rgba(148, 183, 183, 0.16);
  transform: translateY(-1px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(26, 43, 72, 0.48);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  align-self: flex-start;
  margin-top: 8px;
}

.contact-status {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 0.92rem;
}

.contact-status.is-success {
  background: #e8f7ef;
  color: #1f7a4c;
  border: 1px solid #b7e4c7;
}

.contact-status.is-error {
  background: #fdecec;
  color: #b42318;
  border: 1px solid #f5c2c7;
}

.contact-hint {
  margin: -6px 0 14px;
  color: rgba(26, 43, 72, 0.55);
  font-size: 0.82rem;
}

/* ─── Footer ─── */
.site-footer {
  background: var(--color-navy-dark);
  color: rgba(255, 255, 255, 0.85);
}

.footer-instagram {
  padding: 0;
}

.footer-instagram-header {
  text-align: center;
  padding: 30px 0 20px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.footer-instagram-header i {
  margin-right: 8px;
}

.footer-instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.footer-instagram-grid a {
  aspect-ratio: 1;
  overflow: hidden;
}

.footer-instagram-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, opacity var(--transition);
}

.footer-instagram-grid a:hover img {
  transform: scale(1.1);
  opacity: 0.85;
}

.footer-main {
  text-align: center;
  padding: 50px 24px 30px;
}

.footer-logo .logo-mark {
  margin: 0 auto 24px;
  border-color: rgba(255, 255, 255, 0.6);
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.footer-nav a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.footer-nav a:hover {
  color: var(--color-sage);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 14px;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ─── Lightbox ─── */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(11, 22, 34, 0.95);
  padding: 60px 20px;
  cursor: pointer;
}

.lightbox img {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox .close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity var(--transition);
}

.lightbox .close:hover {
  opacity: 1;
}

/* ─── Back to Top ─── */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-navy);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-charcoal);
}

/* ─── Floating mobile "Book Now" CTA ─── */
.mobile-book-now {
  display: none;
}

@keyframes bookNowPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(26, 43, 72, 0.35); }
  50% { box-shadow: 0 10px 30px rgba(148, 183, 183, 0.75); }
}

@media (max-width: 768px) {
  .mobile-book-now {
    position: fixed;
    left: 50%;
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    transform: translateX(-50%);
    z-index: 950;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    background: var(--color-sage-dark);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(26, 43, 72, 0.35);
    animation: bookNowPulse 2.6s ease-in-out infinite;
  }

  .mobile-book-now i {
    font-size: 0.85rem;
  }

  .mobile-book-now:hover,
  .mobile-book-now:active {
    background: var(--color-navy);
  }

  /* Lift back-to-top clear of the floating CTA */
  .back-to-top {
    bottom: 84px;
    right: 18px;
  }

  /* Clearance so the floating CTA never covers footer content */
  .footer-bottom {
    padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-book-now {
    animation: none;
  }
}

/* ─── Booking / Subpage overrides ─── */
.page-hero {
  background: var(--color-navy-dark);
  padding: calc(var(--header-height) + 50px) 24px 50px;
  text-align: center;
  color: #fff;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.page-content {
  padding: 50px 0 80px;
}

.booking-section {
  max-width: 800px;
  margin: 0 auto 40px;
  background: var(--color-white);
  padding: 40px 36px;
  border: 1px solid var(--color-border);
}

.booking-section h2,
.booking-section h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.booking-section input,
.booking-section button {
  width: 100%;
  padding: 12px 16px;
  margin: 8px 0;
  border: 1px solid var(--color-border);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  border-radius: 0;
}

.booking-section button {
  background: var(--color-navy);
  color: #fff;
  border-color: var(--color-navy);
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  transition: background var(--transition);
}

.booking-section button:hover {
  background: var(--color-charcoal);
}

.booking-section label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 8px;
  display: block;
}

/* Calendar theming */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 16px;
}

.navbar button {
  flex: 0 0 auto;
  max-width: 120px;
  padding: 10px 16px;
  background: var(--color-navy);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

#monthLabel {
  flex: 1;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-navy);
  margin: 0;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.day {
  padding: 12px;
  text-align: center;
  font-size: 13px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: transform var(--transition);
}

.day.header {
  font-weight: 600;
  background: var(--color-cream);
  color: var(--color-navy);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.day.available {
  background: #e8f0ee;
  color: #2e5e4e;
}

.day.blocked,
.day.weekend.blocked {
  background: #f5e0e0;
  color: #8b3a3a;
  cursor: help;
}

.day.blocked.is-active-block {
  outline: 2px solid #8b3a3a;
  outline-offset: -2px;
  transform: scale(1.04);
}

.calendar-block-notice {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #8b3a3a;
  background: #fdf3f3;
  border: 1px solid #f0c8c8;
  display: none;
}

.calendar-block-notice.is-visible {
  display: block;
}

.calendar-block-notice i {
  margin-right: 6px;
}

.day.weekend:not(.blocked):not(.available):not(.past) {
  background: #faf6ee;
}

.day.past {
  background: #f0f0f0;
  color: #bbb;
  cursor: default;
  opacity: 0.55;
}

.navbar button.is-disabled,
.navbar button:disabled {
  background: #c5c5c5;
  cursor: not-allowed;
  opacity: 0.6;
}

.legend-item,
.calendar-legend {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.legend-color {
  width: 14px;
  height: 14px;
  display: inline-block;
}

.legend-color.blocked {
  background: #f5e0e0;
  border: 1px solid #e0b4b4;
}

.admin {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

/* Checklist page */
.checklist-page h1 {
  text-align: center;
  padding-top: calc(var(--header-height) + 40px);
}

.checklist-box {
  max-width: 640px;
  margin: 0 auto 80px;
  background: var(--color-white);
  padding: 36px;
  border: 1px solid var(--color-border);
}

.checklist-box .item {
  display: flex;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}

.checklist-box .item:last-child {
  border-bottom: none;
}

.checklist-box input[type="checkbox"] {
  margin-right: 14px;
  width: 18px;
  height: 18px;
  accent-color: var(--color-sage-dark);
}

.checklist-box label {
  flex: 1;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--color-text);
}

/* ─── Activities (Belicia equal panels) ─── */
.activities-section {
  width: 100%;
  overflow: hidden;
}

.activities-panels {
  display: flex;
  width: 100%;
  min-height: 640px;
  height: 82vh;
  max-height: 880px;
}

.activity-panel {
  position: relative;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.activity-panel + .activity-panel {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.activity-panel-bg,
.activity-panel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}

.activity-panel:hover .activity-panel-bg,
.activity-panel:hover .activity-panel-img {
  transform: scale(1.06);
}

.activity-panel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  transition: background 0.45s ease;
}

.activity-panel:hover .activity-panel-overlay {
  background: rgba(0, 0, 0, 0.48);
}

.activity-panel-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 28px;
  color: #fff;
}

.activity-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 22px;
}

.activity-title {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 2.6vw, 2.85rem);
  font-weight: 400;
  color: #fff;
  margin: 0 0 22px;
  line-height: 1.15;
  max-width: 92%;
}

.activity-desc {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.92);
  max-width: 240px;
  margin: 0;
}

.activity-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding: 15px 32px;
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: transparent;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.activity-link-dash {
  font-weight: 400;
  letter-spacing: 0;
  opacity: 0.85;
}

.activity-panel:hover .activity-link {
  opacity: 1;
  transform: translateY(0);
}

.activity-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

@media (max-width: 900px) {
  .activities-panels {
    flex-direction: column;
    height: auto;
    max-height: none;
    min-height: 0;
  }

  .activity-panel {
    flex: none;
    min-height: 440px;
  }

  .activity-panel + .activity-panel {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .activity-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 16px;
  }

  .activity-desc {
    max-width: 300px;
    font-size: 0.82rem;
  }

  .activity-link {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (hover: none) {
  .activity-panel .activity-link {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonials-section {
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
  background-color: #0b1622;
  background-image: url('../images/testimonials-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 22, 34, 0.78) 0%,
    rgba(11, 22, 34, 0.52) 45%,
    rgba(11, 22, 34, 0.82) 100%
  );
  z-index: 0;
}

.testimonials-section .container {
  position: relative;
  z-index: 1;
}

.testimonials-heading {
  margin-bottom: 3rem;
}

.testimonials-heading .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.testimonials-heading h2 {
  color: #fff;
}

.testimonials-counter {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
}

/* Shared star box component */
.star-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 8px 14px;
  background: #fffdf5;
  border: 1px solid rgba(245, 179, 1, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.star-box i {
  color: #f5b301;
  font-size: 0.8rem;
}

.star-box--lg {
  padding: 6px 12px;
  margin-top: 6px;
}

.star-box--lg i {
  font-size: 0.9rem;
}

.star-box--card {
  margin: 0 auto 22px;
  padding: 10px 16px;
}

.star-box--card i {
  font-size: 0.95rem;
}

/* Google rating bar */
.google-rating-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 40px;
  margin-bottom: 40px;
  padding: 32px 40px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 40px rgba(26, 43, 72, 0.07);
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.google-rating-main {
  display: flex;
  align-items: center;
  gap: 20px;
}

.google-logo-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cream);
  border-radius: 50%;
  flex-shrink: 0;
}

.google-rating-score-wrap {
  text-align: center;
}

.google-rating-score {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1;
}

.google-rating-meta {
  text-align: left;
}

.google-review-count {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.google-maps-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--color-sage-dark);
  font-weight: 500;
}

.google-maps-link i {
  font-size: 0.65rem;
}

.google-maps-link:hover {
  color: var(--color-navy);
}

.google-rating-divider {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, transparent, var(--color-border), transparent);
  flex-shrink: 0;
}

.google-aspect-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.aspect-tag--stars {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  min-width: 120px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.aspect-tag--stars:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(26, 43, 72, 0.08);
}

.aspect-label {
  font-size: 0.72rem;
  text-transform: lowercase;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* Carousel header */
.testimonials-carousel-header {
  display: flex;
  justify-content: flex-end;
  max-width: 100%;
  padding: 0 50px;
  margin-bottom: 16px;
}

.testimonials-carousel {
  position: relative;
  padding: 0 56px;
}

.testimonials-viewport {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Review cards */
.testimonial-card {
  flex: 0 0 calc(33.333% - 20px);
  margin: 0 10px;
  background: var(--color-white);
  padding: 40px 32px 28px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(26, 43, 72, 0.06);
  box-shadow: 0 4px 28px rgba(26, 43, 72, 0.06);
  transition: transform 0.5s ease, box-shadow 0.5s ease, opacity 0.5s ease;
  opacity: 0.7;
  transform: scale(0.97);
}

.testimonial-card.is-visible {
  opacity: 1;
  transform: scale(1);
}

.testimonial-card:hover {
  box-shadow: 0 16px 48px rgba(26, 43, 72, 0.12);
  transform: scale(1) translateY(-6px);
}

.testimonial-quote {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2rem;
  color: rgba(148, 183, 183, 0.25);
  line-height: 1;
}

.testimonial-text {
  flex: 1;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  text-align: center;
  margin: 0 0 24px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  margin-bottom: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-sage-dark) 100%);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.testimonial-author-wrap {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.testimonial-author {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-navy);
  margin: 0 0 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial-meta {
  font-size: 0.72rem;
  color: var(--color-text-light);
  margin: 0;
}

.testimonial-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: center;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-light);
  padding: 5px 12px;
  background: var(--color-cream);
  border-radius: 20px;
}

.testimonial-source i {
  color: #4285f4;
  font-size: 0.75rem;
}

.local-guide-badge {
  color: var(--color-sage-dark);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

/* Legacy class kept for compatibility */
.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars i {
  color: #f5b301;
  font-size: 1rem;
}

.testimonials-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  font-size: 0.85rem;
}

.testimonials-arrow:hover {
  background: var(--color-navy);
  color: #fff;
  border-color: var(--color-navy);
  transform: translateY(-50%) scale(1.08);
}

.testimonials-arrow--prev { left: 0; }
.testimonials-arrow--next { right: 0; }

.testimonials-footer-nav {
  max-width: 400px;
  margin: 36px auto 0;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
}

.testimonials-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}

.testimonials-dot.active {
  background: #fff;
  width: 24px;
  border-radius: 4px;
}

.testimonials-progress {
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.testimonials-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--color-sage), rgba(255, 255, 255, 0.9));
  border-radius: 2px;
  transition: width 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
}

/* Old aspect-tag fallback */
.aspect-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  min-width: 100px;
}

.aspect-tag .aspect-stars {
  display: flex;
  gap: 2px;
}

.aspect-tag .aspect-stars i {
  color: #f5b301;
  font-size: 0.85rem;
}

@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 20px);
  }

  .google-rating-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 70px 0 60px;
  }

  .testimonials-carousel {
    padding: 0 44px;
  }

  .testimonials-carousel-header {
    padding: 0 44px;
  }

  .testimonial-card {
    flex: 0 0 calc(100% - 20px);
    min-height: 300px;
    padding: 32px 24px 24px;
  }

  .google-rating-bar {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }

  .google-rating-main {
    flex-direction: column;
    text-align: center;
  }

  .google-rating-meta {
    text-align: center;
  }

  .testimonial-text {
    -webkit-line-clamp: 5;
  }
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .gallery-showcase {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .gallery-card--featured {
    grid-column: 1 / -1;
    height: 520px;
  }

  .gallery-card--side {
    height: 400px;
  }

  .footer-instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(11, 22, 34, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-toggle {
    display: flex;
  }

  /* The header Book Now is replaced by the floating CTA on mobile.
     Other header buttons (e.g. checklist "Back to Home") stay visible. */
  .header-actions a[href="booking.html"] {
    display: none;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-image img {
    height: 320px;
  }

  .gallery-showcase {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery-card--side,
  .gallery-card--featured {
    height: 380px;
  }

  .gallery-card--featured .gallery-card-desc,
  .gallery-card--featured .gallery-card-cta {
    display: block;
  }

  .gallery-section-title {
    margin-bottom: 40px;
  }

  .location-banner .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-arrows {
    display: none;
  }

  .section {
    padding: 60px 0;
  }

  .footer-instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .payment-info {
    flex-direction: column;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════
   ABOUT PAGE – Belicia About layout
   ═══════════════════════════════════════════ */

.site-header--inner {
  background: var(--color-white);
  box-shadow: 0 1px 0 var(--color-border);
}

.site-header--inner .logo-mark {
  border-color: var(--color-navy);
  color: var(--color-navy);
}

.site-header--inner .main-nav a {
  color: var(--color-navy);
}

.site-header--inner .main-nav a::after {
  background: var(--color-navy);
}

.site-header--inner .nav-toggle span {
  background: var(--color-navy);
}

.site-header--inner.scrolled {
  background: var(--color-white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* Page banner */
.about-banner {
  position: relative;
  height: 380px;
  margin-top: var(--header-height);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.about-banner h1 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(3rem, 8vw, 5rem);
  margin: 0;
  font-weight: 500;
}

/* Hello intro – overlapping images */
.about-hello {
  padding: 100px 0;
}

.about-hello-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images-stack {
  position: relative;
  min-height: 480px;
}

.about-img-main {
  width: 75%;
  height: 420px;
  object-fit: cover;
}

.about-img-overlap {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 280px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-hello-content .eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.05em;
  font-size: 1rem;
  color: var(--color-navy);
}

.about-hello-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1.25rem;
}

.about-hello-content > p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.about-checklist {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--color-text);
}

.about-checklist li i {
  color: var(--color-sage-dark);
  margin-top: 4px;
  font-size: 0.85rem;
}

.btn--sage {
  background: var(--color-sage-dark);
  color: #fff;
  border-color: var(--color-sage-dark);
  padding: 16px 36px;
}

.btn--sage:hover {
  background: var(--color-navy);
  border-color: var(--color-navy);
}

/* Services / portfolio grid */
.about-services {
  padding: 100px 0;
  background: var(--color-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 30px;
}

.services-intro {
  grid-column: span 2;
  padding-right: 20px;
}

.services-intro h2 {
  margin-bottom: 1rem;
}

.services-intro p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  max-width: 400px;
}

.service-item {
  text-align: center;
  padding: 20px 10px;
  transition: transform var(--transition);
}

.service-item:hover {
  transform: translateY(-8px);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img,
.service-icon svg {
  width: 56px;
  height: 56px;
  stroke: var(--color-navy);
  fill: none;
  stroke-width: 1.2;
}

.service-item h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.4;
  margin: 0;
}

.service-item h4 span {
  display: block;
}

/* Full-width CTA parallax */
.about-cta-parallax {
  position: relative;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.about-cta-parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.about-cta-parallax .container {
  position: relative;
  z-index: 1;
}

.about-cta-parallax .eyebrow {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
  display: block;
}

.about-cta-parallax h2 {
  color: #fff;
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
}

/* Accordion + stats section */
.about-accordion-section {
  padding: 100px 0;
}

.about-accordion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.about-play-btn i {
  color: var(--color-navy);
  font-size: 1rem;
  margin-left: 3px;
}

.about-accordion {
  border-top: 1px solid var(--color-border);
}

.accordion-item {
  border-bottom: 1px solid var(--color-border);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--color-navy);
  transition: color var(--transition);
}

.accordion-trigger:hover {
  color: var(--color-sage-dark);
}

.accordion-icon {
  font-size: 1.25rem;
  font-weight: 300;
  width: 20px;
  flex-shrink: 0;
  color: var(--color-text-muted);
  transition: transform var(--transition);
}

.accordion-item.active .accordion-icon {
  transform: rotate(0deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-panel {
  max-height: 500px;
  padding-bottom: 20px;
}

.accordion-panel p {
  margin: 0;
  padding-left: 36px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Image column with stats */
.about-visual-col {
  position: relative;
}

.about-visual-img-wrap {
  position: relative;
  overflow: hidden;
}

.about-visual-img-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 78%;
}

.book-now-stamp {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 100px;
  height: 100px;
  animation: rotateStamp 20s linear infinite;
}

@keyframes rotateStamp {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.book-now-stamp svg {
  width: 100%;
  height: 100%;
}

.book-now-stamp text {
  font-family: var(--font-serif);
  font-size: 11px;
  fill: var(--color-navy);
  letter-spacing: 2px;
}

.stats-cards {
  display: flex;
  gap: 14px;
  margin-top: -12px;
  position: relative;
  z-index: 2;
  padding: 0 28px;
}

.stat-card {
  flex: 1;
  padding: 18px 18px;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(26, 43, 72, 0.16);
}

.stat-card--sage {
  background: var(--color-sage-dark);
}

.stat-card--navy {
  background: var(--color-navy);
}

.stat-card .stat-label {
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 6px;
}

.stat-card .stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card .stat-desc {
  font-size: 0.68rem;
  opacity: 0.85;
  line-height: 1.45;
}

/* What we offer */
.about-offer {
  padding: 100px 0 80px;
  background: #f0f5f4;
  text-align: center;
  overflow: hidden;
}

.about-offer .eyebrow {
  margin-bottom: 1.5rem;
  display: block;
}

.about-offer h2 {
  max-width: 900px;
  margin: 0 auto 1.5rem;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  min-height: 3em;
}

.about-offer .typing-cursor {
  display: inline-block;
  width: 2px;
  height: 0.9em;
  background: var(--color-navy);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: blink 0.8s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.about-offer-author {
  margin-bottom: 50px;
}

.about-offer-author strong {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-navy);
  display: block;
}

.about-offer-author span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.offer-slider-wrap {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  scroll-behavior: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.offer-slider-wrap.is-dragging {
  cursor: grabbing;
}

.offer-slider {
  display: flex;
  gap: 4px;
  width: max-content;
  user-select: none;
}

.offer-slide {
  flex: 0 0 calc(25% - 3px);
  position: relative;
  overflow: hidden;
  min-width: 0;
  width: min(320px, calc(25vw - 3px));
}

.offer-slide img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.offer-slide:hover img {
  transform: scale(1.06);
}

.offer-slider-wrap::-webkit-scrollbar {
  display: none;
}

.offer-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  text-align: left;
  color: #fff;
}

.offer-slide-caption h5 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin: 0 0 4px;
  font-weight: 500;
}

.offer-slide-caption span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* Newsletter */
.about-newsletter {
  padding: 80px 0;
  text-align: center;
  background: var(--color-white);
}

.about-newsletter h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0;
}

/* Footer columns */
.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 60px 24px;
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: left;
}

.footer-col h6 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 20px;
  font-weight: 500;
}

.footer-col p,
.footer-col a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  display: block;
}

.footer-col a:hover {
  color: var(--color-sage);
}

.footer-col .footer-phone {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: #fff;
  margin-top: 12px;
  display: block;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* About responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-intro {
    grid-column: span 2;
  }

  .offer-slide {
    flex: 0 0 calc(50% - 2px);
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .site-header--inner .main-nav {
    background: rgba(255, 255, 255, 0.98);
  }

  .site-header--inner .main-nav a {
    color: var(--color-navy);
  }

  .about-hello-grid,
  .about-accordion-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-images-stack {
    min-height: 360px;
  }

  .about-img-main {
    height: 300px;
  }

  .about-img-overlap {
    height: 200px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-intro {
    grid-column: span 1;
  }

  .about-cta-parallax {
    background-attachment: scroll;
    min-height: 400px;
  }

  .stats-cards {
    flex-direction: column;
    margin-top: -30px;
  }

  .about-visual-img-wrap img {
    height: 380px;
  }

  .offer-slide {
    flex: 0 0 80%;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════
   ONLINE BOOKING PAGE
   ═══════════════════════════════════════════ */

.booking-page-banner {
  position: relative;
  height: 380px;
  margin-top: var(--header-height);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.booking-page-banner h1 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 500;
  margin: 0;
}

.booking-main {
  padding: 90px 0;
  background: #f0f5f4;
}

.booking-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.booking-intro .eyebrow {
  color: var(--color-sage-dark);
  margin-bottom: 1rem;
  display: block;
}

.booking-intro h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  color: var(--color-navy);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.booking-intro-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.booking-form-card {
  background: var(--color-white);
  padding: 48px 40px;
  box-shadow: 0 4px 40px rgba(26, 43, 72, 0.06);
}

.booking-form-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}

.booking-form-header h2 {
  font-size: 1.5rem;
  margin: 0 0 10px;
  text-align: left;
}

.booking-form-header p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.required {
  color: #c45c5c;
}

.booking-form-group {
  margin-bottom: 28px;
}

.booking-form-group-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin: 0 0 16px;
}

.booking-form-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: -8px 0 18px;
  font-size: 0.8rem;
  color: var(--color-sage-dark);
}

.booking-form-hint i {
  font-size: 0.75rem;
}

.booking-field {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--color-border);
  padding: 14px 0;
  margin-bottom: 4px;
  transition: border-color var(--transition);
}

.booking-field--labeled {
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  border-bottom: none;
  padding: 0;
  margin-bottom: 18px;
}

.booking-field--labeled label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text);
}

.booking-field-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  background: var(--color-cream);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.booking-field--labeled:focus-within .booking-field-inner {
  border-color: var(--color-sage-dark);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(148, 183, 183, 0.2);
}

.booking-field:focus-within {
  border-color: var(--color-sage-dark);
}

.booking-field i,
.booking-field-inner > i {
  color: var(--color-sage-dark);
  font-size: 0.9rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.booking-field input,
.booking-field textarea,
.booking-field-inner input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--color-text);
  background: transparent;
  padding: 0;
  width: 100%;
  min-width: 0;
}

.booking-field input::placeholder,
.booking-field textarea::placeholder,
.booking-field-inner input::placeholder {
  color: var(--color-text-light);
}

/* Enhanced date fields */
.booking-form-group--dates {
  padding: 24px;
  background: linear-gradient(135deg, #f0f5f4 0%, #f7f6f2 100%);
  border: 1px solid rgba(148, 183, 183, 0.35);
  margin-bottom: 32px;
}

.booking-dates-enhanced {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: stretch;
}

.date-field-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 16px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.date-field-card:hover {
  border-color: var(--color-sage);
}

.date-field-card:focus-within {
  border-color: var(--color-sage-dark);
  box-shadow: 0 8px 24px rgba(26, 43, 72, 0.08);
  transform: translateY(-2px);
}

.date-field-card.is-invalid {
  border-color: #d4a0a0;
  background: #fef8f8;
}

.date-field-card.is-valid {
  border-color: var(--color-sage-dark);
}

.date-field-card label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-sage-dark);
  margin-bottom: 10px;
}

.date-field-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.date-field-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cream);
  border-radius: 50%;
  flex-shrink: 0;
}

.date-field-icon i {
  color: var(--color-navy);
  font-size: 0.85rem;
}

.date-field-inner input[type="date"] {
  flex: 1;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-navy);
  border: none;
  outline: none;
  background: transparent;
  padding: 8px 0;
  min-height: 40px;
  cursor: pointer;
  color-scheme: light;
}

.date-field-inner input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
  padding: 4px;
  transition: opacity var(--transition);
}

.date-field-inner input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

.date-field-display {
  display: block;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--color-border);
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.date-field-card.is-valid .date-field-display {
  color: var(--color-navy);
}

.date-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 4px;
  min-width: 72px;
}

.date-connector-line {
  width: 1px;
  flex: 1;
  min-height: 12px;
  background: linear-gradient(to bottom, transparent, var(--color-sage), transparent);
}

.date-connector-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 12px;
  background: var(--color-navy);
  color: #fff;
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(26, 43, 72, 0.2);
}

.date-connector-badge i {
  font-size: 0.75rem;
  opacity: 0.85;
}

.date-connector-badge span {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.booking-date-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 18px 0 0;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.booking-date-note i {
  color: var(--color-sage-dark);
  margin-top: 2px;
  flex-shrink: 0;
}

.booking-date-note.is-warning {
  color: #9b4d4d;
}

.booking-date-note.is-warning i {
  color: #c45c5c;
}

.booking-rates-panel {
  margin-top: 22px;
  padding: 22px 24px;
  background: linear-gradient(135deg, rgba(148, 183, 183, 0.12) 0%, rgba(26, 43, 72, 0.04) 100%);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-sage-dark);
}

.booking-rates-panel__header h3 {
  margin: 0 0 4px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--color-navy);
}

.booking-rates-panel__header p {
  margin: 0 0 16px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.booking-rates-panel__summary {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 14px;
}

.booking-rates-stat {
  flex: 1 1 140px;
}

.booking-rates-stat__label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.booking-rates-stat__value {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-navy);
}

.booking-rates-stat__value--total {
  font-size: 1.65rem;
  color: var(--color-sage-dark);
}

.booking-rates-panel__breakdown {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-rates-panel__breakdown li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--color-text);
  padding: 6px 0;
  border-bottom: 1px solid rgba(26, 43, 72, 0.08);
}

.booking-rates-panel__breakdown li span:last-child {
  font-weight: 600;
  color: var(--color-navy);
  white-space: nowrap;
}

.booking-rates-panel__note {
  margin: 0;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.booking-form-group--dates:target {
  scroll-margin-top: 100px;
}

.booking-field--dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-bottom: none;
  padding: 20px 0 0;
}

.booking-field--dates .date-group {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 14px;
}

.booking-field--dates .date-group:focus-within {
  border-color: var(--color-sage-dark);
}

.booking-submit {
  width: 100%;
  margin-top: 28px;
  padding: 18px 32px;
  background: var(--color-sage-dark);
  color: #fff;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background var(--transition);
}

.booking-submit:hover {
  background: var(--color-navy);
}

.booking-status {
  text-align: center;
  margin-top: 16px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  min-height: 1.25em;
}

.booking-status.is-success {
  color: #1f7a4c;
}

.booking-status.is-error {
  color: #b42318;
}

.booking-field-inner select,
.booking-field-inner textarea {
  width: 100%;
  border: none;
  background: transparent;
  font: inherit;
  color: inherit;
  outline: none;
  resize: vertical;
}

.booking-field-inner--textarea {
  align-items: flex-start;
  padding-top: 12px;
  padding-bottom: 12px;
}

/* Calendar block */
.booking-calendar-section {
  padding: 80px 0;
  background: var(--color-white);
}

.booking-calendar-section .section-title {
  margin-bottom: 2.5rem;
}

.booking-calendar-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  border: 1px solid var(--color-border);
  background: var(--color-cream);
}

/* Admin block */
.booking-admin-section {
  padding: 60px 0 80px;
  background: var(--color-cream);
}

.booking-admin-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 36px 40px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
}

.booking-admin-card h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.booking-admin-card input,
.booking-admin-card button {
  width: 100%;
  padding: 12px 16px;
  margin: 8px 0;
  border: 1px solid var(--color-border);
  font-family: var(--font-sans);
  font-size: 0.9rem;
}

.booking-admin-card button {
  background: var(--color-navy);
  color: #fff;
  border-color: var(--color-navy);
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.booking-admin-card label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 12px;
  display: block;
}

.booking-admin-card .admin {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

/* Contact numbers strip */
.contact-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
}

.contact-number-item {
  position: relative;
  padding: 70px 30px;
  text-align: center;
  overflow: hidden;
}

.contact-number-item:not(:last-child) {
  border-right: 1px solid var(--color-border);
}

.contact-number-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: clamp(6rem, 12vw, 9rem);
  font-weight: 600;
  color: rgba(148, 183, 183, 0.2);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.contact-number-item h4 {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 500;
  color: var(--color-navy);
  margin: 0;
  line-height: 1.5;
}

.contact-number-item a {
  position: relative;
  z-index: 1;
  color: var(--color-navy);
}

.contact-number-item a:hover {
  color: var(--color-sage-dark);
}

@media (max-width: 1024px) {
  .booking-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .booking-form-card {
    padding: 36px 28px;
  }
}

@media (max-width: 768px) {
  .contact-numbers {
    grid-template-columns: 1fr;
  }

  .contact-number-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  .booking-field--dates {
    grid-template-columns: 1fr;
  }

  .booking-dates-enhanced {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .date-connector {
    flex-direction: row;
    min-width: 0;
    padding: 8px 0;
  }

  .date-connector-line {
    width: auto;
    height: 1px;
    flex: 1;
    min-height: 0;
    background: linear-gradient(to right, transparent, var(--color-sage), transparent);
  }

  .date-connector-badge {
    flex-direction: row;
    gap: 8px;
    padding: 8px 14px;
  }

  .booking-form-group--dates {
    padding: 20px 16px;
  }

  .booking-calendar-wrap {
    padding: 24px 16px;
  }
}
