:root {
  --ink: #1e2f38;
  --muted: #667884;
  --soft-ink: #425865;
  --paper: #f7f3ee;
  --panel: #fffdfa;
  --sand: #ede2d4;
  --blush: #dccabb;
  --line: rgba(30, 47, 56, 0.12);
  --accent: #8d735d;
  --shadow: 0 24px 60px rgba(30, 47, 56, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(220, 202, 187, 0.32), transparent 30%),
    linear-gradient(180deg, #fbf9f6 0%, var(--paper) 100%);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Forum", serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
}

p {
  margin: 0;
}

.page-shell {
  overflow: clip;
}

.container {
  width: min(1160px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.eyebrow {
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.section-heading h2,
.hero-copy h1 {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
}

.section-heading h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  max-width: 14ch;
}

.philosophy-copy p,
.products-copy p,
.location-copy p,
.contact-panel p,
.hero-copy .lede,
.hero-list li,
.ritual-card p {
  color: var(--soft-ink);
  font-size: 1rem;
}

.hero {
  position: relative;
  padding: 1.2rem 0 4rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251, 249, 246, 0.97) 0%, rgba(251, 249, 246, 0.9) 42%, rgba(251, 249, 246, 0.82) 100%);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(220, 202, 187, 0.58), transparent 28%),
    linear-gradient(180deg, transparent 75%, rgba(247, 243, 238, 0.96) 100%);
  z-index: -1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand img {
  width: min(300px, 58vw);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.92rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-cta {
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.72);
  backdrop-filter: blur(10px);
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.8fr);
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding: 4rem 0 2rem;
}

.hero-copy {
  max-width: 720px;
}

.hero-copy .lede {
  max-width: 58ch;
  margin-top: 1.5rem;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  background: var(--ink);
  color: #fffdfa;
  transition: transform 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 253, 250, 0.72);
  color: var(--ink);
  border: 1px solid var(--line);
}

.services-page-hero {
  min-height: auto;
  padding-bottom: 1rem;
}

.services-page-intro {
  width: min(1160px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 4rem 0 2rem;
  text-align: left;
}

.services-page-intro h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  max-width: 12ch;
}

.services-page-intro .eyebrow,
.services-page-intro .lede {
  max-width: 58ch;
  margin-top: 1.2rem;
  color: var(--soft-ink);
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 30px;
  background: rgba(255, 253, 250, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-card h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

.card-label,
.ritual-tag {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-list {
  margin: 1.2rem 0 0;
  padding-left: 1.2rem;
}

.hero-list li + li {
  margin-top: 0.7rem;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: start;
}

.philosophy-copy {
  display: grid;
  gap: 1.2rem;
  max-width: 52ch;
  padding-top: 2.2rem;
}

.philosophy-copy h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  max-width: 10ch;
}

.philosophy-image-stack {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: start;
  margin-top: 0;
}

.philosophy-image-stack img,
.location-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.philosophy-image-stack img:first-child {
  min-height: 540px;
}

.philosophy-image-stack img:last-child {
  min-height: 430px;
}

.philosophy-portrait {
  transform: translateY(-0.75rem);
}

.philosophy-treatment {
  margin-top: 2.4rem;
}

.ritual-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(247, 243, 238, 0.72), rgba(247, 243, 238, 0.84)),
    url("assets/images/3.png") center / cover no-repeat;
}

.ritual-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06) 40%, rgba(18, 15, 14, 0.16) 100%);
  pointer-events: none;
}

.ritual-layout {
  position: relative;
  z-index: 1;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 1.4rem;
  align-items: stretch;
}

.narrow h2 {
  max-width: none;
}

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

.ritual-card,
.contact-panel,
.feature-images img {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 253, 250, 0.88);
  box-shadow: var(--shadow);
}

.ritual-card {
  padding: 1.6rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
  transform-origin: center bottom;
  backdrop-filter: blur(10px);
  background: rgba(255, 253, 250, 0.9);
}

.ritual-card h3,
.feature-copy h2 {
  margin: 0.5rem 0 0.8rem;
  font-size: 1.7rem;
}

.ritual-card:hover {
  animation: service-bounce 420ms ease;
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(30, 47, 56, 0.14);
}

.ritual-card strong {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--ink);
}

.services-image {
  display: grid;
  align-content: end;
  min-height: 100%;
  padding: 2rem;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(248, 245, 240, 0.12), rgba(17, 16, 15, 0.18)),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.services-brand-mark {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 220px;
  padding: 1rem 1rem 2rem;
}

.services-brand-mark img {
  width: min(320px, 78%);
  height: auto;
  opacity: 0.92;
  filter: drop-shadow(0 18px 34px rgba(17, 16, 15, 0.16));
}

.add-ons-card {
  padding: 1.4rem;
  border-radius: 28px;
  background: rgba(255, 253, 250, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.add-ons-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.add-ons-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--soft-ink);
}

.add-ons-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.feature-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.6rem;
  align-items: start;
}

.feature-copy {
  display: grid;
  gap: 1rem;
  max-width: 50ch;
}

.feature-copy h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.7rem);
  margin: 0;
}

.feature-images {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
}

.feature-images img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.products {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 2rem;
  align-items: stretch;
}

.products-copy {
  display: grid;
  gap: 1rem;
  max-width: 52ch;
}

.products-copy h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.8rem);
}

.product-points {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
  color: var(--soft-ink);
}

.product-points li + li {
  margin-top: 0.7rem;
}

.products-carousel {
  display: grid;
  gap: 1rem;
  align-self: stretch;
  grid-template-rows: minmax(0, 1fr) auto;
}

.products-frame {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  min-height: 100%;
  height: 100%;
}

.products-track {
  display: flex;
  height: 100%;
  transition: transform 700ms ease;
  will-change: transform;
}

.product-slide {
  flex: 0 0 100%;
  margin: 0;
  min-height: 100%;
  height: 100%;
}

.product-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.products-dots {
  display: flex;
  gap: 0.55rem;
  justify-content: center;
}

.products-dots span {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: rgba(30, 47, 56, 0.18);
  transition: background 180ms ease, transform 180ms ease;
}

.products-dots span.is-active {
  background: var(--ink);
  transform: scale(1.1);
}

.services-page-band {
  min-height: calc(100vh - 220px);
}

.service-menu-layout {
  position: relative;
  z-index: 1;
}

.service-menu-panel {
  display: grid;
  gap: 2rem;
  padding: 2.4rem;
  border-radius: 36px;
  background: rgba(255, 253, 250, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.service-menu-group {
  display: grid;
  gap: 0.8rem;
}

.service-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 1rem;
  align-items: baseline;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(30, 47, 56, 0.1);
  color: var(--soft-ink);
}

.service-line strong {
  color: var(--ink);
}

.service-menu-note {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.location-band {
  background:
    radial-gradient(circle at right center, rgba(220, 202, 187, 0.4), transparent 30%),
    #f6f1ea;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.location-image-wrap img {
  min-height: 520px;
}

.location-copy {
  display: grid;
  gap: 1rem;
  max-width: 48ch;
}

.location-copy h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.8rem);
}

.address {
  padding-top: 0.8rem;
  line-height: 1.8;
}

.contact {
  padding-top: 5rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  padding: 2rem;
}

.contact-panel h2 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  margin-bottom: 0.8rem;
}

.contact-details {
  display: grid;
  gap: 0.7rem;
  align-content: start;
  justify-items: start;
  margin-top: 1.2rem;
}

.contact-details a {
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
}

.booking-copy {
  display: grid;
  align-content: start;
}

.calendar-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 1.4rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  color: var(--soft-ink);
  background: rgba(255, 253, 250, 0.78);
}

.booking-form {
  display: grid;
  gap: 1.2rem;
}

.booking-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.form-status {
  min-height: 1.4rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.form-status.is-success {
  color: #2d6a4f;
}

.form-status.is-error {
  color: #a33b2f;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.booking-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--soft-ink);
  font-size: 0.95rem;
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fffdfa;
  color: var(--ink);
  font: inherit;
}

.booking-form input:focus,
.booking-form select:focus {
  outline: 2px solid rgba(30, 47, 56, 0.12);
  border-color: rgba(30, 47, 56, 0.28);
}

.full-width {
  grid-column: 1 / -1;
}

.booking-submit {
  border: 0;
  cursor: pointer;
}

.booking-submit:disabled {
  cursor: wait;
  opacity: 0.75;
}

@keyframes service-bounce {
  0% {
    transform: translateY(0);
  }
  45% {
    transform: translateY(-10px);
  }
  70% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(-8px);
  }
}

.footer {
  padding: 1.5rem 1rem 2.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.7rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--soft-ink);
}

@media (max-width: 980px) {
  .hero-panel,
  .philosophy-grid,
  .products,
  .location-layout,
  .contact-panel,
  .feature-story,
  .services-layout {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding-bottom: 2rem;
  }

  .hero-panel {
    min-height: auto;
    padding-top: 3rem;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-visual img {
    min-height: 420px;
  }

  .hero-card {
    position: static;
    margin-top: 1rem;
  }

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

  .feature-images img {
    min-height: 280px;
  }

  .products-carousel {
    max-width: 100%;
  }

  .products-frame {
    min-height: 520px;
  }

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

  .services-image {
    min-height: 520px;
  }

  .service-line {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 1.5rem, 1160px);
  }

  .section {
    padding: 4.5rem 0;
  }

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

  .nav-links {
    flex-wrap: wrap;
    width: 100%;
    gap: 0.8rem;
  }

  .philosophy-image-stack,
  .feature-images {
    grid-template-columns: 1fr;
  }

  .philosophy-image-stack img:first-child,
  .philosophy-image-stack img:last-child,
  .location-image-wrap img,
  .hero-visual img,
  .services-image img,
  .feature-images img,
  .products-frame,
  .product-slide {
    min-height: 240px;
  }

  .philosophy-image-stack {
    margin-top: 0;
  }

  .philosophy-portrait,
  .philosophy-treatment {
    transform: none;
    margin-top: 0;
  }

  .philosophy-copy {
    padding-top: 0;
  }

  .services-image {
    min-height: 320px;
    padding: 1rem;
    border-radius: 24px;
  }

  .service-menu-panel {
    padding: 1.4rem;
    border-radius: 24px;
  }

  .service-line {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .services-brand-mark {
    min-height: 140px;
    padding-bottom: 1rem;
  }

  .hero-card,
  .ritual-card,
  .contact-panel {
    border-radius: 22px;
  }

  .hero-actions .btn,
  .nav-cta {
    width: 100%;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
