:root {
  --bg: #fbf6f0;
  --bg-soft: #fdfaf5;
  --text: #241f1b;
  --muted: #7e7268;
  --accent: #c89a8f;
  --accent-deep: #a7776d;
  --border: rgba(36, 31, 27, 0.06);
  --shadow: 0 24px 60px rgba(42, 35, 30, 0.06);
  --max-width: 1180px;
  --radius: 28px;
  --nav-height: 112px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: calc(var(--nav-height) + 24px);
}

body {
  margin: 0;
  font-family: "Lato", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
}

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

button {
  font: inherit;
}

.section-shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background: rgba(251, 246, 240, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(23, 20, 18, 0.05);
}

.navbar {
  width: min(calc(100% - 2rem), var(--max-width));
  min-height: var(--nav-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand,
.eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 0.92rem;
  font-weight: 700;
}

.brand span {
  line-height: 1.1;
  max-width: 14ch;
}

.brand-logo {
  width: 128px;
  height: 128px;
  object-fit: contain;
  flex-shrink: 0;
  mix-blend-mode: multiply;
}

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

.nav-menu a {
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--text);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 42px;
  height: 42px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

main {
  padding-top: calc(var(--nav-height) + 1rem);
}

.page-main {
  padding-top: calc(var(--nav-height) + 1rem);
}

.hero {
  padding: 1rem 0 3rem;
}

.hero-media,
.hero-content,
.price-card,
.booking-card,
.contact-card,
.map-card {
  border-radius: var(--radius);
}

.hero-media {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 14, 12, 0.08) 0%,
    rgba(18, 14, 12, 0.22) 100%
  );
  pointer-events: none;
}

.hero-media img {
  height: min(64vh, 680px);
  object-fit: cover;
  object-position: center 38%;
  transform: scale(1.02);
  filter: saturate(1.02) contrast(0.98) brightness(0.94);
}

.hero-content {
  margin-top: -7rem;
  position: relative;
  padding: 3rem;
  max-width: 640px;
  background: rgba(253, 250, 245, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.75rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 0.98;
}

h1 {
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  max-width: 10ch;
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  max-width: 11ch;
}

h3 {
  font-size: 1.35rem;
}

.hero-copy,
.section-heading p,
.booking-card p,
.contact-item p {
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-copy {
  max-width: 42ch;
  margin: 1.5rem 0 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.button-primary {
  background: var(--text);
  color: var(--bg-soft);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-deep);
}

.section-intro,
.booking-section,
.contact-section {
  padding: 5rem 0 1rem;
}

.social-section {
  padding: 4rem 0 1rem;
}

.page-hero {
  padding: 2rem 0 1rem;
}

.page-section {
  padding: 2rem 0 1rem;
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-heading p {
  max-width: 46ch;
  margin: 0;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.price-card,
.booking-card,
.contact-card,
.map-card,
.info-card,
.legal-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.price-card {
  padding: 1.5rem;
}

.price-card h3 {
  margin-bottom: 1.25rem;
}

.price-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.price-items li {
  display: grid;
  gap: 0.15rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.price-items li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.price-items span:first-child,
.price-items strong {
  color: var(--text);
}

.price-items span:nth-child(2) {
  color: var(--muted);
  font-size: 0.94rem;
}

.booking-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
}

.booking-card p {
  margin: 0;
  max-width: 46ch;
}

.booking-card-stack {
  flex-direction: column;
  align-items: flex-start;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.info-card,
.legal-card {
  padding: 2rem;
}

.info-card p,
.legal-card p {
  margin: 0;
  color: var(--muted);
}

.info-card {
  display: grid;
  gap: 0.9rem;
}

.service-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--radius) - 10px);
}

.social-image {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-card-image-only {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.legal-card {
  display: grid;
  gap: 1rem;
}

.legal-card a:hover,
.legal-card a:focus-visible {
  color: var(--accent-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.25rem;
  align-items: stretch;
}

.contact-card {
  padding: 2rem;
  display: grid;
  gap: 1.25rem;
}

.contact-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.contact-item p {
  margin: 0.2rem 0;
}

.contact-item a:hover,
.contact-item a:focus-visible {
  color: var(--accent-deep);
}

.map-card {
  overflow: hidden;
  min-height: 100%;
}

.map-card-lite {
  display: flex;
  align-items: stretch;
}

.map-lite-content {
  width: 100%;
  padding: 2rem;
  display: grid;
  align-content: center;
  gap: 1rem;
}

.map-lite-content p {
  margin: 0;
  color: var(--muted);
}

.map-lite-content h3 {
  font-size: 1.85rem;
}

.map-card iframe {
  width: 100%;
  min-height: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 4rem auto 1.5rem;
  padding-top: 0;
  display: grid;
  gap: 1.5rem;
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-links-row {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: start;
}

.footer-hours,
.footer-signup,
.footer-signup-fields {
  display: grid;
  gap: 0.65rem;
}

.footer-links-bottom {
  padding-top: 1rem;
  border-top: 1px solid rgba(23, 20, 18, 0.08);
}

.footer-title {
  margin: 0;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  min-height: 1.4rem;
}

.footer-links a,
.footer-hours p {
  margin: 0;
}

.footer-links,
.footer-hours,
.footer-signup {
  align-content: start;
}

.footer-links a {
  line-height: 1.45;
}

.footer-hours p {
  display: grid;
  grid-template-columns: minmax(92px, 120px) 1fr;
  gap: 1.25rem;
  align-items: baseline;
}

.footer-hours span:last-child {
  white-space: nowrap;
}

.footer-links a:hover,
 .footer-links a:focus-visible {
  color: var(--accent-deep);
}

.footer-signup input {
  width: 100%;
  padding: 0.8rem 0;
  border: 0;
  border-bottom: 1px solid rgba(23, 20, 18, 0.14);
  background: transparent;
  color: var(--text);
  font: inherit;
}

.footer-signup input::placeholder {
  color: var(--muted);
}

.footer-signup input:focus {
  outline: none;
  border-bottom-color: var(--accent-deep);
}

.footer-signup-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.footer-signup button {
  min-height: 46px;
  padding: 0 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--text);
  background: var(--text);
  color: var(--bg-soft);
  font: inherit;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-signup-fields {
  gap: 1rem;
}

.footer-signup button:hover,
.footer-signup button:focus-visible {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  transform: translateY(-1px);
}

.footer-bottom-center {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(23, 20, 18, 0.08);
  text-align: center;
}

.footer-bottom-center p {
  margin: 0;
}

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

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

  .footer-links-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-signup {
    grid-column: 1 / -1;
  }

  .map-card iframe {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  :root {
    --nav-height: 88px;
    --radius: 22px;
  }

  .navbar {
    gap: 0.75rem;
  }

  .brand {
    max-width: calc(100% - 56px);
  }

  .brand span {
    max-width: 12ch;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .menu-toggle {
    display: inline-block;
    flex-shrink: 0;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.25rem;
    padding: 1rem;
    background: rgba(253, 250, 245, 0.98);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 0.6rem 0.2rem;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-content {
    margin-top: -2.2rem;
    padding: 1.4rem;
  }

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

  .booking-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    gap: 1.25rem;
  }

  .footer-links-row,
  .footer-signup-row {
    grid-template-columns: 1fr;
  }

  .footer-links-row {
    gap: 1.5rem;
  }

  .footer-hours p {
    font-size: 0.95rem;
  }
}

@media (max-width: 640px) {
  .hero-media img {
    height: 42vh;
  }

  h1 {
    max-width: 8ch;
  }

  h3 {
    font-size: 1.2rem;
  }

  .hero-copy,
  .section-heading p,
  .booking-card p,
  .contact-item p {
    font-size: 0.97rem;
  }

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

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

  .section-intro,
  .booking-section,
  .contact-section,
  .page-section {
    padding-top: 4rem;
  }

  .social-section {
    padding-top: 3.25rem;
  }

  .social-image {
    max-width: 100%;
  }

  .map-card iframe {
    min-height: 300px;
  }

  .footer-signup button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --nav-height: 82px;
  }

  .section-shell {
    width: min(calc(100% - 1.25rem), var(--max-width));
  }

  .brand-logo {
    width: 64px;
    height: 64px;
  }

  .brand span {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .hero-content {
    margin-top: -1.5rem;
    padding: 1.15rem;
  }

  .hero-media img {
    height: 34vh;
    min-height: 240px;
  }

  .hero-copy {
    margin: 1rem 0 1.4rem;
  }

  .price-card,
  .booking-card,
  .contact-card,
  .legal-card {
    padding: 1.35rem;
  }

  .footer-links a,
  .footer-hours p,
  .footer-signup input,
  .footer-bottom-center p {
    font-size: 0.94rem;
  }
}
