/* Modern stylesheet compiled from SCSS */

:root {
  --primary: #2f855a;
  --primary-dark: #22543d;
  --primary-light: #68d391;
  --accent: #38a169;
  --accent-alt: #2f855a;
  --bg: #f3faf5;
  --card: #ffffff;
  --surface: #eaf7ef;
  --muted: #4a5568;
  --muted-light: #718096;
  --ink: #0f172a;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 999px;
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Animations */
@keyframes slideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

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

html {
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-weight: 400;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: Lora, Georgia, 'Times New Roman', serif;
  color: var(--primary-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
}

h1 { font-size: 2.25rem; letter-spacing: -0.02em; }
h2 { font-size: 1.875rem; position: relative; padding-bottom: 1.5rem; text-align: center; }
h2::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-light), var(--primary));
  border-radius: 2px;
}
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }
h5, h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

a {
  color: var(--primary);
  transition: color 250ms ease-in-out;
}

a:hover { color: var(--primary-dark); }
strong { font-weight: 700; color: var(--ink); }
em { font-style: italic; }

ul, ol { margin-bottom: 1rem; padding-left: 1.5rem; }
li { margin-bottom: 0.5rem; }

blockquote {
  border-left: 4px solid var(--primary-light);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  color: var(--muted);
  font-style: italic;
}

code {
  background: var(--surface);
  padding: 0.2em 0.4em;
  border-radius: 8px;
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 0.9em;
}

pre {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 12px;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

pre code { background: none; padding: 0; }

hr {
  border: none;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  margin: 3rem 0;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(47, 133, 90, 0.15);
  z-index: 40;
  box-shadow: 0 4px 16px rgba(47, 133, 90, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.9rem 2rem;
  position: relative;
}

.header-inner::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: auto;
  pointer-events: none;
}

.brand {
  color: inherit;
  text-decoration: none;
  display: flex;
  gap: 0.85rem;
  align-items: center;
  justify-content: center;
  width: clamp(300px, 34vw, 420px);
  min-width: 300px;
  transition: transform 250ms ease-in-out;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.brand:hover {
  transform: translateX(-50%) scale(1.02);
}

.site-logo {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid var(--primary-light);
  box-shadow: 0 4px 12px rgba(47, 133, 90, 0.15);
  transition: all 250ms ease-in-out;
}

.brand:hover .site-logo {
  box-shadow: 0 6px 20px rgba(47, 133, 90, 0.25);
  border-color: var(--primary);
}

.brand-text strong {
  display: block;
  font-family: Lora, Georgia, serif;
  font-size: 1.12rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-text small {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.main-nav {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-left: auto;
}

.nav-menu {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

@media (max-width: 1200px) {
  .header-inner {
    padding: 0.85rem 1.35rem;
    gap: 1.25rem;
  }

  .brand {
    width: clamp(260px, 33vw, 360px);
    min-width: 260px;
  }

  .site-logo {
    width: 74px;
    height: 74px;
  }

  .brand-text strong {
    font-size: 1.04rem;
  }

  .brand-text small {
    font-size: 0.8rem;
  }
}

@media (min-width: 1001px) and (max-width: 1100px) {
  .brand {
    left: 48%;
  }
}

.nav-menu a {
  color: var(--ink);
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: all 250ms ease-in-out;
  font-weight: 600;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary));
  transform: translateX(-50%);
  transition: width 250ms ease-in-out;
}

.nav-menu a:hover {
  background: rgba(47, 133, 90, 0.06);
  color: var(--primary);
}

.nav-menu a:hover::after {
  width: 70%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  color: #fff;
  box-shadow: 0 4px 12px rgba(47, 133, 90, 0.2);
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(47, 133, 90, 0.3);
}

.nav-toggle {
  background: none;
  border: none;
  padding: 0.4rem;
  cursor: pointer;
  display: none;
}

.nav-toggle .hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: all 250ms ease-in-out;
}

.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: all 250ms ease-in-out;
}

.nav-toggle .hamburger::before { top: -6px; }
.nav-toggle .hamburger::after { top: 6px; }

.nav-toggle:hover .hamburger::before { top: -7px; }
.nav-toggle:hover .hamburger::after { top: 7px; }

/* Header Social Icons */
.header-social {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  order: -1;
}

.header-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(47, 133, 90, 0.05), rgba(104, 211, 145, 0.08));
  color: var(--primary);
  text-decoration: none;
  transition: all 250ms ease-in-out;
  border: 1.5px solid rgba(47, 133, 90, 0.1);
  font-size: 0.95rem;
}

.header-social a:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 16px rgba(47, 133, 90, 0.25);
  border-color: var(--primary);
}

.header-social a.phone-btn {
  background: linear-gradient(135deg, rgba(56, 161, 105, 0.08), rgba(47, 133, 90, 0.08));
  color: var(--accent);
  border-color: rgba(56, 161, 105, 0.18);
}

.header-social a.phone-btn:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-alt));
  color: #fff;
  box-shadow: 0 6px 16px rgba(56, 161, 105, 0.28);
  border-color: var(--accent);
}

/* Sections */
.section { padding: 4rem 0; }

.about { background: var(--surface); }
.about p { max-width: 740px; margin: 1rem auto; text-align: center; font-size: 1.125rem; }

.stats { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; }
.stats h2 { color: #fff; margin-bottom: 3rem; }
.stats h2::after { background: rgba(255, 255, 255, 0.3); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.stat {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.stat .number { font-size: 1.75rem; font-weight: 700; color: #fff; }
.stat .label { color: rgba(255, 255, 255, 0.8); margin-top: 0.5rem; font-size: 0.875rem; }

.services { background: var(--card); }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: all 250ms ease-in-out;
  text-align: center;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
  transition: transform 250ms ease-in-out;
}

.card:hover .icon { transform: scale(1.1); }
.card h3 { color: var(--primary-dark); margin-bottom: 0.5rem; }
.card p { margin-bottom: 0; }

/* Gallery */
.gallery {
  background: linear-gradient(to bottom, var(--surface), var(--bg));
  display: flex;
  align-items: stretch;
  padding: 1rem 0;
  height: min(calc(100vh - var(--header-height, 0px)), 860px);
  height: min(calc(100dvh - var(--header-height, 0px)), 860px);
  overflow: hidden;
}

.gallery-shell {
  width: min(1280px, calc(100% - 3rem));
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 1rem;
  height: 100%;
  min-height: 0;
}

.gallery-intro {
  text-align: center;
  margin-bottom: 0;
}

.gallery-kicker {
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.gallery-lead {
  max-width: 760px;
  margin: 0.75rem auto 0;
}

.gallery-premium {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 1rem;
}

.gallery-viewport {
  overflow: hidden;
  border-radius: 20px;
  min-height: 0;
  height: 100%;
}

.gallery-track {
  display: flex;
  transition: transform 500ms ease;
  height: 100%;
}

.gallery-page {
  min-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 1rem;
  height: 100%;
  min-height: 0;
}

.gallery-main,
.gallery-small {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #0f172a;
  box-shadow: var(--shadow-md);
  min-height: 0;
  height: 100%;
  cursor: pointer;
}

.gallery-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  min-height: 0;
  height: 100%;
}

.gallery-main img,
.gallery-small img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  image-rendering: auto;
  transition: transform 350ms ease-in-out;
}

.gallery-main::after,
.gallery-small::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.64) 6%, rgba(15, 23, 42, 0.08) 60%, transparent 100%);
}

.gallery-main figcaption,
.gallery-small figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.gallery-main:hover img,
.gallery-small:hover img {
  transform: scale(1.01);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-dark);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 5;
  box-shadow: var(--shadow-md);
  transition: all 250ms ease-in-out;
}

.gallery-nav.prev { left: -0.75rem; }
.gallery-nav.next { right: -0.75rem; }

.gallery-nav:hover {
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0;
}

.gallery-dots button {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.18);
  cursor: pointer;
  transition: all 250ms ease-in-out;
}

.gallery-dots button.active {
  width: 28px;
  background: var(--primary-dark);
}

.gallery-source {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  padding: 2rem;
}

.gallery-lightbox.show {
  display: flex;
}

.gallery-lightbox-content {
  position: relative;
  width: min(1100px, 100%);
  max-height: 92vh;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0.75rem;
}

.gallery-lightbox-image {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.gallery-lightbox-caption {
  color: #fff;
  text-align: center;
  font-weight: 600;
  margin: 0;
}

.gallery-lightbox-close,
.gallery-lightbox-prev,
.gallery-lightbox-next {
  position: absolute;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-dark);
  font-size: 1.15rem;
  box-shadow: var(--shadow-md);
}

.gallery-lightbox-close {
  top: -0.5rem;
  right: -0.5rem;
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox-prev { left: -1rem; }
.gallery-lightbox-next { right: -1rem; }

@media (max-width: 768px) {
  .gallery-lightbox {
    padding: 1rem;
  }

  .gallery-lightbox-prev { left: 0.2rem; }
  .gallery-lightbox-next { right: 0.2rem; }

  .gallery-lightbox-close {
    top: 0.2rem;
    right: 0.2rem;
  }
}

@media (max-width: 1000px) {
  .gallery-shell {
    width: min(1200px, calc(100% - 2rem));
  }
}

@media (max-width: 768px) {
  .gallery {
    padding: 0.75rem 0;
  }

  .gallery-shell {
    width: calc(100% - 2rem);
  }

  .gallery-page {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 2fr) minmax(0, 1fr);
  }

  .gallery-side {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }

  .gallery-nav {
    width: 38px;
    height: 38px;
  }

  .gallery-nav.prev { left: 0.25rem; }
  .gallery-nav.next { right: 0.25rem; }
}

/* Reviews */
.reviews { background: var(--card); }

.reviews-container {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 0;
  scroll-behavior: smooth;
}

.review {
  background: linear-gradient(135deg, rgba(47, 133, 90, 0.02), rgba(104, 211, 145, 0.06));
  padding: 1.5rem;
  border-radius: 12px;
  min-width: 280px;
  border: 1px solid rgba(47, 133, 90, 0.1);
  transition: all 250ms ease-in-out;
  box-shadow: var(--shadow-sm);
}

.review:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.review p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-style: italic;
}

.review cite {
  display: block;
  font-weight: 600;
  color: var(--primary-dark);
  font-style: normal;
}

/* Booking */
.booking { background: linear-gradient(to bottom, var(--surface), var(--bg)); }

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.booking-info {
  background: linear-gradient(165deg, rgba(47, 133, 90, 0.09), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(47, 133, 90, 0.14);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

.booking-kicker {
  display: inline-block;
  margin-bottom: 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dark);
  text-align: center;
  width: 100%;
}

.booking-info h2 {
  text-align: center;
  margin-bottom: 0.75rem;
}

.booking-subtext {
  font-size: 1.05rem;
  text-align: center;
  margin-bottom: 1.25rem;
}

.benefits {
  list-style: none;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.benefits li {
  color: var(--muted);
  margin-bottom: 0;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(47, 133, 90, 0.12);
  border-radius: 12px;
  padding: 0.75rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.benefit-check {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-top: 0.15rem;
  flex: 0 0 22px;
}

.benefits li strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--ink);
}

.benefits li small {
  display: block;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.35;
}

.booking-note {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.booking-form {
  background: var(--card);
  padding: 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(47, 133, 90, 0.12);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.booking-form-title {
  margin-bottom: 0.25rem;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 1rem;
}

.booking-form .row {
  display: flex;
  gap: 0.75rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(47, 133, 90, 0.14);
  background: rgba(255, 255, 255, 0.95);
  width: 100%;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 250ms ease-in-out;
  flex: 1;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder { color: var(--muted-light); }

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(47, 133, 90, 0.1);
}

.booking-form select { cursor: pointer; }
.booking-form textarea { resize: vertical; min-height: 80px; }
.booking-form .large { padding: 0.9rem; font-weight: 700; }

.booking-form-meta {
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  color: var(--muted-light);
  text-align: center;
  font-weight: 700;
}

.form-message {
  display: none;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  animation: slideIn 0.3s ease-out;
}

.form-message.show { display: block; }
.form-message.success { background: #ecfdf5; color: #065f46; border: 1px solid #c1fae8; }
.form-message.error { background: #fff1f2; color: #9f1239; border: 1px solid #fde2e4; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 250ms ease-in-out;
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(47, 133, 90, 0.1);
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn.primary:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  color: #fff;
}

/* Floating buttons */
.sticky-cta {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  display: flex;
  gap: 0.5rem;
  transition: all 250ms ease-in-out;
  z-index: 50;
}

.sticky-cta:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.scroll-top {
  position: fixed;
  right: 1.5rem;
  bottom: 100px;
  background: #fff;
  border: 2px solid var(--primary);
  color: var(--primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 250ms ease-in-out;
  z-index: 50;
}

.scroll-top:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(15, 23, 42, 0.04);
  background: var(--bg);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: var(--muted);
  font-size: 0.875rem;
}

.social {
  display: flex;
  gap: 1rem;
}

.social a {
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.04);
  transition: all 250ms ease-in-out;
}

.social a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

main { min-height: calc(100vh - 400px); }

/* Utilities */
.animate-in { animation: slideIn 0.3s ease-out; }
.animate-fade { animation: fadeIn 0.4s ease-out; }
.animate-slide-up { animation: slideUp 0.5s ease-out; }
.hidden { display: none !important; }
.text-center { text-align: center; }



/* Responsive */
@media (max-width: 1000px) {
  h1 { font-size: 1.875rem; }
  h2 { font-size: 1.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-info,
  .booking-form { padding: 1.2rem; }

  .brand {
    width: clamp(240px, 40vw, 320px);
    min-width: 240px;
  }
  
  .header-inner {
    padding: 0.8rem 1rem;
  }
  
  .site-logo {
    width: 68px;
    height: 68px;
  }
}

@media (max-width: 768px) {
  /* Typography adjustments */
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.375rem; }
  .section { padding: 2.5rem 0; }
  
  /* Header mobile layout */
  .header-inner {
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    gap: 1rem;
    justify-content: center;
  }
  
  /* Brand stays centered but adjusts size */
  .brand {
    position: relative;
    left: auto;
    transform: none;
    order: 1;
    flex: 0 0 100%;
    justify-content: center;
  }
  
  .brand:hover {
    transform: scale(1.02);
  }
  
  .site-logo {
    width: 64px;
    height: 64px;
  }
  
  .brand-text strong {
    font-size: 1.05rem;
  }
  
  .brand-text small {
    font-size: 0.85rem;
  }
  
  /* Social icons - stack on left */
  .header-social {
    order: 0;
    gap: 0.5rem;
    padding-right: 0.75rem;
    border-right: 2px solid rgba(47, 133, 90, 0.1);
  }
  
  .header-social a {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
  }
  
  /* Navigation with hamburger */
  .main-nav {
    order: 2;
    margin-left: 0;
    padding-left: 0.75rem;
    border-left: 2px solid rgba(47, 133, 90, 0.1);
  }
  
  .nav-toggle { 
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-menu {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 280px;
    background: var(--card);
    padding: 2rem 1.5rem;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    display: none;
    z-index: 1000;
    gap: 0.5rem;
    align-items: stretch;
  }
  
  .nav-menu.open { 
    display: flex;
    animation: slideInRight 0.3s ease-out;
  }
  
  .nav-menu a {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    font-size: 1.125rem;
    text-align: left;
  }
  
  .nav-menu a::after {
    display: none;
  }
  
  .nav-cta {
    margin-top: 1rem;
    text-align: center;
  }
  
  /* Content sections */
  
  .cards { 
    grid-template-columns: 1fr !important; 
    gap: 1.25rem;
  }
  
  .card {
    padding: 2rem 1.5rem;
  }
  
  .footer-inner { 
    flex-direction: column; 
    gap: 2rem; 
    text-align: center; 
  }
  
  .booking-form .row { 
    flex-direction: column; 
  }
  
  .stats-grid { 
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .stat {
    padding: 1.75rem 1.25rem;
  }
  
  .booking-grid {
    gap: 2rem;
  }

  .benefits li {
    padding: 0.65rem;
  }
  
  .sticky-cta {
    right: 1rem;
    bottom: 1rem;
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  /* Extra small devices */
  .container {
    padding: 0 1rem;
  }
  
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  
  .section { padding: 2rem 0; }
  
  .header-inner {
    padding: 0.6rem 0.75rem;
  }
  
  .site-logo {
    width: 56px;
    height: 56px;
  }
  
  .brand-text strong {
    font-size: 0.98rem;
  }
  
  .brand-text small {
    font-size: 0.8rem;
  }
  
  .header-social {
    gap: 0.4rem;
    padding-right: 0.5rem;
  }
  
  .header-social a {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  
  .main-nav {
    padding-left: 0.5rem;
  }
  
  .nav-menu {
    width: 100%;
    padding: 1.5rem 1rem;
  }
  
  .card {
    padding: 1.5rem 1rem;
  }
  
  .stat {
    padding: 1.5rem 1rem;
  }
  
  .stat .number {
    font-size: 1.5rem;
  }
  
  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  .sticky-cta {
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
