:root {
  --plum: #63394e;
  --plum-deep: #432637;
  --rose: #b56d78;
  --blush: #e7b4a9;
  --shell: #fff8f3;
  --paper: #fffdf9;
  --ink: #2f252a;
  --muted: #6f6267;
  --line: rgba(99, 57, 78, 0.18);
  --shadow: 0 24px 70px rgba(67, 38, 55, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: var(--plum-deep);
  color: white;
  transform: translateY(-200%);
}

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

.site-header {
  width: min(1240px, calc(100% - 3rem));
  min-height: 92px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  width: fit-content;
  text-decoration: none;
  color: var(--plum-deep);
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--rose);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 1.7rem;
  font-style: italic;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-family: Georgia, serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.brand small {
  margin-top: 0.22rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

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

nav a {
  color: var(--muted);
  font-size: 0.91rem;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--plum);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.45rem;
  border: 1px solid var(--plum);
  border-radius: 999px;
  background: var(--plum);
  color: white;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

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

.button-small {
  justify-self: end;
  min-height: 44px;
  padding: 0.55rem 1.15rem;
  font-size: 0.9rem;
}

.hero {
  width: min(1360px, calc(100% - 2rem));
  min-height: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  overflow: hidden;
  border-radius: 32px;
  background: var(--shell);
}

.hero-copy {
  align-self: center;
  padding: clamp(3.5rem, 7vw, 7rem) clamp(2rem, 6vw, 6rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--plum-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 1.4rem;
  font-size: clamp(3.2rem, 6vw, 6rem);
  line-height: 0.98;
}

h1 em {
  color: var(--rose);
  font-weight: 400;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.45rem, 4.5vw, 4.4rem);
  line-height: 1.06;
}

h3 {
  margin-bottom: 0.8rem;
  font-size: 1.7rem;
}

.hero-intro {
  max-width: 37rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2rem;
}

.text-link {
  color: var(--plum);
  font-weight: 700;
  text-underline-offset: 0.28rem;
}

.hero-image {
  position: relative;
  min-height: 680px;
  margin: 0;
  overflow: hidden;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(42, 27, 36, 0.6));
  pointer-events: none;
}

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

.hero-image figcaption {
  position: absolute;
  z-index: 1;
  right: 2rem;
  bottom: 1.8rem;
  left: 2rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  color: white;
}

.hero-image figcaption span {
  max-width: 12ch;
  font-family: Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.1;
}

.hero-image figcaption small {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

.intro-band {
  width: min(980px, calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8.5rem) 0;
  text-align: center;
}

.intro-band p {
  margin: 0;
  color: var(--plum-deep);
  font-family: Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.35;
}

.intro-band p + p {
  margin-top: 0.45rem;
  color: var(--rose);
  font-style: italic;
}

.section {
  padding: clamp(5rem, 9vw, 8rem) max(1.5rem, calc((100% - 1200px) / 2));
}

.offerings {
  background: #f4e8e4;
}

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

.section-heading > p:last-child {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.offering-card {
  min-height: 365px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.6rem, 3vw, 2.7rem);
  border: 1px solid rgba(99, 57, 78, 0.13);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.64);
}

.offering-card.featured {
  background: var(--plum);
  color: white;
  transform: translateY(-0.8rem);
}

.offering-card.featured h3,
.offering-card.featured a {
  color: white;
}

.offering-card.featured .card-number {
  color: var(--blush);
}

.card-number {
  margin-bottom: auto;
  color: var(--rose);
  font-family: Georgia, serif;
  font-size: 1.1rem;
}

.offering-card p {
  margin: 0 0 1.5rem;
  opacity: 0.84;
}

.offering-card a {
  color: var(--plum);
  font-weight: 800;
  text-decoration: none;
}

.sound-bath {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  background: var(--plum-deep);
  color: white;
}

.sound-bath-image {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border-radius: 16px 46% 16px 16px;
  box-shadow: var(--shadow);
}

.sound-bath-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(26, 16, 23, 0.72));
}

.sound-bath-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sound-bath-image figcaption {
  position: absolute;
  z-index: 1;
  right: 1.6rem;
  bottom: 1.4rem;
  left: 1.6rem;
  color: white;
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
}

.sound-bath-copy {
  max-width: 590px;
}

.sound-bath-copy h2 {
  color: white;
}

.sound-bath-copy .lead {
  color: var(--blush);
  font-family: Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.5;
}

.sound-bath-copy > p:not(.eyebrow):not(.lead) {
  color: rgba(255, 255, 255, 0.74);
}

.sound-bath-copy .button {
  margin-top: 0.65rem;
  border-color: var(--blush);
  background: var(--blush);
  color: var(--plum-deep);
}

.sound-bath-copy .button:hover,
.sound-bath-copy .button:focus-visible {
  border-color: white;
  background: white;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
}

.about-logo {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  overflow: hidden;
  border-radius: 48% 48% 16px 16px;
  background: linear-gradient(145deg, #f7e6e1, #fff8f3);
}

.about-logo::before {
  content: "";
  position: absolute;
  width: 82%;
  aspect-ratio: 1;
  border: 1px solid rgba(181, 109, 120, 0.3);
  border-radius: 50%;
}

.about-logo img {
  position: relative;
  z-index: 1;
  width: min(78%, 420px);
  height: auto;
}

.about-copy {
  max-width: 630px;
}

.about-copy .lead {
  margin: 0 0 1rem;
  color: var(--plum-deep);
  font-family: Georgia, serif;
  font-size: 1.4rem;
  line-height: 1.5;
}

.about-copy > p:not(.eyebrow):not(.lead) {
  color: var(--muted);
}

.about-copy .text-link {
  display: inline-block;
  margin-top: 0.6rem;
}

.booking-section {
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto 5rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  padding: clamp(2.5rem, 6vw, 5rem);
  border-radius: 28px;
  background: var(--plum-deep);
  color: white;
}

.booking-section h2 {
  margin-bottom: 0.7rem;
  color: white;
}

.booking-section p:last-child {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.button-light {
  flex: 0 0 auto;
  border-color: var(--shell);
  background: var(--shell);
  color: var(--plum-deep);
}

.button-light:hover,
.button-light:focus-visible {
  background: white;
  color: var(--plum-deep);
}

footer {
  padding: 4rem max(1.5rem, calc((100% - 1200px) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.footer-brand {
  color: var(--plum-deep);
  font-family: Georgia, serif;
  font-size: 1.8rem;
  text-decoration: none;
}

footer p {
  margin: 0.55rem 0 1.1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.footer-links a {
  color: var(--plum);
  font-weight: 700;
  text-underline-offset: 0.25rem;
}

footer small {
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

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

  .hero-copy {
    padding: 4.5rem 2rem 3.5rem;
  }

  .hero-image {
    min-height: 480px;
  }

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

  .offering-card {
    min-height: 310px;
  }

  .offering-card.featured {
    transform: none;
  }

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

  .sound-bath {
    grid-template-columns: 1fr;
  }

  .sound-bath-image {
    min-height: 470px;
  }

  .about-logo {
    min-height: 440px;
  }

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

@media (max-width: 560px) {
  .site-header {
    width: min(100% - 2rem, 1240px);
    min-height: 82px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 1.25rem;
  }

  .brand small {
    font-size: 0.62rem;
  }

  .button-small {
    min-height: 40px;
    padding: 0.45rem 0.85rem;
    font-size: 0.78rem;
  }

  .hero {
    width: calc(100% - 1rem);
    min-height: auto;
    border-radius: 22px;
  }

  .hero-copy {
    padding: 3.6rem 1.5rem 3rem;
  }

  h1 {
    font-size: clamp(2.9rem, 14vw, 4rem);
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .text-link {
    width: fit-content;
  }

  .hero-image {
    min-height: 390px;
  }

  .hero-image img {
    object-position: 50% center;
  }

  .hero-image figcaption {
    right: 1.25rem;
    bottom: 1.2rem;
    left: 1.25rem;
    align-items: start;
    flex-direction: column;
  }

  .hero-image figcaption small {
    text-align: left;
  }

  .intro-band {
    width: calc(100% - 2.5rem);
  }

  .section {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .about-logo {
    min-height: 350px;
    border-radius: 42% 42% 16px 16px;
  }

  .sound-bath-image {
    min-height: 390px;
    border-radius: 14px 38% 14px 14px;
  }

  .booking-section {
    width: calc(100% - 2rem);
    margin-bottom: 3rem;
    padding: 2.25rem 1.5rem;
  }

  .button-light {
    width: 100%;
  }
}

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

  .button {
    transition: none;
  }
}
