:root {
  --cream: #f7f2eb;
  --paper: #fffdf9;
  --sand: #e8dbcd;
  --sand-soft: #f0e7dd;
  --clay: #9c684f;
  --brown: #453229;
  --brown-deep: #2f241f;
  --ink: #332823;
  --muted: #74665e;
  --line: rgba(69, 50, 41, 0.16);
  --pink: #e6006d;
  --blue: #55b6df;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

h1 {
  max-width: 690px;
  margin-bottom: 25px;
  font-size: clamp(3.8rem, 6.4vw, 6.8rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 4.5vw, 4.8rem);
}

h3 {
  font-size: clamp(1.55rem, 2vw, 2.05rem);
}

::selection {
  background: rgba(85, 182, 223, 0.24);
}

.container {
  width: min(1280px, calc(100% - 64px));
  margin-inline: auto;
}

.eyebrow {
  margin-bottom: 17px;
  color: var(--clay);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  line-height: 1.45;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brown);
  border-radius: 999px;
  background: var(--brown);
  color: #fffaf4;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.075em;
  padding: 14px 26px;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--clay);
  background: var(--clay);
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.desktop-nav a:focus-visible,
summary:focus-visible,
.floating-whatsapp:focus-visible {
  outline: 3px solid rgba(85, 182, 223, 0.62);
  outline-offset: 4px;
}

.button-small {
  min-height: 43px;
  padding: 10px 22px;
}

.text-link,
.light-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid currentColor;
  font-size: 0.79rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  padding-bottom: 3px;
  transition: gap 180ms ease, color 180ms ease;
}

.text-link:hover,
.light-link:hover {
  gap: 14px;
  color: var(--clay);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 242, 235, 0.95);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  min-height: 94px;
  align-items: center;
  grid-template-columns: 210px 1fr auto;
  gap: 34px;
}

.brand,
.brand img {
  width: 168px;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3vw, 44px);
}

.desktop-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--clay);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

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

.hero {
  padding: 34px 0 54px;
  background: var(--paper);
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.94fr 0.82fr;
  gap: clamp(48px, 7vw, 100px);
}

.hero-copy {
  padding: 28px 0;
}

.hero-text {
  max-width: 585px;
  margin-bottom: 31px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 23px;
  margin-bottom: 36px;
}

.trust-list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  list-style: none;
}

.trust-list li {
  position: relative;
  padding: 11px 0 11px 23px;
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
}

.trust-list li::before {
  position: absolute;
  top: 18px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.hero-image-wrap {
  margin: 0;
  padding: 16px;
  background: var(--sand);
}

.hero-image {
  width: 100%;
  height: auto;
}

.hero-image-wrap figcaption {
  margin: 12px 3px 1px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.93rem;
  font-style: italic;
}

.intro-section {
  padding: 76px 0;
  background: var(--brown-deep);
  color: #fffaf4;
}

.intro-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 70px;
}

.intro-grid .eyebrow {
  color: var(--sand);
}

.intro-grid h2 {
  max-width: 820px;
  margin-bottom: 18px;
}

.intro-grid div > p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 250, 244, 0.76);
  font-size: 1.03rem;
}

.services-section {
  padding: 92px 0 100px;
  background: var(--sand-soft);
}

.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: 50px;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 65px;
}

.section-heading.centered {
  max-width: none;
  margin-inline: 0;
  text-align: left;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -42px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p:last-child {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.service-card {
  display: grid;
  overflow: hidden;
  min-width: 0;
  background: var(--paper);
  grid-template-columns: 43% 57%;
}

.service-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0;
  background: var(--sand);
}

.service-image-wrap img {
  width: 100%;
  height: auto;
}

.service-number {
  position: absolute;
  top: 13px;
  right: 13px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.93);
  color: var(--brown);
  font-family: var(--serif);
  font-size: 0.86rem;
}

.service-content {
  display: flex;
  min-width: 0;
  justify-content: center;
  flex-direction: column;
  padding: clamp(24px, 3vw, 39px);
}

.service-content h3 {
  margin-bottom: 15px;
}

.service-content > p:not(.service-note) {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.service-content a {
  display: inline-flex;
  align-self: flex-start;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  color: var(--brown);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.055em;
  padding-bottom: 4px;
  text-transform: uppercase;
}

.service-note {
  margin-bottom: 8px;
  color: var(--clay);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ritual-section {
  padding: 92px 0;
  background: var(--brown);
  color: #fffaf4;
}

.ritual-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.88fr;
  gap: clamp(60px, 8vw, 120px);
}

.ritual-photo-stack {
  display: grid;
  min-height: auto;
  align-items: end;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ritual-photo-main,
.ritual-photo-detail {
  position: static;
  width: 100%;
  height: auto;
  border: 0;
  object-fit: initial;
}

.ritual-copy h2 {
  max-width: 620px;
}

.ritual-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 31px;
  color: rgba(255, 250, 244, 0.77);
}

.ritual-copy .eyebrow {
  color: var(--sand);
}

.light-link {
  color: #fffaf4;
}

.about-section {
  padding: 96px 0;
  background: var(--paper);
}

.about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.76fr 1.24fr;
  gap: clamp(55px, 8vw, 110px);
}

.about-image-wrap {
  padding: 14px;
  background: var(--sand);
}

.about-image-wrap::before {
  display: none;
}

.about-image-wrap img {
  width: 100%;
  height: auto;
}

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

.about-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1rem;
}

.about-copy .text-link {
  margin-top: 11px;
}

.location-section {
  padding: 94px 0;
  background: var(--cream);
}

.location-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.05fr 0.72fr;
  gap: clamp(55px, 8vw, 110px);
}

.location-copy > p:not(.eyebrow) {
  max-width: 550px;
  color: var(--muted);
}

.location-options {
  margin: 31px 0 34px;
  border-top: 1px solid var(--line);
}

.location-options article {
  display: grid;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 46px 1fr;
  gap: 16px;
}

.location-options article > span {
  color: var(--clay);
  font-family: var(--serif);
}

.location-options h3 {
  margin-bottom: 6px;
  font-size: 1.4rem;
}

.location-options p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.location-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 23px;
}

.location-image-wrap {
  padding: 14px;
  background: var(--sand);
}

.location-image-wrap::before {
  display: none;
}

.location-image-wrap img {
  width: 100%;
  height: auto;
}

.faq-section {
  padding: 92px 0 96px;
  background: var(--paper);
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(55px, 8vw, 115px);
}

.faq-heading {
  position: sticky;
  top: 125px;
}

.faq-heading h2 {
  font-size: clamp(2.7rem, 4vw, 4.25rem);
}

.faq-heading > p:not(.eyebrow) {
  max-width: 470px;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.4;
  list-style: none;
  padding: 23px 46px 23px 0;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 20px;
  right: 3px;
  color: var(--clay);
  content: "+";
  font-family: var(--sans);
  font-size: 1.65rem;
  font-weight: 300;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 670px;
  margin: -2px 0 23px;
  color: var(--muted);
  font-size: 0.94rem;
}

.final-cta {
  position: relative;
  display: block;
  min-height: 0;
  padding: 92px 0;
  background: var(--brown-deep);
  color: #fffaf4;
  text-align: center;
}

.final-cta-overlay {
  display: none;
}

.final-cta-content {
  max-width: 900px;
  padding-top: 0;
  padding-bottom: 0;
}

.final-cta-content .eyebrow {
  color: var(--sand);
}

.final-cta-content p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto 31px;
  color: rgba(255, 250, 244, 0.8);
  font-size: 1.02rem;
}

.button-light {
  border-color: #fffaf4;
  background: #fffaf4;
  color: var(--brown);
}

.button-light:hover {
  border-color: var(--sand);
  background: var(--sand);
  color: var(--brown);
}

.site-footer {
  padding: 68px 0 25px;
  background: var(--sand);
}

.footer-grid {
  display: grid;
  padding-bottom: 47px;
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  gap: 55px;
}

.footer-brand img {
  width: 180px;
  height: auto;
  margin-bottom: 14px;
}

.footer-brand p {
  max-width: 310px;
}

.footer-grid p,
.footer-grid a {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-grid a:hover {
  color: var(--brown);
}

.footer-title {
  margin-bottom: 15px !important;
  color: var(--brown) !important;
  font-size: 0.7rem !important;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 21px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.73rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.floating-whatsapp {
  position: fixed;
  z-index: 60;
  right: 22px;
  bottom: 20px;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: #507f69;
  box-shadow: 0 15px 40px rgba(47, 36, 31, 0.19);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  padding: 13px 19px;
  transition: transform 180ms ease, background 180ms ease;
}

.floating-whatsapp:hover {
  background: #3f6c58;
  transform: translateY(-2px);
}

@media (max-width: 1120px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: minmax(240px, 38%) 1fr;
  }
}

@media (max-width: 840px) {
  html {
    scroll-padding-top: 85px;
  }

  .container {
    width: min(100% - 38px, 680px);
  }

  .header-inner {
    min-height: 84px;
    grid-template-columns: 1fr auto;
  }

  .brand,
  .brand img {
    width: 132px;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    padding: 25px 0 55px;
  }

  .hero-grid,
  .intro-grid,
  .section-heading,
  .ritual-grid,
  .about-grid,
  .location-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 22px 0 0;
  }

  .hero-image-wrap {
    width: min(100%, 570px);
    margin-inline: auto;
  }

  .intro-section,
  .services-section,
  .ritual-section,
  .about-section,
  .location-section,
  .faq-section,
  .final-cta {
    padding: 76px 0;
  }

  .intro-grid,
  .ritual-grid,
  .about-grid,
  .location-grid,
  .faq-grid {
    gap: 44px;
  }

  .section-heading {
    gap: 18px;
  }

  .section-heading .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .faq-heading {
    position: static;
  }
}

@media (max-width: 610px) {
  h1 {
    font-size: clamp(3.2rem, 15vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.5rem, 11.5vw, 3.6rem);
  }

  .container {
    width: min(100% - 30px, 540px);
  }

  .site-header .button-small {
    min-height: 40px;
    font-size: 0.66rem;
    padding: 9px 15px;
  }

  .hero-actions,
  .location-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions .button,
  .location-actions .button {
    width: 100%;
  }

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

  .service-image-wrap img {
    width: 100%;
    height: auto;
  }

  .service-content {
    padding: 27px 24px 31px;
  }

  .ritual-photo-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .about-image-wrap,
  .location-image-wrap,
  .hero-image-wrap {
    padding: 10px;
  }

  .faq-list summary {
    font-size: 1.14rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 29px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-height: 47px;
    font-size: 0.68rem;
    padding: 11px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
