/* ========== VARIABLES ========== */
:root {
  --cream: #FAF6F1;
  --linen: #F4EDE4;
  --pine: #0B1E25;
  --gold: #C8A265;
  --sage: #6B7F7E;
  --sage-light: #9DB0AF;
  --white: #FFFFFF;
  --shadow: 0 8px 30px rgba(11,30,37,0.08);
  --shadow-lg: 0 16px 50px rgba(11,30,37,0.12);
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--cream);
  color: var(--pine);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ========== IMPORT FONTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ========== NAVIGATION ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0.875rem 5vw;
  transition: all 0.35s ease;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
}
.nav.scrolled {
  background: rgba(11,30,37,0.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding-top: 0.625rem; padding-bottom: 0.625rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.12);
}
.nav-logo-wrap {
  display: flex; align-items: center; gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 34px; height: 34px; border-radius: 50%;
  object-fit: cover;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; color: var(--white);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex; align-items: center; gap: 1.75rem;
}
.nav-link {
  color: rgba(255,255,255,0.88);
  font-size: 0.875rem; font-weight: 500;
  transition: color 0.3s; position: relative;
  padding: 0.25rem 0;
}
.nav-link:hover { color: var(--gold); }
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.3s;
}
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--gold); }
.nav-link.active::after { width: 100%; }
.nav-cta {
  padding: 0.5rem 1.25rem; border-radius: 999px;
  background: var(--gold); color: var(--pine);
  font-size: 0.8125rem; font-weight: 600;
  transition: all 0.3s; border: none;
}
.nav-cta:hover { background: #b89355; transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center; align-items: center;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border: none; border-radius: 10px;
  cursor: pointer; gap: 5px; padding: 8px;
}
.hamburger-line {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}
.nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 2000;
  background: var(--pine);
  display: flex; flex-direction: column;
  padding: 1rem 5vw 2rem;
  transition: transform 0.35s ease, opacity 0.35s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.hidden {
  transform: translateX(100%);
  opacity: 0; pointer-events: none;
}
.mobile-menu-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.5rem; padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu-close {
  background: none; border: none;
  color: var(--white); cursor: pointer;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background 0.3s;
}
.mobile-menu-close:hover { background: rgba(255,255,255,0.1); }
.mobile-menu-links {
  display: flex; flex-direction: column; gap: 0;
  flex: 1;
}
.mobile-menu-links a {
  color: var(--white); font-family: 'Playfair Display', serif;
  font-size: 1.35rem; padding: 0.875rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.3s, padding-left 0.3s;
  display: block;
}
.mobile-menu-links a:hover { color: var(--gold); padding-left: 0.5rem; }

/* Mobile contact section */
.mobile-menu-contact {
  padding-top: 1.5rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-contact-row {
  display: flex; gap: 0.75rem; margin-bottom: 1.25rem;
}
.mobile-whatsapp-btn,
.mobile-call-btn {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 0.75rem; border-radius: 12px;
  font-size: 0.875rem; font-weight: 600; text-decoration: none;
  transition: transform 0.2s;
}
.mobile-whatsapp-btn:hover,
.mobile-call-btn:hover { transform: scale(1.03); }
.mobile-whatsapp-btn {
  background: #25D366; color: var(--white);
}
.mobile-call-btn {
  background: var(--gold); color: var(--pine);
}
.mobile-whatsapp-btn svg,
.mobile-call-btn svg {
  width: 18px; height: 18px; flex-shrink: 0;
}
.mobile-menu-phone {
  color: var(--gold); font-size: 1.125rem;
  font-weight: 600; margin-bottom: 0.5rem;
}
.mobile-menu-email a {
  color: var(--sage-light); font-size: 0.875rem;
  text-decoration: none;
}
.mobile-menu-email a:hover { color: var(--gold); }
.mobile-menu-address {
  color: var(--sage-light); font-size: 0.875rem;
  margin-top: 0.5rem; line-height: 1.5;
}
.mobile-menu-hours {
  color: var(--sage-light); font-size: 0.8125rem;
  margin-top: 0.75rem; line-height: 1.6;
}

/* ========== FLOATING ACTION BUTTONS ========== */
.fab-container {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  z-index: 900; display: flex; flex-direction: column;
  gap: 0.75rem;
}
.fab {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1rem; border-radius: 999px;
  font-size: 0.875rem; font-weight: 600;
  text-decoration: none; box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}
.fab:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.fab svg { width: 20px; height: 20px; flex-shrink: 0; }
.fab-whatsapp {
  background: #25D366; color: var(--white);
}
.fab-whatsapp:hover { background: #1ebe5a; }
.fab-call {
  background: var(--gold); color: var(--pine);
}
.fab-call:hover { background: #b89355; }
.fab-label {
  display: inline;
}

/* ========== HERO ========== */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 1;
  background-size: cover; background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(11,30,37,0.35) 0%, rgba(11,30,37,0.65) 100%);
}
.hero-content {
  position: relative; z-index: 10;
  text-align: center; padding: 6rem 5vw 2rem;
  max-width: 800px; width: 100%;
}
.hero-tag {
  display: inline-block; color: var(--gold);
  font-size: 0.6875rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 600;
  margin-bottom: 1.25rem;
  border: 1px solid var(--gold); padding: 0.375rem 1rem;
  border-radius: 999px;
}
.hero-title {
  font-family: 'Playfair Display', serif; color: var(--white);
  font-size: clamp(2rem, 7vw, 4rem); line-height: 1.1;
  margin-bottom: 1rem; word-break: keep-all;
}
.hero-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: clamp(0.9375rem, 2.5vw, 1.125rem);
  max-width: 520px; margin: 0 auto 1.75rem;
}
.hero-cta-group {
  display: flex; gap: 0.75rem;
  justify-content: center; flex-wrap: wrap;
}
.hero-btn-primary {
  padding: 0.75rem 1.75rem; border-radius: 999px;
  background: var(--gold); color: var(--pine);
  font-size: 0.875rem; font-weight: 600;
  transition: all 0.3s; display: inline-block;
  border: none;
  white-space: nowrap;
}
.hero-btn-primary:hover { background: #b89355; transform: translateY(-2px); }
.hero-btn-secondary {
  padding: 0.75rem 1.75rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35); color: var(--white);
  font-size: 0.875rem; font-weight: 500;
  transition: all 0.3s; display: inline-block;
  background: transparent;
  white-space: nowrap;
}
.hero-btn-secondary:hover { background: rgba(255,255,255,0.1); }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 10;
  color: rgba(255,255,255,0.55);
  font-size: 0.6875rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.375rem;
  animation: bounce 2.5s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ========== SECTIONS ========== */
.section { padding: 4rem 5vw; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 2.5rem; }
.section-label {
  display: inline-block; color: var(--gold);
  font-size: 0.6875rem; letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 600;
  margin-bottom: 0.875rem;
}
.section-title {
  font-family: 'Playfair Display', serif; color: var(--pine);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  line-height: 1.15; margin-bottom: 0.75rem;
}
.section-desc { color: var(--sage); font-size: 1rem; }

/* ========== SERVICES ========== */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem; max-width: 1200px; margin: 0 auto;
}
.service-card {
  background: var(--cream); border-radius: 16px;
  overflow: hidden; box-shadow: var(--shadow);
  transition: all 0.35s ease;
  display: block; text-decoration: none; color: inherit;
  cursor: pointer; -webkit-tap-highlight-color: transparent;
}
.service-card:hover, .service-card:active {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover .service-name { color: var(--gold); }
.service-img { width: 100%; height: 200px; object-fit: cover; }
.service-body { padding: 1.5rem; }
.service-name {
  font-family: 'Playfair Display', serif; color: var(--pine);
  font-size: 1.25rem; margin-bottom: 0.375rem;
  transition: color 0.3s;
}
.service-text { color: var(--sage); font-size: 0.875rem; line-height: 1.6; }

/* ========== ABOUT ========== */
.about { background: var(--cream); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; max-width: 1100px; margin: 0 auto;
  align-items: center;
}
.about-img {
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img img { width: 100%; height: auto; object-fit: cover; }
.about-content h2 {
  font-family: 'Playfair Display', serif; color: var(--pine);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  line-height: 1.2; margin-bottom: 1rem;
}
.about-content p {
  color: var(--sage); font-size: 0.9375rem;
  line-height: 1.7; margin-bottom: 0.875rem;
}
.about-quote {
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  font-family: 'Playfair Display', serif;
  color: var(--pine); font-size: 1.125rem;
  font-style: italic; margin-top: 1.25rem;
}

/* ========== HOURS ========== */
.hours { background: var(--pine); color: var(--white); }
.hours .section-title { color: var(--white); }
.hours .section-desc { color: var(--sage-light); }
.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem; max-width: 800px; margin: 0 auto;
}
.hours-card {
  background: rgba(255,255,255,0.05); border-radius: 14px;
  padding: 1.75rem; text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
}
.hours-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--white); font-size: 1.125rem;
  margin-bottom: 0.625rem;
}
.hours-card .time { color: var(--gold); font-size: 1.375rem; font-weight: 600; }
.hours-card .note { color: var(--sage-light); font-size: 0.8125rem; margin-top: 0.375rem; }

/* ========== BOOKING ========== */
.booking { background: var(--white); }
.booking-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; max-width: 1100px; margin: 0 auto;
  align-items: start;
}
.booking-info h3,
.booking-form h3 {
  font-family: 'Playfair Display', serif;
  color: var(--pine); font-size: 1.375rem;
  margin-bottom: 1.25rem;
}
.booking-contact-item {
  display: flex; align-items: flex-start; gap: 0.875rem;
  margin-bottom: 1rem;
}
.booking-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 10px;
  background: var(--cream); display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.booking-icon svg { width: 1rem; height: 1rem; color: var(--gold); }
.booking-info-label {
  font-size: 0.6875rem; color: var(--sage);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.booking-info-value { color: var(--pine); font-weight: 500; margin-top: 0.125rem; }
.booking-info-value a { color: var(--pine); }
.booking-info-value a:hover { color: var(--gold); }

.form-group { margin-bottom: 1rem; }
.form-label {
  display: block; font-size: 0.75rem;
  color: var(--sage); font-weight: 500;
  margin-bottom: 0.25rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.625rem 0.875rem;
  border-radius: 8px; border: 1px solid rgba(11,30,37,0.1);
  background: var(--cream); color: var(--pine);
  font-family: inherit; font-size: 0.875rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none; -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,162,101,0.12);
}
.form-textarea { resize: vertical; min-height: 80px; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7F7E' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.25rem;
}
.form-submit {
  width: 100%; padding: 0.75rem;
  border-radius: 999px; background: var(--pine);
  color: var(--white); font-size: 0.875rem;
  font-weight: 600; border: none;
  transition: all 0.3s; font-family: inherit;
}
.form-submit:hover { background: var(--gold); color: var(--pine); }

/* ========== FOOTER ========== */
.footer { background: var(--pine); }
.footer-main { padding: 3rem 5vw 1.5rem; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1.5fr;
  gap: 2.5rem;
}
.footer-brand-col { max-width: 280px; }
.footer-logo-wrap {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 0.875rem;
}
.footer-logo-icon { width: 36px; height: 36px; border-radius: 50%; }
.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; color: var(--white);
}
.footer-brand-desc {
  color: var(--sage-light); font-size: 0.875rem;
  line-height: 1.7; margin-bottom: 1.25rem;
}
.footer-social { display: flex; gap: 0.625rem; }
.footer-social a {
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--sage-light); transition: all 0.3s;
}
.footer-social a:hover { color: var(--gold); border-color: var(--gold); }
.footer-social svg { width: 14px; height: 14px; }
.footer-col h4 {
  color: var(--white); font-size: 0.8125rem;
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 1rem;
}
.footer-col a {
  display: block; color: var(--sage-light);
  font-size: 0.875rem; margin-bottom: 0.625rem;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-phone {
  color: var(--gold) !important;
  font-size: 1rem !important;
  font-weight: 600;
}
.footer-address {
  display: block; color: var(--sage-light);
  font-size: 0.875rem; line-height: 1.6;
  margin-bottom: 0.625rem;
}
.footer-hours { margin-top: 0.5rem; }
.footer-hours p { color: var(--sage-light); font-size: 0.8125rem; margin-bottom: 0.25rem; }
.footer-hours strong { color: rgba(255,255,255,0.9); font-weight: 500; }

.footer-bottom-bar {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.25rem 5vw;
}
.footer-bottom-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 0.75rem;
}
.footer-bottom-inner p { color: var(--sage-light); font-size: 0.75rem; }
.footer-bottom-links { display: flex; align-items: center; gap: 0.625rem; }
.footer-bottom-links a { color: var(--sage-light); font-size: 0.75rem; transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--gold); }
.footer-bottom-links span { color: rgba(255,255,255,0.15); }

/* ========== PAGE HERO ========== */
.page-hero {
  position: relative; min-height: 50vh; min-height: 50dvh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 1;
  background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(11,30,37,0.45) 0%, rgba(11,30,37,0.75) 100%);
}
.page-hero-content {
  position: relative; z-index: 10;
  text-align: center; padding: 5rem 5vw 1.5rem;
  max-width: 700px; width: 100%;
}
.page-hero-title {
  font-family: 'Playfair Display', serif; color: var(--white);
  font-size: clamp(1.75rem, 6vw, 3rem); line-height: 1.1;
  margin-bottom: 0.5rem;
}
.page-hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: clamp(0.875rem, 2.5vw, 1rem);
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
  padding: 1rem 5vw; background: var(--linen);
  border-bottom: 1px solid rgba(11,30,37,0.05);
}
.breadcrumb-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; color: var(--sage);
}
.breadcrumb-inner a { color: var(--pine); font-weight: 500; transition: color 0.3s; }
.breadcrumb-inner a:hover { color: var(--gold); }

/* ========== SERVICE DETAIL ========== */
.detail-section { padding: 2.5rem 5vw; max-width: 1100px; margin: 0 auto; }
.detail-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem;
}
.detail-content h2 {
  font-family: 'Playfair Display', serif; color: var(--pine);
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  line-height: 1.2; margin-bottom: 1rem;
}
.detail-content p {
  color: var(--sage); font-size: 0.9375rem;
  line-height: 1.7; margin-bottom: 1rem;
}
.detail-content h3 {
  font-family: 'Playfair Display', serif; color: var(--pine);
  font-size: 1.125rem; margin: 1.5rem 0 0.75rem;
}
.benefits-list { list-style: none; }
.benefits-list li {
  display: flex; align-items: flex-start; gap: 0.625rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(11,30,37,0.04);
  color: var(--sage); font-size: 0.875rem;
}
.benefits-list li svg {
  width: 1.125rem; height: 1.125rem;
  color: var(--gold); flex-shrink: 0; margin-top: 0.125rem;
}
.expect-list { list-style: none; counter-reset: step; }
.expect-list li {
  position: relative; padding-left: 2.5rem;
  padding-bottom: 1.25rem;
  border-left: 2px solid rgba(200,162,101,0.25);
  margin-left: 0.75rem;
  color: var(--sage); font-size: 0.875rem; line-height: 1.6;
}
.expect-list li:last-child { border-left-color: transparent; }
.expect-list li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: -0.875rem; top: 0;
  width: 1.75rem; height: 1.75rem; border-radius: 50%;
  background: var(--gold); color: var(--pine);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6875rem; font-weight: 700;
}
.expect-list li strong { color: var(--pine); display: block; margin-bottom: 0.125rem; }

/* Sidebar */
.detail-sidebar { position: sticky; top: 90px; }
.sidebar-card {
  background: var(--white); border-radius: 14px;
  padding: 1.5rem; box-shadow: var(--shadow);
  margin-bottom: 1.25rem;
}
.sidebar-card h4 {
  font-family: 'Playfair Display', serif;
  color: var(--pine); font-size: 1rem;
  margin-bottom: 0.875rem;
}
.sidebar-price { font-size: 1.75rem; font-weight: 700; color: var(--gold); }
.sidebar-price-note { color: var(--sage); font-size: 0.75rem; margin-bottom: 1.25rem; }
.sidebar-info { margin-bottom: 0.625rem; }
.sidebar-info-label { font-size: 0.6875rem; color: var(--sage); text-transform: uppercase; letter-spacing: 0.05em; }
.sidebar-info-value { color: var(--pine); font-weight: 500; font-size: 0.875rem; }
.sidebar-btn {
  display: block; width: 100%; padding: 0.75rem;
  border-radius: 999px; background: var(--pine);
  color: var(--white); text-align: center;
  font-size: 0.875rem; font-weight: 600;
  transition: all 0.3s; margin-top: 1.25rem;
  border: none;
}
.sidebar-btn:hover { background: var(--gold); color: var(--pine); }

/* Related */
.related { background: var(--cream); padding: 3rem 5vw; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem; max-width: 1100px; margin: 0 auto;
}
.related-card {
  background: var(--white); border-radius: 14px;
  overflow: hidden; box-shadow: var(--shadow);
  transition: all 0.3s;
  display: block; color: inherit;
  cursor: pointer;
}
.related-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.related-card:hover .related-card-body h4 { color: var(--gold); }
.related-card img { width: 100%; height: 140px; object-fit: cover; }
.related-card-body { padding: 1rem; }
.related-card-body h4 {
  font-family: 'Playfair Display', serif;
  color: var(--pine); font-size: 1rem;
  margin-bottom: 0.125rem;
  transition: color 0.3s;
}
.related-card-body p { color: var(--sage); font-size: 0.75rem; }

/* ========== ABOUT PAGE ========== */
.about-page-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; max-width: 1100px; margin: 0 auto;
  align-items: center; padding: 3rem 5vw;
}
.about-page-img { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-page-img img { width: 100%; height: auto; object-fit: cover; }
.about-page-content h2 {
  font-family: 'Playfair Display', serif; color: var(--pine);
  font-size: clamp(1.5rem, 4vw, 2rem); line-height: 1.2;
  margin-bottom: 1rem;
}
.about-page-content p { color: var(--sage); font-size: 0.9375rem; line-height: 1.7; margin-bottom: 0.875rem; }
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem; max-width: 1100px; margin: 0 auto;
  padding: 0 5vw 3rem;
}
.about-value-card { text-align: center; padding: 1.5rem; }
.about-value-icon {
  width: 3rem; height: 3rem; border-radius: 50%;
  background: var(--cream); display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto 0.75rem;
}
.about-value-icon svg { width: 1.25rem; height: 1.25rem; color: var(--gold); }
.about-value-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--pine); font-size: 1.125rem;
  margin-bottom: 0.375rem;
}
.about-value-card p { color: var(--sage); font-size: 0.875rem; }

/* ========== SCROLL REVEALS ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }
.reveal-delay-7 { transition-delay: 0.56s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-img { order: -1; }
  .booking-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand-col { max-width: none; grid-column: 1 / -1; }
  .detail-grid { grid-template-columns: 1fr; gap: 2rem; }
  .detail-sidebar { position: static; }
  .about-page-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-page-img { order: -1; }
  .fab-label { display: none; }
  .fab { padding: 0.75rem; border-radius: 50%; }
}

@media (max-width: 640px) {
  html { font-size: 15px; }
  .section { padding: 2.5rem 4vw; }
  .nav { padding: 0.625rem 4vw; }
  .hero { min-height: 90vh; min-height: 90dvh; }
  .hero-content { padding: 5rem 4vw 1rem; }
  .hero-title { font-size: 2rem; }
  .hero-cta-group { flex-direction: column; gap: 0.5rem; }
  .hero-btn-primary, .hero-btn-secondary { width: 100%; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
  .service-img { height: 180px; }
  .hours-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 0.5rem; }
  .page-hero { min-height: 40vh; min-height: 40dvh; }
  .page-hero-content { padding-top: 4rem; }
  .detail-section { padding: 2rem 4vw; }
  .about-page-grid { padding: 2rem 4vw; }
  .about-values { padding: 0 4vw 2rem; }
  .related-grid { grid-template-columns: 1fr; }
  .fab-container { bottom: 1rem; right: 1rem; }
  .mobile-menu { padding: 1rem 4vw 1.5rem; }
  .mobile-menu-links a { font-size: 1.15rem; padding: 0.75rem 0; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 1.75rem; }
  .section-title { font-size: 1.5rem; }
  .nav-logo-text { font-size: 1.15rem; }
  .nav-logo-icon { width: 28px; height: 28px; }
}
