@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Montserrat:wght@400;500;600&display=swap");

:root {
  --paper: #E0D1C2;
  --cream: #D9C9B7;
  --sand: #C6AE96;
  --warm-sand: #B9987D;
  --clay: #8F6249;
  --ink: #0D0B0C;
  --muted: #67574D;
  --line: #BEA38B;
  --white: #F0E3D6;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-shell,
.container {
  width: min(1320px, 92%);
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 241, 232, 0.96);
  border-bottom: 1px solid rgba(174, 128, 94, 0.2);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: grid;
  grid-template-columns: 15px auto;
  grid-template-rows: auto auto;
  column-gap: 9px;
  align-items: center;
  flex-shrink: 0;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  grid-row: 1 / span 2;
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--paper);
  border-radius: 50%;
  top: -2px;
  right: -4px;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 7px;
  line-height: 0.8;
}

.brand-subtitle {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-top: 8px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.main-nav > a,
.nav-dropdown > a {
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.main-nav > a:hover,
.nav-dropdown > a:hover {
  color: var(--clay);
}

.book-btn {
  border: 1px solid var(--ink);
  padding: 12px 17px;
  transition: background 0.2s ease, color 0.2s ease;
}

.book-btn:hover {
  background: var(--ink);
  color: var(--paper) !important;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-toggle {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  padding: 5px;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 20px);
  left: -18px;
  min-width: 230px;
  padding: 10px 0;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(48, 35, 27, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.dropdown-panel a {
  display: block;
  padding: 11px 18px;
  font-size: 12px;
  color: var(--ink);
}

.dropdown-panel a:hover {
  background: var(--cream);
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  padding: 8px 12px;
}

/* HERO */

.hero-home {
  min-height: 720px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(248, 241, 232, 0.93) 0%,
      rgba(248, 241, 232, 0.78) 37%,
      rgba(248, 241, 232, 0.38) 66%,
      rgba(248, 241, 232, 0.08) 100%
    ),
    url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
}

.hero-layout {
  padding: 130px 0;
}

.hero-copy {
  width: min(570px, 100%);
}

.eyebrow {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.hero-rule {
  display: block;
  width: 70px;
  height: 1px;
  background: var(--clay);
  margin: 22px 0 27px;
}

.hero h1,
.page-hero h1,
.pause-copy h2,
.about-section h2,
.contact-section h2,
.booking-box h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 0.96;
}

.hero h1 {
  font-size: clamp(59px, 6.7vw, 94px);
  letter-spacing: -2px;
}

.hero h1 em {
  color: var(--clay);
  font-weight: 400;
}

.hero-lead {
  width: min(480px, 100%);
  margin-top: 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.hero-actions,
.booking-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 37px;
}

.button,
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 23px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: 0.2s ease;
}

.button-dark,
.btn-primary {
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--paper);
}

.button-dark:hover,
.btn-primary:hover {
  background: transparent;
  color: var(--ink);
}

.button-outline,
.btn-secondary {
  border: 1px solid var(--ink);
  color: var(--ink);
}

.button-outline:hover,
.btn-secondary:hover {
  background: var(--ink);
  color: var(--paper);
}

/* HOME SERVICE CARDS */

.service-highlights {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-highlight-card {
  min-height: 330px;
  padding: 44px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: background 0.25s ease, transform 0.25s ease;
}

.service-highlight-card:last-child {
  border-right: 0;
}

.service-highlight-card:hover {
  background: #ead5c0;
}

.service-icon {
  color: var(--clay);
  font-size: 29px;
  line-height: 1;
  margin-bottom: 25px;
}

.service-highlight-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 31px;
  font-weight: 500;
  line-height: 0.92;
  margin-bottom: 17px;
}

.service-highlight-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.learn-more {
  color: var(--clay);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: auto;
  padding-top: 25px;
  text-transform: uppercase;
}

/* PAUSE / CTA */

.pause-section {
  padding: 120px 0;
  background: var(--paper);
}

.pause-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 490px;
  background: var(--sand);
}

.pause-visual {
  background:
    linear-gradient(
      rgba(48, 35, 27, 0.08),
      rgba(48, 35, 27, 0.08)
    ),
    url("../images/cta.png");
  background-size: cover;
  background-position: center;
}

.pause-copy {
  padding: clamp(55px, 7vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.pause-copy h2 {
  font-size: clamp(52px, 5vw, 76px);
  margin: 23px 0 34px;
  letter-spacing: -1.5px;
}

/* REVIEWS, MAP, FOOTER */

.reviews-section {
  padding: 95px 0;
  text-align: center;
  background: var(--cream);
}

.reviews-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 10px;
}

.reviews-section p {
  color: var(--muted);
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
}

.site-footer {
  padding: 72px 0;
  background: #34271f;
  color: #f7efe5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr 0.8fr;
  gap: 50px;
}

.site-footer h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 5px;
  margin-bottom: 10px;
}

.site-footer h4 {
  color: var(--sand);
  font-size: 11px;
  letter-spacing: 1.6px;
  margin-bottom: 17px;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  color: rgba(247, 239, 229, 0.78);
  font-size: 12px;
  line-height: 1.85;
}

.site-footer a:hover {
  color: var(--sand);
}

/* OTHER PAGE LAYOUTS */

.page-hero {
  padding: 150px 0 105px;
  text-align: center;
  background: var(--cream);
}

.page-hero h1 {
  max-width: 900px;
  margin: 20px auto 0;
  font-size: clamp(54px, 6vw, 82px);
}

.about-section,
.contact-section,
.booking-section {
  padding: 105px 0;
  background: var(--paper);
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 75px;
}

.about-section h2,
.contact-section h2,
.booking-box h2 {
  font-size: 60px;
  margin-bottom: 24px;
}

.about-section p,
.contact-section p,
.booking-box p {
  color: var(--muted);
  margin-bottom: 16px;
}

.about-card,
.contact-form {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 42px;
}

.about-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 20px;
}

.contact-info {
  margin: 35px 0;
}

.contact-form {
  display: grid;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.contact-form textarea {
  min-height: 145px;
  resize: vertical;
}

.contact-form button {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  padding: 15px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
}

.booking-section {
  text-align: center;
}

.booking-box {
  max-width: 780px;
}

.booking-actions {
  justify-content: center;
}

.services-grid-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 100px 5%;
  background: var(--paper);
}

.service-box {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 45px;
  transition: transform 0.2s ease;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-box h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 17px;
}

/* MOBILE */

@media (max-width: 1050px) {
  .header-inner {
    min-height: 82px;
    flex-wrap: wrap;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    width: 100%;
    padding: 13px 0 20px;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--line);
  }

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

  .main-nav > a,
  .nav-dropdown > a {
    padding: 13px 0;
    text-align: center;
  }

  .book-btn {
    margin-top: 8px;
  }

  .nav-dropdown {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .nav-dropdown > a {
    padding-left: 30px;
  }

  .nav-dropdown-toggle {
    padding: 10px 24px;
  }

  .dropdown-panel {
    display: none;
    position: static;
    grid-column: 1 / -1;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0;
  }

  .nav-dropdown.is-open .dropdown-panel {
    display: block;
  }

  .dropdown-panel a {
    text-align: center;
    padding: 10px;
    background: rgba(223, 198, 173, 0.25);
  }

  .nav-dropdown:hover .dropdown-panel {
    display: none;
  }

  .nav-dropdown.is-open:hover .dropdown-panel {
    display: block;
  }

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

  .service-highlight-card {
    border-bottom: 1px solid var(--line);
  }

  .service-highlight-card:nth-child(2n) {
    border-right: 0;
  }

  .pause-inner,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .pause-visual {
    min-height: 330px;
  }

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

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

@media (max-width: 620px) {
  .site-shell,
  .container {
    width: min(100% - 36px, 1320px);
  }

  .brand-name {
    font-size: 29px;
    letter-spacing: 5px;
  }

  .brand-subtitle {
    font-size: 7px;
    letter-spacing: 1.5px;
  }

  .hero-home {
    min-height: 610px;
    background-position: 62% center;
  }

  .hero-layout {
    padding: 95px 0;
  }

  .hero h1 {
    font-size: 57px;
    letter-spacing: -1px;
  }

  .hero-lead {
    font-size: 14px;
  }

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

  .service-highlights,
  .services-grid-page,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-highlight-card {
    min-height: 255px;
    border-right: 0;
  }

  .pause-section {
    padding: 70px 0;
  }

  .pause-copy {
    padding: 65px 30px;
  }

  .page-hero {
    padding: 115px 0 75px;
  }

  .page-hero h1 {
    font-size: 54px;
  }

  .about-section,
  .contact-section,
  .booking-section {
    padding: 75px 0;
  }

  .about-section h2,
  .contact-section h2,
  .booking-box h2 {
    font-size: 48px;
  }

  .about-card,
  .contact-form {
    padding: 28px;
  }
}
/* FINAL LIGHT FOOTER */

.site-footer {
  background: #f3e7d9;
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding: 58px 0;
}

.site-footer .footer-grid-final {
  grid-template-columns: 1.1fr 1.15fr 1.35fr 1.6fr 0.8fr;
  gap: 32px;
}

.site-footer h3 {
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 500;
  letter-spacing: 6px;
  line-height: 1;
  margin-bottom: 8px;
}

.footer-brand > p {
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
}

.site-footer h4 {
  color: var(--ink);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.site-footer a:hover {
  color: var(--clay);
}

.hours-list {
  display: grid;
  gap: 4px;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 10px;
  white-space: nowrap;
}

.hours-list div span:last-child {
  color: var(--ink);
}

@media (max-width: 1050px) {
  .site-footer .footer-grid-final {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 30px;
  }
}

@media (max-width: 620px) {
  .site-footer .footer-grid-final {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hours-list {
    max-width: 270px;
  }
}
/* IMAGE PLACEHOLDERS — REAL PHOTOS ADDED LATER */

.service-image-section {
  padding: 0 0 105px;
  background: var(--paper);
}

.image-slot {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,.42), rgba(223,198,173,.55)),
    var(--cream);
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 35px;
}

.image-slot span {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  color: var(--ink);
}

.image-slot small {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.image-slot-wide {
  min-height: 540px;
}

.image-slot-tall {
  min-height: 620px;
}

@media (max-width: 720px) {
  .image-slot-wide,
  .image-slot-tall,
  .image-slot {
    min-height: 360px;
  }

  .image-slot span {
    font-size: 27px;
  }
}
/* Head Spa steps — no numbers */

.ritual-step {
  display: block;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.ritual-step > span {
  display: none;
}

.ritual-step > div {
  display: block;
}
/* MASTER SERVICE PAGE — USED ON EVERY SERVICE */

.service-intro-section,
.service-benefits-section,
.service-ritual-section,
.service-story-section,
.service-research-section {
  padding: 115px 0;
}

.service-intro-section,
.service-story-section,
.service-research-section {
  background: var(--paper);
}

.service-benefits-section {
  background: var(--sand);
}

.service-ritual-section {
  background: var(--cream);
}

.service-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}

.service-copy h2,
.service-research-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.98;
  margin: 20px 0 28px;
}

.service-copy p:not(.eyebrow),
.service-research-section p {
  color: var(--muted);
  margin-bottom: 18px;
  max-width: 540px;
}

.service-copy .button {
  margin-top: 16px;
}

.service-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}

.service-benefit-card {
  min-height: 275px;
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.28);
}

.service-benefit-card:last-child {
  border-right: 0;
}

.service-benefit-card h3,
.ritual-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 31px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 14px;
}

.service-benefit-card p,
.ritual-item p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.centered-heading {
  text-align: center;
  max-width: 730px;
  margin: 0 auto 55px;
}

.ritual-includes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.ritual-item {
  min-height: 190px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-research-section {
  border-top: 1px solid var(--line);
}

.research-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: start;
}

.research-links {
  display: grid;
  gap: 10px;
}

.research-links a {
  padding: 14px 16px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 12px;
  transition: background .2s ease;
}

.research-links a:hover {
  background: var(--cream);
}

@media (max-width: 1050px) {
  .service-benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-benefit-card:nth-child(2) {
    border-right: 0;
  }

  .service-benefit-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .research-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .service-intro-section,
  .service-benefits-section,
  .service-ritual-section,
  .service-story-section,
  .service-research-section {
    padding: 75px 0;
  }

  .service-two-column,
  .service-benefit-grid,
  .ritual-includes {
    grid-template-columns: 1fr;
  }

  .service-benefit-card,
  .service-benefit-card:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .ritual-item {
    min-height: auto;
    border-right: 0;
  }
}
/* FOOTER SOCIAL ICONS */

.site-footer .footer-social .social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.site-footer .footer-social .social-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #C6AE96;
  color: #0D0B0C !important;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-footer .footer-social .social-icon svg {
  width: 18px;
  height: 18px;
}

.site-footer .footer-social .social-icon:hover {
  background: #010101;
  color: #E0D1C2 !important;
}
/* FOOTER MAP — COMPACT SIZE */

.map-section {
  height: 280px;
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

@media (max-width: 680px) {
  .map-section {
    height: 220px;
  }

  .map-section iframe {
    height: 220px;
  }
}
/* FOOTER MAP — CENTERED, NOT FULL WIDTH */

.map-section {
  height: auto;
  padding: 0 0 34px;
  display: flex;
  justify-content: center;
  overflow: visible;
  background: #E0D1C2;
}

.map-section iframe {
  width: min(1240px, calc(100% - 80px));
  height: 260px;
  border: 1px solid #C6AE96;
  display: block;
}

@media (max-width: 680px) {
  .map-section {
    padding-bottom: 24px;
  }

  .map-section iframe {
    width: calc(100% - 48px);
    height: 220px;
  }
}
/* FOOTER HOURS — COMPACT ALIGNMENT */

.site-footer .hours-list div {
  display: grid;
  grid-template-columns: 105px auto;
  justify-content: start;
  column-gap: 18px;
}