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

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--pine);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ========== 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');
.font-serif { font-family: 'Playfair Display', serif; }

/* ========== NAVIGATION ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 6vw;
  transition: all 0.4s ease;
  display: flex; align-items: center; justify-content: space-between;
}
.nav.scrolled {
  background: rgba(11,30,37,0.95);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  padding-top: 0.875rem; padding-bottom: 0.875rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--white); text-decoration: none; letter-spacing: 0.02em; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-link { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color 0.3s; position: relative; }
.nav-link:hover { color: var(--gold); }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s; }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  padding: 0.625rem 1.5rem; border-radius: 999px;
  background: var(--gold); color: var(--pine);
  font-size: 0.875rem; font-weight: 600; text-decoration: none;
  transition: all 0.3s; border: none; cursor: pointer;
}
.nav-cta:hover { background: #b89355; transform: translateY(-1px); }
.nav-mobile-btn { display: none; background: none; border: none; color: var(--white); cursor: pointer; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 2000;
  background: var(--pine);
  display: flex; flex-direction: column;
  padding: 2rem 6vw;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.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: 3rem; }
.mobile-menu-close { background: none; border: none; color: var(--white); cursor: pointer; }
.mobile-menu-links { display: flex; flex-direction: column; gap: 1.5rem; flex: 1; }
.mobile-menu-links a { color: var(--white); text-decoration: none; font-family: 'Playfair Display', serif; font-size: 1.75rem; transition: color 0.3s; }
.mobile-menu-links a:hover { color: var(--gold); }
.mobile-menu-contact { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.mobile-menu-contact p { color: var(--sage-light); font-size: 0.875rem; }

/* ========== HERO ========== */
.hero {
  position: relative; min-height: 100vh;
  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.3) 0%, rgba(11,30,37,0.6) 100%);
}
.hero-content {
  position: relative; z-index: 10;
  text-align: center; padding: 0 6vw; max-width: 800px;
}
.hero-tag {
  display: inline-block; color: var(--gold); font-size: 0.75rem;
  letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
  margin-bottom: 1.5rem; border: 1px solid var(--gold); padding: 0.5rem 1.25rem; border-radius: 999px;
}
.hero-title {
  font-family: 'Playfair Display', serif; color: var(--white);
  font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero-subtitle {
  color: rgba(255,255,255,0.8); font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 540px; margin: 0 auto 2rem;
}
.hero-cta-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-btn-primary {
  padding: 0.875rem 2rem; border-radius: 999px;
  background: var(--gold); color: var(--pine);
  font-size: 0.9375rem; font-weight: 600; text-decoration: none;
  transition: all 0.3s; display: inline-block;
}
.hero-btn-primary:hover { background: #b89355; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.hero-btn-secondary {
  padding: 0.875rem 2rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.4); color: var(--white);
  font-size: 0.9375rem; font-weight: 500; text-decoration: none;
  transition: all 0.3s; display: inline-block;
}
.hero-btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 10;
  color: rgba(255,255,255,0.6); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

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

/* ========== SERVICES GRID ========== */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem; max-width: 1200px; margin: 0 auto;
}
.service-card {
  background: var(--cream); border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow); transition: all 0.4s ease;
  display: block; text-decoration: none; color: inherit;
  cursor: pointer;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover .service-name { color: var(--gold); }
.service-img { width: 100%; height: 220px; object-fit: cover; display: block; }
.service-body { padding: 1.75rem; }
.service-name {
  font-family: 'Playfair Display', serif; color: var(--pine);
  font-size: 1.375rem; margin-bottom: 0.5rem;
}
.service-text { color: var(--sage); font-size: 0.9375rem; line-height: 1.6; }

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

/* ========== 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(250px, 1fr));
  gap: 2rem; max-width: 900px; margin: 0 auto;
}
.hours-card {
  background: rgba(255,255,255,0.05); border-radius: 16px;
  padding: 2rem; 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.25rem; margin-bottom: 0.75rem; }
.hours-card .time { color: var(--gold); font-size: 1.5rem; font-weight: 600; }
.hours-card .note { color: var(--sage-light); font-size: 0.875rem; margin-top: 0.5rem; }

/* ========== BOOKING / CONTACT ========== */
.booking { background: var(--white); }
.booking-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  max-width: 1100px; margin: 0 auto; align-items: start;
}
.booking-info h3 {
  font-family: 'Playfair Display', serif; color: var(--pine);
  font-size: 1.5rem; margin-bottom: 1.5rem;
}
.booking-contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.booking-icon {
  width: 2.75rem; height: 2.75rem; border-radius: 12px;
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.booking-icon svg { width: 1.125rem; height: 1.125rem; color: var(--gold); }
.booking-info-label { font-size: 0.75rem; color: var(--sage); text-transform: uppercase; letter-spacing: 0.08em; }
.booking-info-value { color: var(--pine); font-weight: 500; margin-top: 0.25rem; }
.booking-info-value a { color: var(--pine); text-decoration: none; }
.booking-info-value a:hover { color: var(--gold); }

.booking-form h3 {
  font-family: 'Playfair Display', serif; color: var(--pine);
  font-size: 1.5rem; margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.8125rem; color: var(--sage); font-weight: 500; margin-bottom: 0.375rem; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.75rem 1rem; border-radius: 10px;
  border: 1px solid rgba(11,30,37,0.12); background: var(--cream);
  color: var(--pine); font-family: 'Inter', sans-serif; font-size: 0.9375rem;
  transition: border-color 0.3s, box-shadow 0.3s; outline: 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.15);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-select { appearance: none; -webkit-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' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.875rem center; padding-right: 2.5rem;
}
.form-submit {
  width: 100%; padding: 0.875rem; border-radius: 999px;
  background: var(--pine); color: var(--white);
  font-size: 0.9375rem; font-weight: 600; border: none;
  cursor: pointer; transition: all 0.3s; font-family: 'Inter', sans-serif;
}
.form-submit:hover { background: var(--gold); color: var(--pine); }

/* ========== FOOTER ========== */
.footer { background: var(--pine); padding: 4rem 6vw 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  max-width: 1200px; margin: 0 auto 3rem;
}
.footer-brand { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.5rem; margin-bottom: 0.75rem; }
.footer-brand-desc { color: var(--sage-light); font-size: 0.9375rem; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.25rem; }
.footer-col a { display: block; color: var(--sage-light); text-decoration: none; font-size: 0.9375rem; margin-bottom: 0.625rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a {
  width: 2.5rem; height: 2.5rem; 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-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem;
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: var(--sage-light); font-size: 0.8125rem; }

/* ========== SCROLL 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; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }

.nav-link.active { color: var(--gold); }
.nav-link.active::after { width: 100%; }

/* ========== PAGE HERO ========== */
.page-hero {
  position: relative;
  min-height: 55vh;
  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.4) 0%, rgba(11,30,37,0.7) 100%);
}
.page-hero-content {
  position: relative; z-index: 10;
  text-align: center; padding: 0 6vw;
  max-width: 700px;
}
.page-hero-title {
  font-family: 'Playfair Display', serif; color: var(--white);
  font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.1;
  margin-bottom: 0.75rem;
}
.page-hero-sub {
  color: rgba(255,255,255,0.8); font-size: clamp(0.9375rem, 2vw, 1.125rem);
}

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

/* ========== SERVICE DETAIL ========== */
.detail-section { padding: 4rem 6vw; max-width: 1100px; margin: 0 auto; }
.detail-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem;
}
.detail-content h2 {
  font-family: 'Playfair Display', serif; color: var(--pine);
  font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.2; margin-bottom: 1.25rem;
}
.detail-content p {
  color: var(--sage); font-size: 1rem; line-height: 1.7; margin-bottom: 1.25rem;
}
.detail-content h3 {
  font-family: 'Playfair Display', serif; color: var(--pine);
  font-size: 1.25rem; margin: 2rem 0 1rem;
}

/* Benefits list */
.benefits-list { list-style: none; padding: 0; }
.benefits-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.75rem 0; border-bottom: 1px solid rgba(11,30,37,0.05);
  color: var(--sage); font-size: 0.9375rem;
}
.benefits-list li svg {
  width: 1.25rem; height: 1.25rem; color: var(--gold);
  flex-shrink: 0; margin-top: 0.125rem;
}

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

/* What to expect */
.expect-list { list-style: none; padding: 0; counter-reset: step; }
.expect-list li {
  position: relative; padding-left: 3rem; padding-bottom: 1.5rem;
  border-left: 2px solid rgba(200,162,101,0.3); margin-left: 1rem;
  color: var(--sage); font-size: 0.9375rem; line-height: 1.6;
}
.expect-list li:last-child { border-left: 2px solid transparent; }
.expect-list li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: -1rem; top: 0;
  width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--gold); color: var(--pine);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
}
.expect-list li strong { color: var(--pine); display: block; margin-bottom: 0.25rem; }

/* Related services */
.related { background: var(--cream); padding: 4rem 6vw; }
.related-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem; max-width: 1100px; margin: 0 auto;
}
.related-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow); transition: all 0.3s; text-decoration: none;
  display: block; color: inherit; cursor: pointer;
}
.related-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.related-card:hover .related-card-body h4 { color: var(--gold); }
.related-card img { width: 100%; height: 160px; object-fit: cover; display: block; }
.related-card-body { padding: 1.25rem; }
.related-card-body h4 {
  font-family: 'Playfair Display', serif; color: var(--pine);
  font-size: 1.0625rem; margin-bottom: 0.25rem;
}
.related-card-body p { color: var(--sage); font-size: 0.8125rem; }

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

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .detail-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .detail-sidebar { position: static; }
  .about-page-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-page-img { order: -1; max-height: 350px; }
}
@media (max-width: 640px) {
  .page-hero { min-height: 45vh; }
  .detail-section { padding: 2.5rem 5vw; }
  .about-page-grid { padding: 2.5rem 5vw; }
  .about-values { padding: 0 5vw 2.5rem; }
}

