:root {
  --ink: #3f2418;
  --ink-soft: #6f4938;
  --cream: #fffaf4;
  --ivory: #f8efe4;
  --sand: #ead8c6;
  --rose: #bd7d79;
  --rose-dark: #9f615f;
  --gold: #c8942f;
  --gold-dark: #9a661d;
  --sage: #8a9278;
  --line: rgba(103, 63, 43, 0.22);
  --surface: rgba(255, 250, 244, 0.88);
  --shadow: 0 18px 50px rgba(92, 52, 35, 0.12);
  --radius: 8px;
  --container: 1180px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 250, 244, 0.9)),
    var(--cream);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a,
summary {
  touch-action: manipulation;
}

:focus-visible {
  outline: 3px solid rgba(200, 148, 47, 0.55);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--cream);
  padding: 0.75rem 1rem;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 244, 0.9);
  border-bottom: 1px solid rgba(177, 130, 91, 0.18);
  backdrop-filter: blur(16px);
}

.nav {
  position: relative;
  width: min(calc(100% - 32px), var(--container));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  width: 146px;
  min-width: 126px;
}

.brand img {
  width: 146px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
}

.hero-logo {
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2rem);
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  color: var(--ink);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.35rem;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-left: auto;
  border: 1px solid rgba(154, 102, 29, 0.48);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 250, 244, 0.96);
  box-shadow: 0 8px 18px rgba(92, 52, 35, 0.1);
  cursor: pointer;
}

.menu-lines {
  display: grid;
  gap: 4px;
  width: 21px;
}

.menu-lines span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 46px;
  min-width: max-content;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #d5a74a, #a36f22);
  color: #fffaf4;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(154, 102, 29, 0.26);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover,
.button:hover,
.service-card a:hover,
.promo-card a:hover {
  transform: translateY(-1px);
}

.nav-cta svg,
.button svg,
.floating-whatsapp svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke-width: 2;
}

main {
  width: min(calc(100% - 28px), var(--container));
  margin: 0 auto;
}

.section-band {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(177, 130, 91, 0.18);
  background: rgba(255, 250, 244, 0.78);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}

.heading-mark {
  width: min(76px, 18vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.heading-mark::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  margin: -3px auto 0;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  background: var(--cream);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  font-size: clamp(2.5rem, 4.5vw, 4.25rem);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.55rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
}

.eyebrow {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.8rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button.primary {
  background: linear-gradient(135deg, #d6aa4e, #a76d1f);
  color: #fffaf4;
  box-shadow: 0 12px 26px rgba(154, 102, 29, 0.24);
}

.button.primary.light {
  background: linear-gradient(135deg, #e3bf62, #c8942f);
  color: #fffaf4;
}

.button.secondary {
  border-color: rgba(80, 43, 29, 0.3);
  background: rgba(255, 250, 244, 0.74);
  color: var(--ink);
}

.hero {
  min-height: clamp(590px, 68vh, 700px);
  margin-top: 0;
  display: grid;
  align-items: center;
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--ivory);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(252, 241, 229, 0.97) 0%, rgba(252, 241, 229, 0.9) 28%, rgba(252, 241, 229, 0.34) 56%, rgba(252, 241, 229, 0.08) 100%),
    linear-gradient(0deg, rgba(63, 36, 24, 0.18), rgba(63, 36, 24, 0));
  pointer-events: none;
}

.hero::after,
.final-cta::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: 2.5rem;
  top: 2rem;
  border-top: 1px solid rgba(200, 148, 47, 0.48);
  border-right: 1px solid rgba(200, 148, 47, 0.48);
  border-radius: 0 26px 0 0;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(700px, 100%);
  padding: clamp(2rem, 4.5vw, 3.5rem);
  display: grid;
  gap: 0.85rem;
}

.hero-logo {
  width: min(240px, 56vw);
  margin-bottom: 0.25rem;
}

.hero-copy p:not(.eyebrow) {
  max-width: 575px;
  color: var(--ink);
  font-size: clamp(1rem, 1.45vw, 1.08rem);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.35rem;
}

.hero-visual {
  position: absolute;
  inset: 0;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 50%;
}

.service-ribbon {
  position: absolute;
  z-index: 2;
  right: clamp(1rem, 4vw, 3rem);
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 1rem;
  width: min(170px, 18vw);
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 700;
}

.service-ribbon span {
  display: grid;
  justify-items: center;
  gap: 0.3rem;
  padding: 0.45rem;
  text-align: center;
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.4);
}

.service-ribbon svg {
  width: 1.9rem;
  height: 1.9rem;
  color: var(--rose-dark);
  stroke-width: 1.5;
}

.services {
  padding: clamp(2.4rem, 5vw, 4rem) clamp(1rem, 4vw, 4rem);
  border-top: 0;
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}

.tab {
  min-height: 44px;
  min-width: 88px;
  padding: 0.55rem 1.3rem;
  border: 1px solid rgba(80, 43, 29, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.tab.active {
  background: var(--rose);
  color: #fffaf4;
  border-color: transparent;
}

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

.service-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.76);
  box-shadow: 0 16px 34px rgba(92, 52, 35, 0.07);
  transition: opacity 180ms ease, transform 180ms ease;
}

.service-card.hidden {
  display: none;
}

.service-card > svg {
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.35rem;
  color: var(--rose-dark);
  stroke-width: 1.5;
}

.service-card h3 {
  margin-bottom: 0.9rem;
}

.service-card dl {
  display: grid;
  gap: 0.18rem;
  margin: 0 0 1.1rem;
}

.service-card dt {
  margin-top: 0.5rem;
  font-weight: 800;
}

.service-card dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.35;
}

.service-card a,
.promo-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: auto;
  padding: 0.58rem 0.9rem;
  border-radius: 999px;
  background: var(--rose);
  color: #fffaf4;
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease;
}

.service-card a:hover,
.promo-card a:hover {
  background: var(--rose-dark);
}

.ritual {
  min-height: 315px;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(1.25rem, 4vw, 3rem);
  background: linear-gradient(90deg, rgba(255, 250, 244, 0.72), rgba(246, 230, 216, 0.76));
}

.ritual img {
  width: 100%;
  height: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.ritual div {
  display: grid;
  gap: 0.85rem;
}

.ritual p:not(.eyebrow) {
  max-width: 700px;
  color: var(--ink-soft);
}

.feature-list,
.values,
.contact-list,
.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.4rem;
}

.feature-list li,
.values li,
.contact-list li,
.site-footer li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.feature-list svg,
.values svg,
.contact-list svg,
.site-footer svg {
  flex: 0 0 auto;
  width: 1.35rem;
  height: 1.35rem;
  color: var(--rose-dark);
  stroke-width: 1.6;
}

.feature-list li {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.gallery {
  display: grid;
  grid-template-columns: minmax(210px, 0.35fr) minmax(0, 1fr);
  gap: 1.1rem;
  padding: clamp(1rem, 3vw, 1.8rem);
}

.gallery-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  padding: clamp(0.6rem, 2vw, 1.5rem);
}

.gallery-intro p:not(.eyebrow) {
  color: var(--ink-soft);
}

.gallery-intro .button {
  width: fit-content;
  margin-top: 0.4rem;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: 138px;
  gap: 0.55rem;
}

.gallery-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.gallery-mosaic img:nth-child(1) {
  grid-column: span 2;
}

.gallery-mosaic img:nth-child(3) {
  grid-row: span 2;
}

.gallery-mosaic img:nth-child(4) {
  grid-column: span 2;
}

.gallery-mosaic img:nth-child(6) {
  grid-column: span 2;
}

.gallery-note {
  grid-column: 1 / -1;
  color: var(--ink-soft);
  font-size: 0.8rem;
  text-align: center;
}

.promos {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

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

.promo-card {
  min-height: 170px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42%;
  overflow: hidden;
  border: 1px solid rgba(177, 130, 91, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 250, 244, 0.94), rgba(242, 218, 207, 0.82));
  box-shadow: 0 16px 34px rgba(92, 52, 35, 0.07);
}

.promo-card > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.1rem;
}

.promo-card span {
  width: fit-content;
  max-width: 100%;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: rgba(189, 125, 121, 0.18);
  color: var(--rose-dark);
  font-size: 0.72rem;
  font-weight: 800;
}

.promo-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.promo-card img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
}

.promo-card.schedule {
  grid-template-columns: minmax(0, 1fr) 150px;
}

.mini-calendar {
  align-self: center;
  justify-self: center;
  width: 128px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.2rem;
  padding: 0.6rem;
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.8);
  box-shadow: inset 0 0 0 1px rgba(177, 130, 91, 0.22);
  color: var(--ink-soft);
  font-size: 0.68rem;
  text-align: center;
}

.mini-calendar b {
  grid-column: 1 / -1;
  margin-bottom: 0.25rem;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
}

.mini-calendar .hot {
  border-radius: 50%;
  background: var(--rose);
  color: #fffaf4;
}

.about-location,
.faq-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-panel,
.location-panel,
.faq-panel,
.contact-panel {
  padding: clamp(1.25rem, 3vw, 2.5rem);
}

.about-panel,
.faq-panel {
  border-right: 1px solid rgba(177, 130, 91, 0.18);
}

.about-panel,
.location-panel {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.about-panel p:not(.eyebrow),
.location-panel li,
.faq-panel p,
.contact-panel p {
  color: var(--ink-soft);
}

.values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.45rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-list {
  display: grid;
  gap: 0.75rem;
  margin: 0.3rem 0;
  font-weight: 700;
}

.map-card {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  border: 1px solid rgba(177, 130, 91, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(35deg, transparent 47%, rgba(138, 146, 120, 0.18) 48% 52%, transparent 53%),
    linear-gradient(115deg, transparent 48%, rgba(200, 148, 47, 0.18) 49% 52%, transparent 53%),
    linear-gradient(0deg, rgba(255, 250, 244, 0.68), rgba(255, 250, 244, 0.68)),
    repeating-linear-gradient(90deg, rgba(111, 73, 56, 0.12) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(0deg, rgba(111, 73, 56, 0.12) 0 1px, transparent 1px 42px);
}

.map-card .pin {
  position: absolute;
  left: 54%;
  top: 32%;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rose);
  color: #fffaf4;
  box-shadow: 0 8px 18px rgba(159, 97, 95, 0.28);
}

.map-card span {
  position: absolute;
  left: 56%;
  top: 62%;
  width: 145px;
  padding: 0.45rem 0.6rem;
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.86);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 12px 20px rgba(92, 52, 35, 0.1);
}

.location-actions {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 0.75rem;
}

.faq-contact {
  background: linear-gradient(135deg, rgba(255, 250, 244, 0.94), rgba(250, 239, 230, 0.82));
}

.faq-panel {
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.accordion {
  display: grid;
  gap: 0.35rem;
}

details {
  border-bottom: 1px solid rgba(177, 130, 91, 0.24);
}

summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 800;
  cursor: pointer;
}

summary::after {
  content: "";
  flex: 0 0 auto;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--rose-dark);
  border-bottom: 2px solid var(--rose-dark);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

details[open] summary::after {
  transform: rotate(225deg);
}

details p {
  padding: 0 0 0.85rem;
  font-size: 0.92rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.52fr);
  gap: 1.2rem;
  align-items: center;
}

.contact-panel > div {
  display: grid;
  gap: 0.8rem;
}

.contact-panel img {
  width: 100%;
  min-height: 245px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.contact-form label {
  display: grid;
  gap: 0.3rem;
}

.contact-form span {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(111, 73, 56, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.85);
  color: var(--ink);
  padding: 0.75rem 0.9rem;
}

.contact-form textarea {
  resize: vertical;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 1rem 0 0;
  padding: clamp(1.6rem, 4vw, 2.8rem) clamp(1.25rem, 4vw, 3.5rem);
  background:
    linear-gradient(135deg, rgba(137, 79, 76, 0.96), rgba(197, 141, 124, 0.92)),
    var(--rose);
  color: #fffaf4;
}

.final-cta h2,
.final-cta .eyebrow {
  color: #fffaf4;
}

.final-cta::after {
  top: auto;
  bottom: 1.6rem;
  border-color: rgba(255, 236, 184, 0.42);
}

.site-footer {
  width: min(calc(100% - 28px), var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1.25fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.35rem 0 2rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.site-footer img {
  width: 150px;
  height: 96px;
  object-fit: contain;
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-footer p {
  max-width: 220px;
}

.site-footer ul {
  display: grid;
  gap: 0.55rem;
}

.site-footer small {
  justify-self: end;
  text-align: right;
}

.floating-whatsapp {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 60;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.34);
  transition: transform 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px) scale(1.02);
}

.floating-whatsapp svg {
  width: 2rem;
  height: 2rem;
}

@media (max-width: 1040px) {
  .nav {
    min-height: 72px;
  }

  .nav::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 2;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(154, 102, 29, 0.48);
    border-radius: var(--radius);
    transform: translateY(-50%);
    background:
      linear-gradient(var(--ink), var(--ink)) center calc(50% - 6px) / 21px 2px no-repeat,
      linear-gradient(var(--ink), var(--ink)) center / 21px 2px no-repeat,
      linear-gradient(var(--ink), var(--ink)) center calc(50% + 6px) / 21px 2px no-repeat,
      rgba(255, 250, 244, 0.96);
    box-shadow: 0 8px 18px rgba(92, 52, 35, 0.1);
    pointer-events: none;
  }

  .menu-toggle {
    display: grid;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    border-color: transparent;
    background: transparent;
    box-shadow: none;
  }

  .menu-lines {
    opacity: 0;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.55rem;
    border: 1px solid rgba(177, 130, 91, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 250, 244, 0.97);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 0 0.85rem;
  }

  .nav-cta {
    display: none;
  }

  .service-ribbon {
    display: none;
  }

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

  .feature-list,
  .values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gallery-intro {
    max-width: 560px;
  }

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

  .promo-card {
    grid-template-columns: minmax(0, 1fr) minmax(180px, 36%);
  }

  .about-location,
  .faq-contact {
    grid-template-columns: 1fr;
  }

  .about-panel,
  .faq-panel {
    border-right: 0;
    border-bottom: 1px solid rgba(177, 130, 91, 0.18);
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer small {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 760px) {
  main,
  .nav,
  .site-footer {
    width: min(calc(100% - 20px), var(--container));
  }

  .brand {
    width: 120px;
  }

  .brand img {
    width: 120px;
    height: 56px;
  }

  .hero {
    min-height: 690px;
    align-items: end;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(252, 241, 229, 0.98) 0%, rgba(252, 241, 229, 0.88) 45%, rgba(252, 241, 229, 0.08) 100%),
      linear-gradient(90deg, rgba(63, 36, 24, 0.14), rgba(63, 36, 24, 0));
  }

  .hero::after {
    width: 96px;
    height: 96px;
    right: 1rem;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    padding: 2rem 1.1rem 2.2rem;
  }

  .hero h1 {
    max-width: 300px;
    font-size: clamp(2.12rem, 9.6vw, 2.35rem);
    overflow-wrap: break-word;
  }

  .hero-logo {
    width: min(210px, 62vw);
  }

  .hero-copy p:not(.eyebrow),
  .hero-actions {
    max-width: 300px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-visual img {
    object-position: 66% 16%;
  }

  .hero-actions,
  .location-actions,
  .final-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .service-grid,
  .feature-list,
  .values,
  .location-actions,
  .contact-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .ritual img {
    max-height: 250px;
  }

  .gallery-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 150px;
  }

  .gallery-mosaic img,
  .gallery-mosaic img:nth-child(1),
  .gallery-mosaic img:nth-child(3),
  .gallery-mosaic img:nth-child(4),
  .gallery-mosaic img:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }

  .promo-card,
  .promo-card.schedule {
    grid-template-columns: 1fr;
  }

  .promo-card img {
    min-height: 190px;
  }

  .mini-calendar {
    width: min(220px, calc(100% - 2rem));
    margin: 0 0 1rem;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-panel img {
    min-height: 210px;
  }

  .final-cta {
    display: grid;
    text-align: center;
  }

  .site-footer div {
    align-items: flex-start;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .service-tabs {
    justify-content: stretch;
  }

  .tab {
    flex: 1 1 calc(50% - 0.5rem);
    padding-inline: 0.8rem;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 210px;
  }

  .floating-whatsapp {
    width: 56px;
    height: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
