:root {
  --sage: #7d8d73;
  --sage-dark: #52624c;
  --cream: #f4efe4;
  --cream-light: #fbf8f1;
  --gold: #c5a35b;
  --gold-dark: #9e7d3d;
  --ink: #1f241f;
  --muted: #656d64;
  --white: #ffffff;
  --border: rgba(31, 36, 31, 0.14);
  --shadow: 0 24px 60px rgba(31, 36, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--cream-light);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  color: var(--white);
  background: rgba(31, 36, 31, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.brand {
  display: flex;
  align-items: center;
  font-weight: 700;
}

.brand-logo {
  display: block;
  width: 155px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
  background: transparent;
  padding: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
}

.nav a {
  opacity: .9;
}

.nav a:hover {
  color: var(--gold);
}

.nav-book {
  padding: 11px 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 140px 7vw 80px;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(24,30,23,.95) 0%, rgba(24,30,23,.68) 56%, rgba(24,30,23,.35) 100%),
    radial-gradient(circle at 80% 30%, rgba(197,163,91,.28), transparent 28%),
    linear-gradient(135deg, #4f5d49, #1f241f);
  overflow: hidden;
}

.hero::after {
  content: "MS";
  position: absolute;
  right: -2vw;
  bottom: -11vw;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(220px, 35vw, 550px);
  line-height: .8;
  color: rgba(255,255,255,.035);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
}

h1, h2, h3, p {
  margin-top: 0;
}

h1, h2 {
  font-family: "Cormorant Garamond", serif;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(64px, 9vw, 126px);
  line-height: .82;
  letter-spacing: -.04em;
}

h1 span {
  color: var(--gold);
}

.hero-copy {
  max-width: 590px;
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(255,255,255,.8);
}

.hero-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  background: var(--gold);
  color: var(--ink);
}

.button-gold:hover {
  background: #d2b46f;
}

.button-outline {
  border: 1px solid rgba(255,255,255,.45);
  color: var(--white);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-outline-dark {
  border: 1px solid var(--ink);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 40px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
}

.hero-badges span::before {
  content: "•";
  margin-right: 8px;
  color: var(--gold);
}

.section {
  padding: 110px 7vw;
}

.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  background: var(--cream);
}

.intro h2,
.section-heading h2,
.booking h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(43px, 6vw, 76px);
  line-height: .98;
}

.intro > p {
  max-width: 680px;
  margin-bottom: 8px;
  font-size: 18px;
  color: var(--muted);
}

.services {
  background: var(--cream-light);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 300px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  transition: .25s ease;
}

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

.service-number {
  margin-bottom: 70px;
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  color: var(--gold);
}

.service-card h3 {
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
}

.service-card p {
  color: var(--muted);
}

.prices {
  background: var(--sage-dark);
}

.price-panel {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  padding: 64px;
  border-radius: 30px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.price-list {
  display: grid;
  gap: 0;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row h3 {
  margin-bottom: 3px;
  font-size: 18px;
}

.price-row p {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--muted);
}

.price-row strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  color: var(--gold-dark);
}

.reviews {
  background: var(--cream-light);
}

.rating-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 44px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--white);
}

.stars {
  margin-bottom: 8px;
  letter-spacing: 5px;
  color: var(--gold);
  font-size: 26px;
}

.rating-box strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
}

.rating-box p {
  margin-bottom: 0;
  color: var(--muted);
}

.booking {
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 20%, rgba(197,163,91,.25), transparent 30%),
    var(--ink);
}

.booking-content {
  max-width: 760px;
  margin: 0 auto;
}

.booking-content p:not(.section-label) {
  margin: 24px auto 0;
  max-width: 620px;
  color: rgba(255,255,255,.7);
}

.booking-actions {
  justify-content: center;
}

.contact {
  background: var(--cream);
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}

.contact-card > div:first-child {
  padding: 52px;
  background: var(--white);
  border-radius: 24px;
}

.contact-card p {
  color: var(--muted);
}

.map-placeholder {
  min-height: 360px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 24px;
  color: var(--white);
  background:
    linear-gradient(rgba(82,98,76,.92), rgba(82,98,76,.92)),
    repeating-linear-gradient(45deg, transparent, transparent 18px, rgba(255,255,255,.06) 18px, rgba(255,255,255,.06) 20px);
}

.map-placeholder span {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
}

.map-placeholder small {
  color: rgba(255,255,255,.7);
}

footer {
  padding: 50px 7vw;
  text-align: center;
  color: rgba(255,255,255,.65);
  background: #151915;
}

.footer-brand {
  justify-content: center;
  color: var(--white);
}

.footer-brand .brand-logo {
  width: 190px;
  height: 72px;
}

footer p {
  margin: 18px 0 0;
  font-size: 13px;
}

.floating-call {
  display: none;
}

@media (max-width: 980px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-panel,
  .intro {
    grid-template-columns: 1fr;
  }

  .price-panel {
    gap: 30px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 72px;
    padding: 0 20px;
  }

  .brand-logo {
    width: 142px;
    height: 50px;
  }

  .menu-button {
    display: block;
    cursor: pointer;
  }

  .nav {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 24px 34px;
    background: rgba(31,36,31,.98);
  }

  .nav.open {
    display: flex;
  }

  .hero {
    min-height: 900px;
    padding: 130px 22px 80px;
  }

  h1 {
    font-size: 66px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section {
    padding: 82px 22px;
  }

  .intro {
    gap: 30px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 250px;
  }

  .service-number {
    margin-bottom: 40px;
  }

  .price-panel {
    padding: 30px 22px;
  }

  .price-row {
    align-items: flex-start;
  }

  .rating-box {
    align-items: flex-start;
    flex-direction: column;
    padding: 30px 24px;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-card > div:first-child {
    padding: 34px 26px;
  }

  .floating-call {
    position: fixed;
    z-index: 999;
    right: 18px;
    bottom: 18px;
    display: inline-flex;
    padding: 14px 20px;
    border-radius: 999px;
    font-weight: 700;
    color: var(--ink);
    background: var(--gold);
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
  }
}

.map-placeholder {
  transition: transform .2s ease, filter .2s ease;
}
.map-placeholder:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
}

/* Premium scroll motion */
.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 2000;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), #f3d58a, var(--gold));
  box-shadow: 0 0 18px rgba(197, 163, 91, .75);
  pointer-events: none;
}

.site-header {
  transition: height .35s ease, background .35s ease, box-shadow .35s ease;
}

.site-header.scrolled {
  height: 70px;
  background: rgba(21, 25, 21, .9);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .16);
}

.hero-content {
  will-change: transform, opacity;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 55px, 0) scale(.98);
  filter: blur(8px);
  transition:
    opacity .9s cubic-bezier(.2,.7,.2,1),
    transform .9s cubic-bezier(.2,.7,.2,1),
    filter .9s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.from-left {
  transform: translate3d(-70px, 0, 0) rotate(-1.5deg);
}

.reveal.from-right {
  transform: translate3d(70px, 0, 0) rotate(1.5deg);
}

.reveal.zoom-in {
  transform: scale(.9);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotate(0);
  filter: blur(0);
}

.service-card,
.price-row,
.rating-box,
.contact-card > *,
.map-placeholder {
  will-change: transform;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.55), transparent 45%, rgba(197,163,91,.12));
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.service-card {
  position: relative;
  overflow: hidden;
}

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

.price-row.reveal.is-visible strong {
  animation: price-pop .65s cubic-bezier(.2,.9,.25,1.35) both;
  animation-delay: calc(var(--reveal-delay, 0ms) + 180ms);
}

@keyframes price-pop {
  0% { transform: scale(.72); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.section-label::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 1px;
  margin-left: 12px;
  vertical-align: middle;
  background: currentColor;
  transition: width .8s cubic-bezier(.2,.7,.2,1) .2s;
}

.is-visible .section-label::after,
.section-label.is-visible::after {
  width: 52px;
}

.button-gold {
  position: relative;
  overflow: hidden;
}

.button-gold::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -65%;
  width: 38%;
  height: 180%;
  transform: rotate(22deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  transition: left .7s ease;
}

.button-gold:hover::after {
  left: 125%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
