@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
}

@font-face {
  font-family: "Nunito Sans";
  src: url("assets/fonts/nunito-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --brown-950: #2c120c;
  --brown-900: #3b1a11;
  --brown-800: #552619;
  --brown-700: #74351f;
  --rust-600: #a44e29;
  --rust-500: #b86135;
  --sand-200: #ead7c8;
  --cream-100: #f8f3ef;
  --cream-50: #fcfaf8;
  --ink: #2f2a28;
  --muted: #6e6662;
  --white: #fff;
  --heading: "Montserrat", "Avenir Next", "Segoe UI", sans-serif;
  --body: "Nunito Sans", "Avenir Next", "Segoe UI", sans-serif;
  --page-gutter: clamp(1.25rem, 4vw, 4rem);
  --content-width: 76rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream-50);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body:has(.lightbox[open]) {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid #f2bb82;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--white);
  color: var(--brown-900);
  font-weight: 700;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

h1,
h2,
h3 {
  font-family: var(--heading);
  line-height: 1.15;
}

h2 {
  margin-bottom: 1.2rem;
  color: var(--brown-800);
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.035em;
}

h3 {
  color: var(--brown-800);
}

.section {
  padding: clamp(5rem, 9vw, 8.5rem) var(--page-gutter);
}

.wide-container,
.narrow-container {
  width: min(100%, var(--content-width));
  margin-inline: auto;
}

.narrow-container {
  width: min(100%, 53rem);
  text-align: center;
}

.section-kicker,
.eyebrow {
  margin-bottom: 0.85rem;
  font-family: var(--heading);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--rust-600);
}

.button {
  display: inline-flex;
  min-height: 3.7rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border: 1px solid transparent;
  border-radius: 0.7rem;
  padding: 0.95rem 1.8rem;
  font-family: var(--heading);
  font-size: 0.87rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button img {
  width: 1.35rem;
  height: 1.35rem;
}

.button-primary {
  background: var(--rust-500);
  color: var(--white);
}

.button-primary:hover {
  background: #9f4827;
}

.button-outline {
  border-color: var(--brown-800);
  color: var(--brown-800);
}

.button-outline:hover {
  background: var(--brown-800);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--brown-900);
}

.button-light:hover {
  background: var(--sand-200);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 7rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.4rem clamp(1.25rem, 3.4vw, 3.25rem);
  color: var(--white);
}

.brand {
  font-family: var(--heading);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
}

.site-nav a {
  position: relative;
  font-family: var(--heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:not(.nav-call)::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(43.5rem, 92svh);
  place-items: center;
  overflow: hidden;
  padding: 8.75rem var(--page-gutter) 6.5rem;
  background-image: url("assets/hero-massage.jpg");
  background-position: center 25%;
  background-size: cover;
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  background: rgba(53, 22, 12, 0.55);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 57rem);
  text-align: center;
  transform: translateY(2.65rem);
}

.eyebrow {
  color: var(--white);
  font-size: clamp(0.78rem, 1.6vw, 1rem);
  letter-spacing: 0.1em;
  text-transform: lowercase;
}

.hero h1 {
  margin-bottom: 1.7rem;
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  text-transform: uppercase;
}

.ornament {
  display: grid;
  width: min(100%, 21rem);
  align-items: center;
  margin: 0 auto 1.5rem;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.9rem;
}

.ornament span {
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.ornament img {
  width: 1.35rem;
  height: 1.35rem;
}

.ornament-light {
  color: rgba(255, 255, 255, 0.88);
}

.ornament-light img,
.button-primary img,
.button-light img,
.mobile-call img {
  filter: brightness(0) invert(1);
}

.hero-hours {
  margin-bottom: 1.65rem;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
}

.hero-call {
  min-width: min(100%, 26rem);
  min-height: 4.7rem;
  font-size: 1.05rem;
}

.intro {
  padding-top: 3.1rem;
  padding-bottom: 4.25rem;
  background: var(--white);
}

.intro h2 {
  font-size: clamp(2.05rem, 3.4vw, 2.5rem);
}

.intro-copy {
  max-width: 44rem;
  margin: 0 auto 1.35rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.25rem);
  line-height: 1.8;
}

.ornament-dark {
  margin-bottom: 1rem;
  color: var(--rust-600);
}

.ornament-dark img,
.address-inline img {
  filter: invert(29%) sepia(38%) saturate(1670%) hue-rotate(338deg) brightness(85%) contrast(92%);
}

.address-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--ink);
  font-family: var(--heading);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.35rem;
}

.address-inline img {
  width: 1.5rem;
  height: 1.5rem;
}

.services {
  background: #f2e6dd;
}

.section-heading {
  width: min(100%, 43rem);
  margin: 0 auto clamp(2.8rem, 5vw, 4.5rem);
  text-align: center;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  overflow: hidden;
  background: var(--cream-50);
}

.service-card > img {
  width: 100%;
  height: clamp(15rem, 24vw, 21rem);
  object-fit: cover;
}

.service-card-content {
  padding: clamp(1.6rem, 3vw, 2.2rem);
}

.service-number {
  margin-bottom: 1rem;
  color: var(--rust-600);
  font-family: var(--heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.service-card h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.service-card-content > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.price-menu {
  margin-top: clamp(4rem, 7vw, 6.5rem);
}

.price-menu-heading {
  width: min(100%, 42rem);
  margin: 0 auto 2.25rem;
  text-align: center;
}

.price-menu-heading h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.price-menu-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

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

.price-card {
  height: 100%;
  border: 1px solid rgba(116, 53, 31, 0.12);
  padding: clamp(1.45rem, 2.6vw, 2rem);
  background: var(--cream-50);
  box-shadow: 0 1rem 2.5rem rgba(85, 38, 25, 0.07);
}

.price-card h3 {
  margin-bottom: 1.3rem;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
}

.price-card table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

.price-card th,
.price-card td {
  padding: 0.72rem 0.2rem;
  border-top: 1px solid var(--sand-200);
  text-align: right;
  white-space: nowrap;
}

.price-card th:first-child {
  padding-left: 0;
  text-align: left;
}

.price-card td:last-child,
.price-card th:last-child {
  padding-right: 0;
}

.price-card thead th {
  border-top: 0;
  color: var(--rust-600);
  font-family: var(--heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card tbody th {
  color: var(--brown-800);
  font-weight: 700;
}

.package-special {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: 1.5rem;
  border-left: 0.4rem solid var(--rust-500);
  padding: clamp(2rem, 4.5vw, 3.75rem);
  background: var(--cream-50);
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.package-special-copy h3 {
  max-width: 25rem;
  margin-bottom: 1rem;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  letter-spacing: -0.025em;
}

.package-special-copy p {
  max-width: 28rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.package-special-copy p + p {
  margin-top: 0.65rem;
}

.package-list {
  display: grid;
}

.package-offer {
  display: grid;
  align-items: end;
  gap: 1.25rem;
  padding: 1.15rem 0;
  grid-template-columns: minmax(0, 1fr) auto;
}

.package-offer + .package-offer {
  border-top: 1px solid var(--sand-200);
}

.package-name,
.package-session,
.package-amount {
  margin-bottom: 0;
}

.package-name {
  color: var(--brown-800);
  font-family: var(--heading);
  font-size: 1rem;
  font-weight: 700;
}

.package-session {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.package-amount {
  color: var(--rust-600);
  font-family: var(--heading);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  line-height: 1;
}

.centered-action {
  margin-top: 3rem;
  text-align: center;
}

.rose-feature {
  background: var(--cream-50);
}

.rose-feature-heading {
  width: min(100%, 48rem);
  margin: 0 auto clamp(2.5rem, 5vw, 4.25rem);
  text-align: center;
}

.rose-feature-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.rose-feature-grid {
  display: grid;
  align-items: stretch;
  gap: clamp(1rem, 2.5vw, 2rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rose-feature-grid figure {
  min-height: clamp(18rem, 32vw, 27rem);
  margin: 0;
  overflow: hidden;
  background: #e8d4c8;
}

.rose-feature-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience {
  display: grid;
  min-height: 43rem;
  background: var(--cream-50);
  grid-template-columns: minmax(0, 1.08fr) minmax(25rem, 0.92fr);
}

.experience-image {
  min-height: 38rem;
  overflow: hidden;
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.experience-copy {
  display: flex;
  max-width: 39rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 6vw, 6rem);
}

.experience-copy > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.08rem;
}

.detail-list {
  width: 100%;
  margin: 1.2rem 0 1.8rem;
}

.detail-list > div {
  display: grid;
  padding: 1.1rem 0;
  border-top: 1px solid var(--sand-200);
  grid-template-columns: 7.5rem 1fr;
}

.detail-list > div:last-child {
  border-bottom: 1px solid var(--sand-200);
}

.detail-list dt {
  color: var(--brown-800);
  font-family: var(--heading);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-list dd {
  margin: 0;
  color: var(--muted);
}

.text-link,
.visit-details a {
  color: var(--brown-800);
  font-family: var(--heading);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration-thickness: 1px;
  text-transform: uppercase;
  text-underline-offset: 0.35rem;
}

.gallery {
  background: var(--cream-100);
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-auto-rows: clamp(13rem, 21vw, 20rem);
  grid-template-columns: repeat(4, 1fr);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #d7c9bd;
  cursor: zoom-in;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.gallery-item:hover img {
  transform: scale(1.025);
}

.visit {
  background: var(--brown-900);
  color: var(--white);
}

.visit-inner {
  display: grid;
  align-items: end;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr);
}

.visit h2 {
  max-width: 45rem;
  margin-bottom: 0;
  color: var(--white);
}

.visit .section-kicker {
  color: #e9ae82;
}

.visit-details {
  display: grid;
  gap: 2rem;
  grid-column: 2;
  grid-row: 1 / span 2;
}

.visit-details > div {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.visit-details h3 {
  margin-bottom: 0.6rem;
  color: #e9ae82;
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.visit-details p {
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
}

.visit-details a {
  color: var(--white);
}

.visit .button {
  justify-self: start;
}

.visit .button img {
  filter: none;
}

.visit-map {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--cream-100);
  grid-column: 1 / -1;
}

.visit-map iframe {
  display: block;
  width: 100%;
  height: clamp(20rem, 36vw, 29rem);
  border: 0;
}

.site-footer {
  padding: 3rem var(--page-gutter) 6rem;
  background: var(--brown-950);
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
}

.footer-brand {
  margin-bottom: 0.4rem;
  color: var(--white);
  font-family: var(--heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer p {
  margin-bottom: 0.3rem;
}

.copyright {
  font-size: 0.82rem;
}

.mobile-call {
  display: none;
}

.lightbox {
  width: min(92vw, 70rem);
  max-width: none;
  height: min(88vh, 52rem);
  max-height: none;
  overflow: visible;
  border: 0;
  padding: 0;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(24, 10, 6, 0.9);
}

.lightbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  z-index: 1;
  top: -2.8rem;
  right: 0;
  border: 0;
  padding: 0.35rem 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-family: var(--heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 5.5rem;
    padding-right: var(--page-gutter);
    padding-left: var(--page-gutter);
  }

  .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 0.6rem 0;
  }

  .hero {
    min-height: 43rem;
  }

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

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

  .service-card {
    display: grid;
    grid-template-columns: minmax(14rem, 0.8fr) minmax(0, 1fr);
  }

  .service-card > img {
    height: 100%;
    min-height: 17rem;
  }

  .rose-feature-grid figure {
    min-height: 19rem;
  }

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

  .experience-image {
    min-height: 32rem;
  }

  .experience-copy {
    max-width: 46rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .visit-inner {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .visit-details {
    grid-column: 1;
    grid-row: auto;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 4.65rem;
  }

  .section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .brand {
    font-size: 1rem;
  }

  .hero {
    min-height: 43rem;
    padding-top: 7rem;
    padding-bottom: 4.5rem;
    background-position: 56% center;
  }

  .hero-content {
    transform: translateY(1.5rem);
  }

  .hero::before {
    background: rgba(53, 22, 12, 0.61);
  }

  .hero h1 {
    font-size: clamp(2.1rem, 10.7vw, 3.15rem);
  }

  .hero-call {
    min-width: 0;
    width: 100%;
  }

  .address-inline {
    align-items: flex-start;
    text-align: left;
  }

  .service-card {
    display: block;
  }

  .service-card > img {
    height: 15rem;
    min-height: 0;
  }

  .price-card {
    padding: 1.35rem 1.15rem;
  }

  .price-card th,
  .price-card td {
    font-size: 0.92rem;
  }

  .package-special {
    gap: 1.4rem;
    border-top: 0.4rem solid var(--rust-500);
    border-left: 0;
    padding: 1.75rem 1.25rem;
    grid-template-columns: 1fr;
  }

  .package-special-copy h3 {
    max-width: none;
  }

  .rose-feature-grid {
    grid-template-columns: 1fr;
  }

  .rose-feature-grid figure {
    min-height: 0;
    aspect-ratio: 1.48 / 1;
  }

  .experience-image {
    min-height: 24rem;
  }

  .experience-copy {
    padding: 4.5rem var(--page-gutter);
  }

  .detail-list > div {
    gap: 0.35rem;
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 12rem;
  }

  .gallery-item-wide {
    grid-column: span 2;
  }

  .visit-details {
    grid-template-columns: 1fr;
  }

  .visit-map iframe {
    height: 20rem;
  }

  .site-footer {
    padding-bottom: 3rem;
  }

  .mobile-call {
    position: fixed;
    z-index: 50;
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    display: inline-flex;
    min-height: 3.45rem;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border-radius: 0.55rem;
    background: var(--rust-500);
    color: var(--white);
    font-family: var(--heading);
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 0.55rem 1.6rem rgba(44, 18, 12, 0.28);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
