:root {
  --cream: #faf7f2;
  --cream-alt: #f1ebe0;
  --sage: #7a9b76;
  --sage-bright: #96b892;
  --sage-dark: #3f5940;
  --sage-deep: #2f4530;
  --charcoal: #2f2b26;
  --text-muted: #6e6a63;
  --border: rgba(47, 43, 38, 0.12);
  --cream-text: #f6f2ea;

  --font: "Inter", "Segoe UI", sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --container-width: 1360px;
  --ease: cubic-bezier(0.16, 0.84, 0.44, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { transition: none; }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--sage-dark), var(--sage));
  z-index: 1000;
  transition: width 0.1s linear;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; position: relative; }
.section-alt { background: var(--cream-alt); }

.section-branded {
  position: relative;
  overflow: hidden;
  background: var(--sage-deep);
  color: var(--cream-text);
}

.section-branded > .container { position: relative; z-index: 1; }
.section-branded .eyebrow { color: var(--sage-bright); }
.section-branded h2 { color: var(--cream-text); }
.section-branded .lead { color: rgba(246, 242, 234, 0.75); }

.eyebrow {
  display: inline-block;
  color: var(--sage-dark);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; }

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  max-width: 680px;
  margin-bottom: 16px;
}

.lead {
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.text-accent {
  position: relative;
  display: inline-block;
  color: var(--sage-dark);
}

.text-accent::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 4px;
  height: 12px;
  background: rgba(122, 155, 118, 0.32);
  border-radius: 6px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: underline-draw 0.8s var(--ease) 0.9s forwards;
}

@keyframes underline-draw {
  to { transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
  .text-accent::after { animation: none; transform: scaleX(1); }
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.94rem;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.25s ease, color 0.2s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -60%;
  width: 40%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
  z-index: 1;
}

.btn:hover::before { left: 120%; }

.btn-lg { padding: 15px 32px; }

.btn-primary {
  background: var(--sage-dark);
  color: var(--cream-text);
}

.btn-primary:hover {
  background: var(--sage-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -10px rgba(63, 89, 64, 0.5);
}

.btn-ghost {
  border-color: var(--border);
  background: transparent;
  color: var(--charcoal);
}

.btn-ghost:hover {
  border-color: var(--sage-dark);
  color: var(--sage-dark);
}

.section-branded .btn-ghost { color: var(--cream-text); border-color: rgba(246, 242, 234, 0.3); }
.section-branded .btn-ghost:hover { border-color: var(--cream-text); color: var(--cream-text); }

.btn-block { width: 100%; margin-top: 8px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
}

.site-header.scrolled {
  background: rgba(250, 247, 242, 0.94);
  border-bottom-color: var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  transition: padding 0.3s ease;
}

.site-header.scrolled .nav { padding: 11px 0; }

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--sage-deep);
}

.logo svg { width: 22px; height: 22px; color: var(--sage-dark); flex-shrink: 0; }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--sage-dark);
  transition: width 0.25s var(--ease);
}

.nav-links a:hover, .nav-links a.active { color: var(--charcoal); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; gap: 10px; }

/* Hero */
.hero { position: relative; padding: 120px 0 80px; overflow: hidden; }

.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  animation: float 16s ease-in-out infinite;
}

.blob-1 { width: 460px; height: 460px; top: -180px; left: -120px; background: var(--sage); }
.blob-2 { width: 380px; height: 380px; bottom: -160px; right: -80px; background: var(--sage-bright); animation-delay: -8s; animation-duration: 19s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -25px) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) { .blob { animation: none; } }

.hero > .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.pill {
  display: inline-block;
  background: rgba(122, 155, 118, 0.14);
  color: var(--sage-deep);
  border: 1px solid rgba(122, 155, 118, 0.35);
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 500;
  margin-bottom: 26px;
}

.hero h1 {
  font-size: clamp(2.1rem, 3.8vw, 3.1rem);
  margin: 0 0 20px;
  line-height: 1.15;
}

.hero-content p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 0 32px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }

.disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.82rem;
  max-width: 500px;
}

.info-icon { color: var(--sage-dark); flex-shrink: 0; }

/* Hero visual */
.hero-visual { position: relative; }

.hero-photo-card {
  background: var(--cream-alt);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 30px 60px -30px rgba(47, 43, 38, 0.25);
}

.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  border-radius: 18px;
  background: linear-gradient(160deg, var(--sage-bright), var(--sage-dark));
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: slow-zoom 22s ease-in-out infinite;
}

@keyframes slow-zoom {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo img, .about-photo img { animation: none; }
}

.hero-photo.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(246, 242, 234, 0.85);
  font-size: 0.9rem;
}

.hero-photo-tag {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 6px 6px;
}

.hero-photo-tag strong { font-family: var(--font-display); font-size: 1.05rem; }
.hero-photo-tag span { color: var(--text-muted); font-size: 0.85rem; }

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 220px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 20px 40px -20px rgba(47, 43, 38, 0.3);
  font-size: 0.85rem;
  animation: card-float 8s ease-in-out infinite;
}

.float-card-top { top: 6%; right: -8%; }
.float-card-bottom { bottom: 8%; left: -10%; animation-delay: -4s; }

@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (prefers-reduced-motion: reduce) { .float-card { animation: none; } }

.float-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sage-dark);
  box-shadow: 0 0 0 4px rgba(63, 89, 64, 0.18);
  flex-shrink: 0;
}

.float-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--sage-dark);
  animation: dot-pulse 2.2s ease-out infinite;
}

.float-dot-alt { background: #b98a5a; box-shadow: 0 0 0 4px rgba(185, 138, 90, 0.18); }
.float-dot-alt::after { border-color: #b98a5a; }

@keyframes dot-pulse {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.2); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) { .float-dot::after { animation: none; display: none; } }

.float-card strong { display: block; font-family: var(--font-display); font-size: 0.92rem; margin-bottom: 2px; }
.float-card span { color: var(--text-muted); }

@media (max-width: 1240px) {
  .float-card-top { right: -4%; }
  .float-card-bottom { left: -4%; }
}

/* Hero stats */
.hero-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 56px;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(122, 155, 118, 0.1);
  border: 1px solid rgba(122, 155, 118, 0.25);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--sage-deep);
  font-weight: 500;
}

.hero-stat-icon { color: var(--sage-dark); font-weight: 700; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3 / 3.6;
  border-radius: 20px;
  background: linear-gradient(160deg, var(--sage-bright), var(--sage-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(246, 242, 234, 0.85);
  font-size: 0.9rem;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slow-zoom 26s ease-in-out infinite;
  animation-delay: -6s;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 32px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.check-icon { color: var(--sage-dark); font-weight: 700; }

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.step { border-top: 2px solid var(--sage-dark); padding-top: 18px; }

.step-number {
  display: block;
  color: var(--sage-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.step p { color: var(--text-muted); font-size: 0.92rem; margin-top: 8px; }

/* Insurance */
.insurance-row {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.insurance-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.insurance-badges { display: flex; flex-wrap: wrap; gap: 10px; }

.badge {
  background: var(--cream-alt);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.86rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Feature cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.feature-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s var(--ease), box-shadow 0.3s ease;
  --mx: 50%;
  --my: 50%;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(280px circle at var(--mx) var(--my), rgba(122, 155, 118, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.feature-card:hover {
  border-color: var(--sage);
  transform: translateY(-6px);
  box-shadow: 0 24px 44px -24px rgba(63, 89, 64, 0.35);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 42px;
  height: 42px;
  color: var(--sage-dark);
  margin-bottom: 18px;
  transition: transform 0.35s var(--ease);
}

.feature-card:hover .feature-icon { transform: scale(1.12) rotate(-4deg); }
.feature-icon svg { width: 100%; height: 100%; }

.feature-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; }

/* Booking */
.booking-card {
  text-align: left;
  max-width: 680px;
  margin: 44px auto 0;
  background: rgba(246, 242, 234, 0.06);
  border: 1px solid rgba(246, 242, 234, 0.18);
  border-radius: 22px;
  padding: 36px;
}

.booking-field { margin-bottom: 22px; }

.booking-field > label {
  display: block;
  font-size: 0.85rem;
  color: rgba(246, 242, 234, 0.75);
  margin-bottom: 10px;
}

.optional-tag { color: rgba(246, 242, 234, 0.5); font-weight: 400; }

.booking-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.booking-field input,
.booking-field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(246, 242, 234, 0.2);
  border-radius: 10px;
  color: var(--cream-text);
  padding: 12px 14px;
  font-size: 0.95rem;
  font-family: var(--font);
  resize: vertical;
}

.booking-field input::placeholder,
.booking-field textarea::placeholder { color: rgba(246, 242, 234, 0.4); }

.booking-field input:focus,
.booking-field textarea:focus { outline: none; border-color: var(--sage-bright); }

.date-input {
  color-scheme: dark;
  cursor: pointer;
}

.date-input::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}

.option-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.option-row { display: flex; flex-wrap: wrap; gap: 10px; }

.option-chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(246, 242, 234, 0.2);
  border-radius: 10px;
  color: var(--cream-text);
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.option-chip.small { padding: 9px 16px; font-size: 0.86rem; }

.option-chip:hover { border-color: var(--sage-bright); }

.option-chip.active {
  border-color: var(--sage-bright);
  background: rgba(150, 184, 146, 0.2);
}

.option-chip.disabled, .option-chip:disabled { opacity: 0.3; cursor: not-allowed; }
.option-chip.disabled:hover, .option-chip:disabled:hover { border-color: rgba(246, 242, 234, 0.2); }

.booking-hint { color: rgba(246, 242, 234, 0.55); font-size: 0.86rem; }

.booking-error {
  background: rgba(220, 120, 90, 0.15);
  border: 1px solid rgba(220, 120, 90, 0.4);
  color: #f0b7a3;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.booking-disclaimer {
  text-align: center;
  color: rgba(246, 242, 234, 0.5);
  font-size: 0.78rem;
  margin-top: 14px;
}

.my-bookings { max-width: 680px; margin: 32px auto 0; }
.my-bookings h3 { font-size: 1.1rem; margin-bottom: 16px; color: var(--cream-text); }
.bookings-empty { color: rgba(246, 242, 234, 0.55); font-size: 0.9rem; }

.booking-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(246, 242, 234, 0.15);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 10px;
}

.booking-item strong { display: block; font-family: var(--font-display); color: var(--cream-text); margin-bottom: 4px; }
.booking-item span { color: rgba(246, 242, 234, 0.65); font-size: 0.85rem; }

.booking-cancel {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid rgba(246, 242, 234, 0.2);
  color: rgba(246, 242, 234, 0.7);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.booking-cancel:hover { border-color: #e8a48c; color: #e8a48c; }

/* FAQ */
.faq-list { max-width: 760px; margin-top: 32px; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  color: var(--charcoal);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  padding: 22px 0;
  cursor: pointer;
  text-align: left;
}

.faq-icon { flex-shrink: 0; color: var(--sage-dark); font-size: 1.3rem; line-height: 1; transition: transform 0.25s ease; }
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease); }
.faq-answer p { color: var(--text-muted); padding-bottom: 22px; font-size: 0.94rem; max-width: 640px; }

/* CTA */
.cta-outer { padding: 100px 0; }

.cta-card {
  position: relative;
  text-align: center;
  background: var(--sage-deep);
  color: var(--cream-text);
  border-radius: 28px;
  padding: 70px 32px;
}

.cta-card h2 { color: var(--cream-text); margin: 0 auto 16px; }
.cta-card p { color: rgba(246, 242, 234, 0.75); max-width: 520px; margin: 0 auto 32px; }
.cta-card .hero-actions { justify-content: center; }
.cta-card .btn-ghost { color: var(--cream-text); border-color: rgba(246, 242, 234, 0.3); }
.cta-card .btn-ghost:hover { border-color: var(--cream-text); }

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: rgba(246, 242, 234, 0.85);
  padding: 64px 0 32px;
}

.site-footer .logo { color: var(--cream-text); }
.site-footer .logo svg { color: var(--sage-bright); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p { color: rgba(246, 242, 234, 0.6); font-size: 0.9rem; margin-top: 16px; max-width: 340px; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(246, 242, 234, 0.55);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(246, 242, 234, 0.75);
  font-size: 0.92rem;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

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

.footer-legal { border-top: 1px solid rgba(246, 242, 234, 0.12); padding-top: 26px; }
.footer-legal p { color: rgba(246, 242, 234, 0.5); font-size: 0.8rem; margin-bottom: 10px; max-width: 900px; }
.footer-copyright { margin-bottom: 0; }

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(47, 43, 38, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 200;
}

.modal-overlay.open { display: flex; }

.modal {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 34px;
}

.modal h3 { font-size: 1.35rem; margin-bottom: 8px; }
.modal-sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 22px; }

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover { color: var(--charcoal); }

.modal form label { display: block; font-size: 0.84rem; color: var(--text-muted); margin-bottom: 6px; }

.modal form input,
.modal form textarea {
  width: 100%;
  background: var(--cream-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--charcoal);
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  font-family: var(--font);
  resize: vertical;
}

.modal form input:focus, .modal form textarea:focus { outline: none; border-color: var(--sage-dark); }

.modal-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(122, 155, 118, 0.16);
  color: var(--sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 18px;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sage-dark);
  color: var(--cream-text);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, box-shadow 0.3s ease;
  z-index: 90;
  box-shadow: 0 10px 26px -10px rgba(63, 89, 64, 0.6);
}

.back-to-top svg { width: 20px; height: 20px; }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); }

/* Responsive */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content p, .disclaimer { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .disclaimer { justify-content: center; }
  .hero-visual { max-width: 420px; margin: 60px auto 0; }
  .float-card { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 360px; margin: 0 auto; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .booking-grid-2, .option-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section, .cta-outer { padding: 64px 0; }
  .hero { padding: 100px 0 60px; }
  .cards-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .nav-actions .btn-ghost { display: none; }
  .logo { font-size: 0.95rem; white-space: nowrap; }
  .nav-actions .btn-primary { padding: 10px 16px; font-size: 0.8rem; white-space: nowrap; }
  .back-to-top { right: 18px; bottom: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-card { padding: 48px 24px; }
  .booking-card { padding: 26px 20px; }
}
