:root {
  --ink: #171513;
  --cream: #f5efe7;
  --soft: #e8ddd0;
  --rose: #c99e9b;
  --white: #fffdf9;
  --muted: #6f6861;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  font-weight: 600;
}

h3 {
  font-size: 2rem;
}

p {
  margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  min-height: 76px;
  padding: 18px max(24px, calc((100vw - var(--max-width)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(23, 21, 19, 0.08);
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.92rem;
  font-weight: 600;
}

.main-nav a:not(.nav-button):hover {
  color: var(--rose);
}

.nav-button,
.button-primary {
  background: var(--ink);
  color: white;
}

.nav-button {
  padding: 12px 18px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.7rem;
  cursor: pointer;
}

.hero {
  min-height: calc(100vh - 76px);
  padding: 80px max(24px, calc((100vw - var(--max-width)) / 2));
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 72px;
  background:
    radial-gradient(circle at 80% 10%, rgba(201, 158, 155, 0.26), transparent 30%),
    linear-gradient(135deg, var(--cream), var(--white));
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

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

.hero-logo-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 21, 19, 0.08);
  border-radius: 34px;
  box-shadow: 0 24px 60px rgba(65, 46, 38, 0.12);
}

.hero-logo-card img {
  width: 100%;
  border-radius: 20px;
}

.section {
  padding: 110px max(24px, calc((100vw - var(--max-width)) / 2));
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: start;
}

.about-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.section-heading > p:last-child {
  margin-top: 18px;
  color: var(--muted);
}

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

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  min-height: 330px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(65, 46, 38, 0.07);
}

.service-card > span {
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.service-card h3 {
  margin-top: 46px;
}

.service-card p {
  margin: 18px 0 32px;
  color: var(--muted);
}

.service-card strong {
  margin-top: auto;
}

.opening-panel {
  padding: 62px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  background: var(--ink);
  color: white;
  border-radius: 32px;
}

.opening-panel p:not(.eyebrow) {
  margin-top: 22px;
  color: #cfc8c1;
}

.hours {
  display: grid;
  gap: 5px;
}

.hours div {
  padding: 13px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 90px;
  align-items: center;
}

.contact-copy p:last-child {
  max-width: 650px;
  margin-top: 24px;
  color: var(--muted);
}

.contact-card {
  padding: 38px;
  display: grid;
  gap: 18px;
  background: var(--cream);
  border-radius: 26px;
}

.contact-card > a:not(.button) {
  font-weight: 600;
}

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

.full-width {
  width: 100%;
  margin-top: 8px;
}

footer {
  padding: 28px max(24px, calc((100vw - var(--max-width)) / 2));
  display: flex;
  justify-content: space-between;
  gap: 24px;
  background: var(--ink);
  color: #d8d0c8;
  font-size: 0.82rem;
}

footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    padding: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border-bottom: 1px solid rgba(23, 21, 19, 0.08);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    text-align: center;
  }

  .hero,
  .about,
  .opening-panel,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 48px;
  }

  .about,
  .contact {
    gap: 40px;
  }

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

  .opening-panel {
    padding: 38px 28px;
    gap: 40px;
  }
}

@media (max-width: 560px) {
  .section,
  .hero {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  h1 {
    font-size: 3.7rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hours div,
  footer {
    flex-direction: column;
  }

  footer {
    text-align: center;
  }
}
