:root {
  --dusty-rose: #C9A898;
  --terracotta: #A0785A;
  --warm-brown: #7B5C3E;
  --sage-green: #4E8B61;
  --soft-linen: #E8DDD1;
  --deep-bark: #3A2B22;
  --moss: #B5C4A1;
  --white: #fffaf5;
  --text: #2f2925;
  --shadow: 0 18px 45px rgba(58, 43, 34, 0.16);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--text);
  font-family: "Lato", Arial, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

main {
  width: 100%;
}
a { color: inherit; text-decoration: none; }

.site-header {
  width: min(1180px, calc(100% - 32px));
  position: fixed; top: 18px; left: 50%; transform: translateX(-50%);
  z-index: 50; display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; background: rgba(255, 250, 245, 0.92);
  backdrop-filter: blur(14px); border: 1px solid rgba(123, 92, 62, 0.16);
  border-radius: 24px; box-shadow: var(--shadow); max-width: 100%;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  height: 55px;
  width: auto;
  object-fit: contain;
  transform: scale(1.7) translateY(2px);
  transform-origin: center;
  margin-right: 8px;
}
.brand strong {
  display: block; font-family: "Cormorant Garamond", serif; font-size: 1.35rem;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.brand small {
  display: block; font-size: 0.7rem; letter-spacing: 0.12em;
  color: var(--warm-brown); text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 18px; font-weight: 700; }
.nav-links a:not(.nav-cta) {
  position: relative;
  color: var(--deep-bark);
  padding: 6px 0;
  transition: color 0.3s ease;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--sage-green);
  transition: width 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:not(.nav-cta):hover,
.nav-links a.active {
  color: var(--sage-green);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

@keyframes expandLine {
  0% { width: 0; }
  100% { width: 100%; }
}

.nav-links a.active::after {
  animation: expandLine 0.5s ease-out 0.2s both;
}
.nav-cta {
  padding: 11px 24px !important; 
  background: var(--dusty-rose);
  color: white !important; 
  border-radius: 20px; 
  border-bottom: 0 !important;
  box-shadow: 0 12px 24px rgba(160, 120, 90, 0.35); 
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: inline-block;
}

/* The invisible light beam */
.nav-cta::before {
  content: "";
  position: absolute;
  top: 0; 
  left: -100%; 
  width: 100%; 
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s ease;
}

/* The physical lift and color shift */
.nav-links a.nav-cta:hover {
  transform: translateY(-3px);
  background: var(--terracotta);
  box-shadow: 0 16px 32px rgba(160, 120, 90, 0.45);
  color: white !important;
}

/* Triggering the sweep */
.nav-links a.nav-cta:hover::before {
  left: 100%;
}
.menu-btn {
  display: none; border: 0; background: var(--sage-green); color: white;
  border-radius: 12px; padding: 8px 12px; font-size: 1.2rem;
}

.hero, .page-hero {
  position: relative; display: grid; place-items: center; text-align: center; color: white;
  padding: 160px 20px 100px; background:
    linear-gradient(rgba(58, 43, 34, 0.58), rgba(58, 43, 34, 0.58)),
    url("https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=1800&q=80");
  background-size: cover; background-position: center; overflow: hidden;
}
.hero { min-height: 100vh; }
.page-hero { min-height: 55vh; }
.small-hero { min-height: 45vh; }
.hero::after, .page-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -24%;
  width: 120%;
  height: 36%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 50% 50% 0 0;
}
.hero-content, .page-hero > * { position: relative; z-index: 2; }
.hero-content { max-width: 850px; }
.eyebrow, .section-label {
  font-weight: 900; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sage-green); font-size: 0.83rem; margin-bottom: 12px;
}
.hero .eyebrow, .page-hero .eyebrow { color: var(--soft-linen); }
h1, h2 { font-family: "Cormorant Garamond", serif; line-height: 0.95; }
h1 { font-size: clamp(3.2rem, 8vw, 7rem); max-width: 900px; }
h2 { font-size: clamp(2.2rem, 5vw, 4rem); color: var(--deep-bark); margin-bottom: 20px; }
.hero-text { max-width: 650px; margin: 20px auto 34px; font-size: 1.15rem; color: #fff4e9; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px;
  padding: 13px 28px; border: none; border-radius: 20px; font-family: "Lato", sans-serif;
  font-weight: 900; cursor: pointer; transition: 0.25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--terracotta); color: white; box-shadow: 0 14px 28px rgba(160, 120, 90, 0.32); }
.btn-light { background: var(--soft-linen); color: var(--warm-brown); margin-left: 10px; }

.quick-links {
  width: min(1120px, calc(100% - 32px)); margin: -45px auto 0; position: relative; z-index: 3;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 100%; overflow-x: hidden;
}
.quick-card {
  background: var(--soft-linen); border: 1px solid rgba(123, 92, 62, 0.16);
  padding: 28px; border-radius: 26px; box-shadow: var(--shadow); transition: 0.25s ease;
}
.quick-card:hover { transform: translateY(-6px); background: white; }
.quick-card span { color: var(--terracotta); font-weight: 900; }
.quick-card strong { display: block; margin: 7px 0; font-family: "Cormorant Garamond", serif; font-size: 1.65rem; color: var(--deep-bark); }

.section { width: min(1120px, calc(100% - 32px)); margin: 0 auto; padding: 100px 0; max-width: 100%; overflow-x: hidden; }
.split { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 50px; align-items: center; }
.feature-box, .info-card {
  background: var(--soft-linen); padding: 38px; border-radius: 30px; box-shadow: var(--shadow);
}
.feature-box h3, .service-card h3, .package-card h3, .review-card h3 {
  font-family: "Cormorant Garamond", serif; font-size: 1.75rem; color: var(--deep-bark);
}
.feature-box ul, .package-card ul { list-style: none; margin-top: 18px; }
.feature-box li, .package-card li { margin-bottom: 12px; }
.feature-box li::before, .package-card li::before { content: "✦ "; color: var(--sage-green); font-weight: 900; }

.service-grid, .package-grid, .review-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px;
}
.service-card, .package-card, .review-card {
  background: white; padding: 34px; border-radius: 28px; box-shadow: var(--shadow);
  border: 1px solid rgba(123, 92, 62, 0.12);
}
.icon {
  width: 52px; height: 52px; display: grid; place-items: center;
  border-radius: 50%; background: var(--moss); color: var(--deep-bark);
  font-size: 1.3rem; margin-bottom: 18px;
}
.package-card.highlighted { background: var(--deep-bark); color: white; transform: translateY(-14px); }
.package-card.highlighted h3 { color: white; }
.text-link { display: inline-block; margin-top: 20px; color: var(--terracotta); font-weight: 900; }
.highlighted .text-link { color: var(--dusty-rose); }

.gallery-grid {
  margin-top: 34px; display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 230px; gap: 18px;
}
.gallery-item {
  position: relative; border-radius: 28px; overflow: hidden;
  background: linear-gradient(rgba(58,43,34,0.18), rgba(58,43,34,0.45)),
    url("https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?auto=format&fit=crop&w=900&q=80");
  background-size: cover; background-position: center; box-shadow: var(--shadow);
}
.gallery-item:nth-child(2) { background-image: linear-gradient(rgba(58,43,34,0.18), rgba(58,43,34,0.45)), url("https://images.unsplash.com/photo-1523438885200-e635ba2c371e?auto=format&fit=crop&w=900&q=80"); }
.gallery-item:nth-child(3) { background-image: linear-gradient(rgba(58,43,34,0.18), rgba(58,43,34,0.45)), url("https://images.unsplash.com/photo-1505236858219-8359eb29e329?auto=format&fit=crop&w=900&q=80"); }
.gallery-item:nth-child(4) { background-image: linear-gradient(rgba(58,43,34,0.18), rgba(58,43,34,0.45)), url("https://images.unsplash.com/photo-1511795409834-ef04bbd61622?auto=format&fit=crop&w=1200&q=80"); }
.gallery-item.large { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item span {
  position: absolute; left: 22px; bottom: 22px; color: white;
  font-family: "Cormorant Garamond", serif; font-size: 1.65rem; font-weight: 700;
}

.testimonials { padding: 90px max(20px, calc((100% - 1120px) / 2)); background: linear-gradient(135deg, var(--soft-linen), #f7f1ea); }
.testimonials.standalone { padding-top: 100px; }
.quote-banner {
  background: var(--sage-green); color: white; border-radius: 18px;
  padding: 30px 40px; display: flex; gap: 20px; align-items: flex-start; box-shadow: var(--shadow);
}
.quote-banner span { font-family: "Cormorant Garamond", serif; font-size: 4rem; line-height: 1; color: var(--moss); }
.quote-banner p { max-width: 760px; font-size: 1.25rem; }
.stars { color: #c9a23f; font-size: 1.2rem; letter-spacing: 0.08em; margin-bottom: 10px; }

.contact { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px; align-items: start; }
.contact-info { margin-top: 24px; padding: 24px; background: var(--soft-linen); border-radius: 22px; }
.contact-info p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.contact-info p:last-child {
  margin-bottom: 0;
}
.contact-info svg {
  color: var(--sage-green);
  flex-shrink: 0;
}
.social-link {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all 0.3s ease;
}
.social-link:hover {
  color: var(--dusty-rose);
  text-decoration-color: var(--dusty-rose);
}
.contact-map-top { width: min(1120px, calc(100% - 32px)); margin: 0 auto; border-radius: 30px; overflow: hidden; box-shadow: var(--shadow); background: white; }

.map-heading-container {
  width: min(1120px, calc(100% - 32px));
  margin: 100px auto 20px;
}
.map-heading-container h2 {
  margin-bottom: 0;
}
.contact-map-top iframe { width: 100%; min-height: 420px; border: 0; display: block; }
.inquiry-form {
  background: white; padding: 32px; border-radius: 30px; box-shadow: var(--shadow);
  display: grid; gap: 18px;
}
.inquiry-form label { font-weight: 900; color: var(--deep-bark); }
input, select, textarea {
  width: 100%; margin-top: 7px; padding: 14px 16px;
  border: 1px solid rgba(123, 92, 62, 0.22); border-radius: 16px;
  background: #fffaf5; font: inherit;
}
textarea { min-height: 120px; resize: vertical; }

.footer {
  padding: 34px max(20px, calc((100% - 1120px) / 2));
  background: var(--deep-bark); color: var(--soft-linen);
  display: flex; justify-content: space-between; gap: 20px;
}
.footer strong { font-family: "Cormorant Garamond", serif; font-size: 1.6rem; }

@media (max-width: 940px) {
  .menu-btn { display: block; }
  .nav-links {
    position: absolute; top: 78px; right: 20px; width: 250px; display: none;
    flex-direction: column; align-items: stretch; padding: 20px;
    background: white; border-radius: 20px; box-shadow: var(--shadow);
  }
  .nav-links.show { display: flex; }
  .quick-links, .split, .service-grid, .package-grid, .review-grid, .contact { grid-template-columns: 1fr; }
  .package-card.highlighted { transform: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large, .gallery-item.wide { grid-row: auto; grid-column: auto; }
  .footer { flex-direction: column; padding: 34px 20px; }
  .testimonials { padding: 90px 20px !important; }
  .btn-light { margin-left: 0; margin-top: 10px; }
  main, section { overflow-x: hidden; }
  .site-header { width: 90vw; max-width: calc(100% - 32px); }
}


/* Page transition and reveal animations */
@keyframes pageFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes softSlideDown {
  from {
    opacity: 0;
    transform: translate(-50%, -12px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

body {
  animation: bodyFade 0.55s ease both;
}

.site-header {
  animation: softSlideDown 0.65s ease both;
}

.hero-content,
.page-hero > *,
.quick-card,
.section,
.testimonials {
  animation: pageFadeUp 0.75s ease both;
}

.quick-card:nth-child(2),
.service-card:nth-child(2),
.package-card:nth-child(2),
.review-card:nth-child(2),
.gallery-item:nth-child(2) {
  animation-delay: 0.08s;
}

.quick-card:nth-child(3),
.service-card:nth-child(3),
.package-card:nth-child(3),
.review-card:nth-child(3),
.gallery-item:nth-child(3) {
  animation-delay: 0.16s;
}

body.is-leaving {
  opacity: 0;
  transition: opacity 0.28s ease;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
