@font-face {
  font-family: "Maron Rose";
  src: url("assets/fonts/MaronRose.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Dream Avenue";
  src: url("assets/fonts/DreamAvenue.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Holla Script";
  src: url("assets/fonts/HollaScript.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Ozy";
  src: url("assets/fonts/Cormorant.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Ozy Italic";
  src: url("assets/fonts/Cormorant-Italic.ttf") format("truetype");
  font-display: swap;
}

:root {
  --brown: #99593c;
  --rose: #d8a7a0;
  --cream: #f6ead1;
  --ink: #000000;
  --paper: #ffffff;
  --soft: #ffffff;
  --taupe: #d8d1c6;
  --line: rgba(153, 89, 60, 0.24);
  --shadow: 0 18px 52px rgba(70, 42, 28, 0.16);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Maron Rose", "Cormorant Ozy", Georgia, serif;
  font-size: 18px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 400;
  line-height: 1;
}

h1 {
  font-size: 7rem;
}

h2 {
  font-size: 4.2rem;
}

h3 {
  font-size: 2.1rem;
}

h4 {
  font-size: 1.3rem;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  width: min(calc(100% - 32px), 760px);
  min-height: 46px;
  padding: 4px 7px;
  background: var(--brown);
  border: 1px solid var(--brown);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.site-header::after {
  content: "";
  width: 50px;
  height: 1px;
}

.site-header.is-scrolled {
  background: var(--brown);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 36px;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  image-rendering: auto;
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  gap: clamp(10px, 1.6vw, 22px);
  align-items: center;
  justify-content: space-between;
  justify-self: center;
  width: min(100%, 430px);
  min-width: 0;
}

.site-nav a,
.nav-parent,
.nav-book {
  display: grid;
  place-items: center;
  min-height: 36px;
  padding: 0 11px;
  appearance: none;
  border-radius: 6px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--paper);
  font-family: "Maron Rose", "Cormorant Ozy", Georgia, serif;
  font-size: 0.875rem;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a.is-active,
.nav-parent:hover,
.nav-parent.is-active,
.nav-group.is-open > .nav-parent,
.nav-book:hover {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.16);
}

.nav-book {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.1);
}

.nav-book:hover {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.18);
}

.nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.nav-group::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}

.subnav {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  z-index: 5;
  display: grid;
  gap: 2px;
  min-width: 190px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: var(--brown);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  visibility: hidden;
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
}

.subnav a {
  justify-content: start;
  min-height: 32px;
  padding-inline: 10px;
  text-align: left;
  white-space: nowrap;
}

.nav-group.is-open .subnav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: rgba(153, 89, 60, 0.08);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 6px auto;
  background: var(--brown);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(42deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-42deg);
}

.hero,
.page-hero {
  position: relative;
  display: grid;
  align-items: center;
  width: 100%;
  min-height: 100svh;
  padding: 128px 24px 80px;
  overflow: hidden;
  color: var(--paper);
  background: var(--brown);
}

.page-hero {
  min-height: 58svh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(55, 27, 14, 0.86), rgba(153, 89, 60, 0.68), rgba(153, 89, 60, 0.22)),
    linear-gradient(0deg, rgba(55, 27, 14, 0.28), transparent 42%);
}

.hero-home .hero-overlay,
.hero-home::after {
  display: none;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  background: linear-gradient(0deg, var(--paper), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-inner,
.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(740px, 100%);
  margin-inline: auto;
  text-align: center;
}

.page-hero-inner {
  width: min(820px, 100%);
}

.hero-logo {
  width: 176px;
  margin: 0 auto 8px;
  filter: brightness(0) invert(1);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brown);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.cta-band .eyebrow {
  color: var(--cream);
}

.script-line {
  margin: 0 0 24px;
  color: var(--rose);
  font-family: "Holla Script", cursive;
  font-size: 4.4rem;
  line-height: 1;
}

.button {
  display: inline-grid;
  place-items: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid currentColor;
  border-radius: 6px;
  background: transparent;
  color: inherit;
  font-size: 0.82rem;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-light {
  color: var(--paper);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: none;
}

.button-brown {
  color: var(--brown);
  background: rgba(153, 89, 60, 0.9);
  background: transparent;
  border-color: var(--brown);
}

.button-outline {
  color: var(--brown);
  background: transparent;
  border-color: var(--brown);
}

.learn-more {
  position: relative;
  overflow: hidden;
}

.button.learn-more {
  justify-self: start;
  width: fit-content;
}

.centered-button.learn-more {
  justify-self: center;
}

.learn-more:hover {
  color: var(--paper);
  background: var(--brown);
  border-color: var(--brown);
  box-shadow: 0 12px 26px rgba(153, 89, 60, 0.24);
}

.service-teaser a.learn-more {
  justify-self: start;
  padding: 0;
  border: 0;
  color: var(--brown);
  background: transparent;
}

.service-teaser a.learn-more:hover {
  color: var(--brown);
  background: transparent;
}

.section {
  background: var(--paper);
}

.section-tint {
  background: var(--paper);
}

.section-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

main > .page.panel.panel-default {
  width: min(100% - 96px, var(--max));
  margin: 118px auto 0;
  overflow: hidden;
  border: 1px solid rgba(153, 89, 60, 0.18);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 52px rgba(70, 42, 28, 0.1);
}

main > .page.panel.panel-default ~ .page.panel.panel-default {
  margin-top: 28px;
}

main > .page.panel.panel-default:last-of-type {
  margin-bottom: 84px;
}

main > .page.panel.panel-default .panel-body {
  padding: clamp(36px, 5vw, 68px);
}

main > .page.panel.panel-default .title {
  margin: 0 0 28px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(153, 89, 60, 0.18);
  color: rgba(70, 42, 28, 0.82);
  font-family: "Cormorant Ozy Italic", "Cormorant Ozy", Georgia, serif;
  font-size: clamp(3rem, 7vw, 5.3rem);
  line-height: 0.98;
  text-align: center;
}

main > .page.panel.panel-default .hometext,
main > .page.panel.panel-default .bodytext {
  width: min(920px, 100%);
  margin-inline: auto;
}

main > .page.panel.panel-default .bodytext {
  display: grid;
  gap: 18px;
  color: rgba(0, 0, 0, 0.76);
  font-size: 1.12rem;
  line-height: 1.7;
}

main > .page.panel.panel-default .bodytext h1,
main > .page.panel.panel-default .bodytext h2,
main > .page.panel.panel-default .bodytext h3 {
  margin-top: 12px;
  color: var(--brown);
  font-family: "Cormorant Ozy", Georgia, serif;
  line-height: 1.08;
}

main > .page.panel.panel-default .bodytext h1 {
  font-size: clamp(2.6rem, 5vw, 4.3rem);
}

main > .page.panel.panel-default .bodytext h2 {
  font-size: clamp(2.15rem, 4vw, 3.25rem);
}

main > .page.panel.panel-default .bodytext h3 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

main > .page.panel.panel-default .bodytext p,
main > .page.panel.panel-default .bodytext li {
  color: rgba(0, 0, 0, 0.76);
}

main > .page.panel.panel-default .bodytext a {
  color: var(--brown);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.split,
.contact-layout,
.gift-article,
.guide-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.copy-block {
  display: grid;
  gap: 18px;
}

.copy-block h2,
.section-title h2 {
  color: var(--brown);
}

.copy-block p,
.service-teaser p,
.gift-copy p,
.price-content p,
.policy-card p,
.review-card p,
.guide-card p {
  color: rgba(0, 0, 0, 0.74);
}

.feature-frame,
.round-image,
.oval-image {
  margin: 0;
}

.feature-frame img,
.round-image img,
.oval-image img {
  width: min(420px, 100%);
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  border-radius: 8px;
  object-fit: cover;
}

.round-image img {
  border-radius: 8px;
}

.oval-image img {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
}

.marquee-band {
  display: grid;
  place-items: center;
  min-height: 104px;
  padding: 24px;
  color: var(--paper);
  background: var(--brown);
  text-align: center;
}

.marquee-band p {
  font-size: 2rem;
}

.section-title {
  display: grid;
  gap: 10px;
  width: min(760px, 100%);
  margin-bottom: 42px;
}

.service-teasers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-teaser {
  display: grid;
  gap: 20px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.service-teaser img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
}

.service-teaser div {
  display: grid;
  gap: 14px;
}

.service-teaser h3 {
  color: var(--brown);
}

.service-teaser a {
  justify-self: start;
  color: var(--brown);
  text-transform: uppercase;
}

.service-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.directory-card {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.directory-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
}

.directory-card h3 {
  color: var(--brown);
}

.directory-card a {
  justify-self: start;
}

.service-menu-page .section-inner {
  width: min(100% - 56px, 1360px);
  padding-top: 48px;
}

.service-menu-stack {
  display: grid;
  gap: 54px;
}

.service-menu-group {
  display: grid;
  grid-template-columns: minmax(520px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(18px, 2.4vw, 32px);
}

.service-menu-media {
  display: grid;
  justify-items: end;
  margin: 0;
}

.service-menu-media img {
  width: min(520px, 100%);
  aspect-ratio: 4 / 5;
  border-radius: 0;
  object-fit: cover;
}

.service-menu-content {
  display: grid;
  gap: 16px;
}

.service-menu-content h2 {
  color: var(--ink);
  font-size: 2.7rem;
  text-transform: uppercase;
}

.service-menu-content h2 a {
  color: inherit;
  text-decoration: none;
}

body[data-page="services"] .page-hero {
  min-height: 58svh;
  padding: 128px 24px 80px;
}

body[data-page="services"] .page-hero h1 {
  font-size: 39px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 4.9px;
  text-transform: uppercase;
}

body[data-page="services"] .page-hero .button-light {
  margin-top: 33px;
  border-radius: 13px;
}

body[data-page="services"] .service-menu-page .section-inner {
  width: min(var(--max), calc(100% - 40px));
  max-width: var(--max);
  padding: clamp(56px, 8vw, 96px) 0;
}

body[data-page="services"] .service-menu-stack {
  gap: clamp(56px, 8vw, 92px);
}

body[data-page="services"] .service-menu-group {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  min-height: auto;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: 0;
  background: var(--paper);
}

body[data-page="services"] .service-menu-media {
  justify-items: center;
}

body[data-page="services"] .service-menu-media a {
  display: grid;
  justify-items: center;
  width: 100%;
}

body[data-page="services"] .service-menu-media img {
  width: min(100%, 430px);
  aspect-ratio: 698 / 896;
  border-radius: 0;
}

body[data-page="services"] .service-menu-content {
  gap: 15px;
  padding: 0;
}

body[data-page="services"] .service-menu-content h2 {
  font-size: clamp(32px, 3.4vw, 40px);
  font-weight: 400;
  line-height: 1.1;
}

body[data-page="services"] .service-accordion {
  gap: 10px;
}

body[data-page="services"] .service-panel summary {
  min-height: auto;
  padding: 10px 25px;
  border-radius: 30px;
  color: var(--paper);
  background: var(--brown);
  font-size: 20px;
  line-height: 1.3;
}

body[data-page="services"] .service-panel summary::after {
  font-size: 20px;
}

body[data-page="services"] .service-panel-body {
  gap: 20px;
  padding: 30px 20px;
  background: #f3f3f3;
}

body[data-page="services"] .service-menu-price {
  gap: 20px;
}

body[data-page="services"] .service-menu-price li {
  gap: 6px;
}

body[data-page="services"] .service-menu-row {
  gap: 10px;
  font-size: 18px;
  line-height: 1.1;
}

body[data-page="services"] .service-menu-row i {
  border-bottom-color: rgba(0, 0, 0, 0.44);
  border-bottom-width: 1px;
  transform: translateY(-4px);
}

body[data-page="services"] .service-menu-row strong {
  font-weight: 500;
}

body[data-page="services"] .service-menu-price em {
  width: min(760px, 100%);
  color: rgba(0, 0, 0, 0.68);
  font-size: 15px;
  line-height: 1.5;
}

body[data-page="services"] .section-inner.price-grid {
  width: min(var(--max), calc(100% - 40px));
  max-width: var(--max);
  padding: clamp(56px, 8vw, 96px) 0;
}

body[data-page="services"] .price-card {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  min-height: auto;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--paper);
}

body[data-page="services"] .price-card img {
  justify-self: center;
  width: min(100%, 430px);
  height: auto;
  min-height: 0;
  aspect-ratio: 698 / 896;
  border-radius: 0;
}

body[data-page="services"] .price-content {
  gap: 15px;
  padding: 0;
}

body[data-page="services"] .price-content h3 {
  color: var(--brown);
  font-size: clamp(32px, 3.4vw, 40px);
  font-weight: 400;
  line-height: 1.1;
}

body[data-page="services"] .addon-panel {
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
}

body[data-page="services"] .addon-panel summary {
  min-height: auto;
  padding: 10px 25px;
  border-radius: 30px;
  color: var(--paper);
  background: var(--brown);
  font-size: 20px;
  line-height: 1.3;
}

body[data-page="services"] .addon-panel summary::after {
  width: auto;
  height: auto;
  color: var(--paper);
  background: transparent;
  font-size: 20px;
}

body[data-page="services"] .addon-panel .price-list {
  gap: 20px;
  padding: 30px 20px;
  background: var(--paper);
}

body[data-page="services"] .price-list li {
  gap: 10px;
  padding: 0;
  border-bottom: 0;
  font-size: 18px;
  line-height: 1.1;
}

body[data-page="services"] .price-list em {
  color: rgba(0, 0, 0, 0.62);
  font-size: 15px;
  line-height: 1.5;
}

body[data-page="services"] .price-list strong {
  color: var(--brown);
  font-weight: 400;
}

.service-accordion {
  display: grid;
  gap: 12px;
}

.service-panel {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.service-panel summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 0 22px;
  color: var(--paper);
  background: var(--brown);
  cursor: pointer;
  list-style: none;
  font-size: 1.28rem;
}

.service-panel summary::-webkit-details-marker {
  display: none;
}

.service-panel summary::after {
  content: "+";
  font-size: 1.35rem;
  line-height: 1;
}

.service-panel[open] summary::after {
  content: "-";
}

.service-panel-body {
  display: grid;
  gap: 14px;
  padding: 20px 22px 22px;
  background: #f3f3f3;
}

.service-panel-body h3 {
  color: var(--brown);
  font-size: 1.2rem;
  text-transform: uppercase;
}

.service-menu-price {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-menu-price li {
  display: grid;
  gap: 6px;
}

.service-menu-row {
  display: grid;
  grid-template-columns: auto minmax(24px, 1fr) auto;
  align-items: end;
  gap: 9px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.2;
}

.service-menu-row i {
  border-bottom: 1px dotted rgba(0, 0, 0, 0.44);
  transform: translateY(-5px);
}

.service-menu-row strong {
  font-weight: 400;
}

.service-menu-price em {
  width: min(520px, 100%);
  color: rgba(0, 0, 0, 0.68);
  font-family: "Cormorant Ozy", Georgia, serif;
  font-size: 0.94rem;
  font-style: normal;
  line-height: 1.45;
}

.cta-band {
  position: relative;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(55, 27, 14, 0.9), rgba(153, 89, 60, 0.78)),
    url("assets/images/home-gallery-06.jpg") center / cover,
    var(--brown);
}

.cta-inner {
  display: grid;
  gap: 18px;
  place-items: center;
  text-align: center;
}

.brown-panel {
  padding: 34px;
  border-radius: 8px;
  color: var(--paper);
  background: var(--brown);
}

.brown-panel .eyebrow,
.brown-panel h2,
.brown-panel p {
  color: var(--paper);
}

.home-gallery-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-gallery-item {
  margin: 0;
}

.home-gallery-grid button {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.home-gallery-grid img,
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 320ms ease, filter 320ms ease;
}

.home-gallery-grid button:hover img,
.home-gallery-grid button:focus-visible img {
  filter: saturate(1.06);
  transform: scale(1.035);
}

.gallery-grid button {
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.review-feature {
  width: min(780px, 100%);
  margin: 36px auto 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  background: var(--paper);
}

.review-feature p {
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.review-feature cite,
.review-card cite {
  color: var(--brown);
  font-style: normal;
}

.centered-button {
  display: grid;
  width: fit-content;
  margin: 0 auto;
}

.policy-grid,
.guide-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

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

.policy-card,
.review-card,
.guide-card {
  display: grid;
  gap: 14px;
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.policy-card h3,
.review-card span,
.guide-card h3 {
  color: var(--brown);
}

.gallery-page-section .section-inner,
.gallery-masonry-section .section-inner,
.gallery-review-section .section-inner {
  width: min(100% - 96px, 1169px);
}

.gallery-page-section {
  background: var(--paper);
}

.gallery-masonry-section {
  background: var(--paper);
}

.gallery-review-section {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--paper);
}

.gallery-page-section .section-inner {
  padding: 78px 0 44px;
}

.gallery-masonry-section .section-inner {
  padding: 0 0 64px;
}

.gallery-review-section .section-inner {
  padding: 64px 0;
}

.gallery-intro {
  display: grid;
  gap: 12px;
  width: min(720px, 100%);
  margin: 0 auto;
  text-align: center;
}

.gallery-intro .gallery-heading {
  color: var(--ink);
  font-family: "Cormorant Ozy", Georgia, serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-intro h2 {
  color: var(--brown);
  font-family: "Cormorant Ozy Italic", "Cormorant Ozy", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  line-height: 1.12;
}

.gallery-intro p:last-child {
  color: rgba(0, 0, 0, 0.62);
  font-size: 1.05rem;
}

.gallery-masonry-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.gallery-masonry-section .gallery-item {
  display: grid;
  gap: 10px;
  margin: 0;
}

.gallery-masonry-section .gallery-grid button {
  overflow: hidden;
  display: block;
  width: 100%;
  border-radius: 28px;
  box-shadow: none;
}

.gallery-masonry-section .gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 28px;
  object-fit: cover;
  transition: transform 360ms ease, filter 360ms ease;
}

.gallery-masonry-section .gallery-grid button:hover img {
  filter: saturate(1.06);
  transform: scale(1.035);
}

.gallery-masonry-section figcaption {
  display: grid;
  gap: 4px;
  padding: 0 2px;
  color: rgba(0, 0, 0, 0.62);
  font-size: 0.95rem;
  line-height: 1.42;
}

.gallery-masonry-section figcaption strong {
  color: var(--ink);
  font-weight: 500;
}

.gallery-review-section .review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.gallery-review-section .review-card {
  align-content: start;
  min-height: 342px;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(70, 42, 28, 0.06);
  transition: box-shadow 240ms ease, transform 240ms ease;
}

.gallery-review-section .review-card:hover {
  box-shadow: 0 16px 32px rgba(70, 42, 28, 0.1);
  transform: translateY(-2px);
}

.review-stars {
  display: block;
  color: #8b6b3d;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.gallery-review-section .review-card p {
  color: rgba(0, 0, 0, 0.72);
  font-size: 1rem;
  line-height: 1.58;
}

.gallery-review-section .review-card cite {
  display: grid;
  gap: 5px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(153, 89, 60, 0.16);
  color: var(--ink);
}

.gallery-review-section .review-card cite strong {
  font-weight: 400;
}

.gallery-review-section .review-card time {
  color: rgba(0, 0, 0, 0.45);
  font-size: 0.92rem;
}

.gallery-booking-section {
  background: var(--paper);
}

.gallery-booking-inner {
  display: grid;
  gap: 16px;
  justify-items: center;
  padding: 64px 0;
  text-align: center;
}

.gallery-booking-inner h2 {
  color: var(--brown);
  font-family: "Cormorant Ozy Italic", "Cormorant Ozy", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
}

.gallery-booking-inner p {
  color: rgba(0, 0, 0, 0.62);
}

.policy-note {
  margin-top: 28px;
  color: var(--brown);
  text-align: center;
  font-size: 1.25rem;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 0;
}

.contact-list div {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-list dt {
  color: var(--brown);
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.contact-form label {
  color: var(--brown);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(153, 89, 60, 0.3);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  font-size: 1rem;
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  color: var(--brown);
}

.map-wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: -48px auto 96px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.price-grid {
  display: grid;
  gap: 26px;
}

.price-card {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.price-card img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  border-radius: 6px;
  object-fit: cover;
}

.price-content {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 12px 6px;
}

.price-content h3 {
  color: var(--brown);
}

.price-list {
  display: grid;
  gap: 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.price-list em {
  grid-column: 1 / -1;
  color: rgba(0, 0, 0, 0.62);
  font-family: "Cormorant Ozy Italic", "Cormorant Ozy", Georgia, serif;
  font-style: italic;
}

.price-list strong {
  color: var(--brown);
  font-weight: 400;
}

.addon-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.addon-panel summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 48px;
  padding: 0 16px;
  color: var(--brown);
  cursor: pointer;
  list-style: none;
  text-transform: uppercase;
}

.addon-panel summary::-webkit-details-marker {
  display: none;
}

.addon-panel summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--paper);
  background: var(--brown);
}

.addon-panel[open] summary::after {
  content: "-";
}

.addon-panel .price-list {
  padding: 0 16px 12px;
}

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

.gift-layout {
  display: grid;
  gap: 44px;
}

.gift-article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.gift-article.reverse .gift-banner {
  order: 2;
}

.gift-banner {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 28px;
  border-radius: 8px;
  color: var(--paper);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(55, 27, 14, 0.86), rgba(153, 89, 60, 0.76)),
    var(--brown);
}

.gift-banner img {
  width: 118px;
  margin-bottom: 16px;
}

.gift-banner strong {
  display: block;
  color: var(--paper);
  font-size: 5rem;
  line-height: 1;
}

.gift-banner.muted {
  padding: 0;
  overflow: hidden;
  background: var(--paper);
}

.gift-banner.muted img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
}

.gift-copy {
  display: grid;
  gap: 18px;
}

.final-booking {
  display: grid;
  place-items: center;
}

.egift-guide .section-inner {
  width: min(100% - 48px, 1040px);
}

.egift-heading {
  display: grid;
  gap: 12px;
  width: min(720px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.egift-heading h2 {
  color: var(--brown);
}

.egift-heading p:last-child {
  color: rgba(0, 0, 0, 0.74);
}

.egift-program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.egift-program-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(153, 89, 60, 0.18);
  border-radius: 8px;
  background: #f8f6f1;
  box-shadow: 0 12px 34px rgba(70, 42, 28, 0.1);
}

.egift-voucher-image {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--brown);
}

.egift-voucher-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.egift-program-copy {
  display: grid;
  gap: 12px;
}

.egift-program-copy h3 {
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1.1;
}

.egift-program-copy p {
  color: rgba(0, 0, 0, 0.72);
  font-size: 1rem;
  line-height: 1.48;
}

.egift-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--brown);
  background: rgba(153, 89, 60, 0.12);
  font-size: 0.88rem;
}

.egift-terms {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 1rem;
  color: rgba(0, 0, 0, 0.68);
  font-size: 0.95rem;
  line-height: 1.42;
}

.egift-booking {
  display: flex;
  align-items: end;
}

.egift-options-page {
  overflow: hidden;
  background: #f3eee8;
}

.egift-options-page .section {
  padding: 64px 0;
}

.egift-options-page .section-inner {
  width: min(100% - 48px, 1040px);
}

.egift-options-hero {
  padding-top: 92px;
}

.egift-options-title {
  display: grid;
  gap: 12px;
  margin: 0 auto 44px;
  color: rgba(0, 0, 0, 0.62);
  text-align: center;
}

.egift-options-title h1,
.egift-options-title h2 {
  margin: 0;
  color: rgba(70, 42, 28, 0.58);
  font-weight: 400;
}

.egift-options-title h1 {
  font-family: "Cormorant Ozy Italic", "Cormorant Ozy", Georgia, serif;
  font-size: clamp(3.1rem, 7vw, 5.2rem);
  line-height: 0.98;
}

.egift-options-title h2 {
  color: rgba(70, 42, 28, 0.56);
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.egift-options-title > span {
  display: block;
  width: min(100%, 820px);
  height: 1px;
  margin: 22px auto 0;
  background: rgba(70, 42, 28, 0.2);
}

.egift-options-title p {
  width: min(720px, 100%);
  margin: 0 auto;
  color: rgba(0, 0, 0, 0.58);
}

.egift-option-list,
.egift-step-list {
  display: grid;
  gap: 32px;
}

.egift-option-card,
.egift-note-card,
.egift-step-card,
.egift-done-card,
.egift-info-card {
  overflow: hidden;
  border: 1px solid rgba(70, 42, 28, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 12px 28px rgba(70, 42, 28, 0.035);
}

.egift-option-card {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 18px;
  padding: 28px 32px;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.egift-option-card:hover,
.egift-step-card:hover,
.egift-info-card:hover {
  box-shadow: 0 18px 38px rgba(70, 42, 28, 0.08);
  transform: translateY(-2px);
}

.egift-option-icon {
  color: rgba(153, 89, 60, 0.56);
  font-size: 1.55rem;
  line-height: 1.25;
}

.egift-option-content {
  display: grid;
  gap: 12px;
}

.egift-option-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
}

.egift-option-meta h3 {
  min-width: 0;
  margin: 0;
  color: rgba(70, 42, 28, 0.68);
  font-size: clamp(1.4rem, 2.1vw, 1.9rem);
  font-weight: 500;
  line-height: 1.15;
}

.egift-option-content p,
.egift-note-card p,
.egift-step-card p,
.egift-info-card li,
.egift-done-card p {
  margin: 0;
  color: rgba(0, 0, 0, 0.56);
  font-size: 1.03rem;
  line-height: 1.62;
}

.egift-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 3px 14px;
  border-radius: 999px;
  color: rgba(153, 89, 60, 0.68);
  background: rgba(153, 89, 60, 0.08);
  font-size: 0.92rem;
  line-height: 1;
}

.egift-pill-time::before {
  content: "";
  width: 11px;
  height: 11px;
  margin-right: 6px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.75;
}

.egift-note-card {
  margin-top: 40px;
  padding: 32px;
  background: rgba(237, 229, 218, 0.56);
}

.egift-note-card h2 {
  margin: 0 0 14px;
  color: rgba(70, 42, 28, 0.55);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.035em;
}

.egift-booking-guide {
  background: #fff;
}

.egift-booking-guide .egift-options-title h2,
.egift-waxing-guide .egift-options-title h2 {
  font-family: "Cormorant Ozy Italic", "Cormorant Ozy", Georgia, serif;
  font-size: clamp(2.35rem, 4vw, 3.7rem);
  letter-spacing: 0;
  text-transform: none;
}

.egift-step-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 22px;
  padding: 28px 32px;
  background: #f8f2ec;
}

.egift-step-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: #fff;
  background: var(--brown);
  font-size: 1.2rem;
}

.egift-step-content {
  display: grid;
  gap: 10px;
}

.egift-step-content h3,
.egift-info-card h3 {
  margin: 0;
  color: rgba(70, 42, 28, 0.76);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  font-weight: 500;
  line-height: 1.2;
}

.egift-step-subtitle {
  color: rgba(0, 0, 0, 0.48) !important;
  font-style: italic;
}

.egift-step-content ul,
.egift-info-card ul {
  display: grid;
  gap: 9px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.egift-step-content li,
.egift-info-card li {
  position: relative;
  padding-left: 26px;
}

.egift-step-content li::before,
.egift-info-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(153, 89, 60, 0.62);
}

.egift-done-card {
  margin-top: 34px;
  padding: 26px;
  border-color: rgba(153, 89, 60, 0.18);
  background: rgba(237, 229, 218, 0.72);
  text-align: center;
}

.egift-done-card strong {
  display: block;
  margin-bottom: 6px;
  color: rgba(70, 42, 28, 0.78);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.egift-waxing-guide {
  background: #f3eee8;
}

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

.egift-info-card {
  padding: 30px;
}

.egift-final-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.egift-program-page {
  overflow: hidden;
  background: #f3eee8;
}

.egift-program-page .section {
  padding: 72px 0 86px;
}

.egift-program-page .section-inner {
  width: min(100% - 48px, 1080px);
}

.egift-program-title {
  display: grid;
  gap: 14px;
  width: min(800px, 100%);
  margin: 0 auto 46px;
  color: rgba(70, 42, 28, 0.66);
  text-align: center;
}

.egift-program-title p {
  margin: 0;
  color: var(--brown);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.egift-program-title h1 {
  margin: 0;
  color: rgba(70, 42, 28, 0.78);
  font-family: "Cormorant Ozy Italic", "Cormorant Ozy", Georgia, serif;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  font-weight: 400;
  line-height: 0.98;
}

.egift-program-title > span {
  display: block;
  width: min(100%, 760px);
  height: 1px;
  margin: 14px auto 4px;
  background: rgba(70, 42, 28, 0.18);
}

.egift-program-title div {
  width: min(720px, 100%);
  margin: 0 auto;
  color: rgba(0, 0, 0, 0.58);
  font-size: 1.05rem;
  line-height: 1.7;
}

.egift-program-list {
  display: grid;
  gap: 30px;
}

.egift-program-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(153, 89, 60, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 22px 60px rgba(70, 42, 28, 0.08);
}

.egift-program-row:nth-child(even) .egift-program-image {
  order: 2;
}

.egift-program-image {
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(153, 89, 60, 0.18), rgba(237, 229, 218, 0.92));
}

.egift-program-image img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.egift-program-image-placeholder {
  display: grid;
  place-items: center;
  color: rgba(70, 42, 28, 0.58);
  font-family: "Cormorant Ozy", Georgia, serif;
  font-size: 1.6rem;
}

.egift-program-copy {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.egift-program-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  padding: 3px 14px;
  border-radius: 999px;
  color: var(--brown);
  background: rgba(153, 89, 60, 0.1);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.egift-program-copy h2 {
  margin: 0;
  color: rgba(70, 42, 28, 0.8);
  font-size: clamp(2.25rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1.02;
}

.egift-program-description {
  color: rgba(0, 0, 0, 0.62);
  font-size: 1.05rem;
  line-height: 1.68;
}

.egift-program-terms {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border: 1px solid rgba(153, 89, 60, 0.12);
  border-radius: 18px;
  background: rgba(248, 246, 241, 0.74);
}

.egift-program-terms h3 {
  margin: 0;
  color: rgba(70, 42, 28, 0.72);
  font-size: 1.2rem;
  font-weight: 500;
}

.egift-program-terms ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.egift-program-terms li {
  position: relative;
  padding-left: 24px;
  color: rgba(0, 0, 0, 0.58);
  line-height: 1.5;
}

.egift-program-terms li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(153, 89, 60, 0.62);
}

.egift-program-actions {
  display: flex;
  margin-top: 4px;
}

.egift-program-empty {
  display: grid;
  gap: 18px;
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 38px;
  border: 1px solid rgba(153, 89, 60, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.social-rail {
  position: fixed;
  left: 0;
  top: 50%;
  z-index: 25;
  display: grid;
  gap: 1px;
  justify-items: start;
  transform: translateY(-50%);
}

.action-rail {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 25;
  display: grid;
  gap: 1px;
  justify-items: end;
  transform: translateY(-50%);
}

.social-rail a,
.action-rail a,
.action-rail button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 36px;
  height: 36px;
  overflow: hidden;
  padding: 0 9px;
  border: 0;
  color: var(--paper);
  background: var(--brown);
  font-size: 0;
  line-height: 1;
  white-space: nowrap;
  transition: width 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.action-rail button {
  font-family: inherit;
  cursor: pointer;
}

.action-rail a,
.action-rail button {
  flex-direction: row-reverse;
}

.social-rail a:hover,
.social-rail a:focus-visible {
  width: 122px;
  background: #824930;
  box-shadow: var(--shadow);
}

.action-rail button:hover,
.action-rail button:focus-visible {
  width: 114px;
  background: #824930;
  box-shadow: var(--shadow);
}

.action-rail a:hover,
.action-rail a:focus-visible {
  width: 108px;
  background: #824930;
  box-shadow: var(--shadow);
}

.social-rail a::before,
.action-rail a::before,
.action-rail button::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  background: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.social-rail a::after,
.action-rail a::after,
.action-rail button::after {
  display: inline-block;
  max-width: 0;
  overflow: hidden;
  color: currentColor;
  font-size: 0.68rem;
  line-height: 1;
  opacity: 0;
  text-transform: uppercase;
  transition: max-width 180ms ease, margin 180ms ease, opacity 180ms ease;
}

.social-rail a:hover::after,
.social-rail a:focus-visible::after {
  max-width: 88px;
  margin-left: 8px;
  opacity: 1;
}

.action-rail a:hover::after,
.action-rail a:focus-visible::after,
.action-rail button:hover::after,
.action-rail button:focus-visible::after {
  max-width: 82px;
  margin-right: 8px;
  opacity: 1;
}

.social-rail a:nth-child(1)::after {
  content: "Instagram";
}

.social-rail a:nth-child(2)::after {
  content: "Facebook";
}

.social-rail a:nth-child(3)::after {
  content: "TikTok";
}

.action-rail button::after {
  content: "Book Now";
}

.action-rail a::after {
  content: "Call Now";
}

.social-rail a:nth-child(1)::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 448 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9S352.4 35.1 316.5 33.4c-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1S3.3 127.6 1.6 163.5c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.5 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2s34.5-58 36.2-93.9c2.1-37 2.1-147.8-.1-184.9zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z'/%3E%3C/svg%3E");
}

.social-rail a:nth-child(2)::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 320 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06H297V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z'/%3E%3C/svg%3E");
}

.social-rail a:nth-child(3)::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 448 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M448 209.9a210.1 210.1 0 0 1-122.8-39.3v178.7A162.6 162.6 0 1 1 185 188.3v89.9a74.6 74.6 0 1 0 52.2 71.2V0h88a121.2 121.2 0 0 0 1.9 22.2 122.2 122.2 0 0 0 53.9 80.2 121.4 121.4 0 0 0 67 20.1z'/%3E%3C/svg%3E");
}

.action-rail button::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2v4'/%3E%3Cpath d='M16 2v4'/%3E%3Crect width='18' height='18' x='3' y='4' rx='2'/%3E%3Cpath d='M3 10h18'/%3E%3Cpath d='m9 16 2 2 4-4'/%3E%3C/svg%3E");
}

.action-rail a::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

.social-rail a:nth-child(1) {
  order: 2;
}

.social-rail a:nth-child(2) {
  order: 1;
}

.social-rail a:nth-child(3) {
  order: 3;
}

.booking-modal,
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.48);
}

.modal-panel {
  position: relative;
  display: grid;
  gap: 14px;
  width: min(420px, 100%);
  padding: 28px;
  border-radius: 8px;
  background: var(--paper);
  text-align: center;
  box-shadow: var(--shadow);
}

.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(2px);
}

.promo-card {
  position: relative;
  width: min(340px, calc(100vw - 42px));
  max-height: min(78vh, 540px);
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  text-align: center;
  box-shadow: 0 24px 70px rgba(28, 23, 21, 0.28);
  overflow: visible;
}

.promo-image-link {
  display: block;
  border-radius: inherit;
  background: var(--paper);
  overflow: hidden;
}

.promo-image-link:focus-visible {
  outline: 3px solid rgba(153, 89, 60, 0.45);
  outline-offset: 5px;
}

.promo-image {
  display: block;
  width: 100%;
  max-height: min(78vh, 540px);
  border-radius: inherit;
  object-fit: contain;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.promo-image-link:hover .promo-image,
.promo-image-link:focus-visible .promo-image {
  filter: saturate(1.04);
}

.promo-paper {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 456px;
  max-height: min(78vh, 540px);
  padding: 25px 24px 22px;
  border: 8px solid var(--paper);
  border-radius: 8px;
  background:
    radial-gradient(circle at 10% 12%, rgba(153, 89, 60, 0.12) 0 30px, transparent 31px),
    radial-gradient(circle at 92% 92%, rgba(153, 89, 60, 0.13) 0 36px, transparent 37px),
    linear-gradient(180deg, #fbf7f3 0%, #f2e9e1 100%);
  overflow: hidden;
}

.promo-paper::before,
.promo-paper::after {
  content: "";
  position: absolute;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(153, 89, 60, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.promo-paper::before {
  top: -30px;
  left: -28px;
}

.promo-paper::after {
  right: -34px;
  bottom: -32px;
}

.promo-logo {
  width: 70px;
  margin: 0 auto 2px;
  filter: drop-shadow(0 4px 10px rgba(153, 89, 60, 0.14));
}

.promo-eyebrow {
  margin: 0;
  color: var(--brown);
  font-size: 0.72rem;
  line-height: 1.4;
}

.promo-title {
  color: var(--brown);
  font-size: 3.45rem;
  line-height: 1;
  letter-spacing: 0;
}

.promo-rule {
  width: 128px;
  height: 1px;
  margin: 4px 0 2px;
  background: rgba(153, 89, 60, 0.35);
}

.promo-description {
  max-width: 250px;
  margin: 0 auto;
  color: rgba(28, 23, 21, 0.72);
  font-size: 0.96rem;
  line-height: 1.55;
}

.promo-cta {
  align-self: end;
  display: inline-grid;
  min-width: 136px;
  min-height: 40px;
  place-items: center;
  margin-top: 8px;
  padding: 0 18px;
  border: 1px solid rgba(153, 89, 60, 0.46);
  border-radius: 999px;
  color: var(--paper);
  background: var(--brown);
  font-size: 0.84rem;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.promo-card:hover .promo-cta,
.promo-card:focus-visible .promo-cta {
  transform: translateY(-2px);
  color: var(--brown);
  background: transparent;
}

.promo-card:focus-visible {
  outline: 2px solid var(--brown);
  outline-offset: 5px;
}

.promo-close,
.modal-close,
.lightbox button {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 6px;
  color: var(--paper);
  background: var(--brown);
  font-size: 1.4rem;
  line-height: 1;
}

.promo-close {
  top: -13px;
  right: -13px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(87, 78, 74, 0.82);
  font-size: 2rem;
  font-family: Arial, sans-serif;
  transition: transform 0.2s ease, background 0.2s ease;
}

.promo-close:hover {
  transform: scale(1.04);
  background: var(--brown);
}

.modal-panel {
  text-align: left;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lightbox img {
  width: min(760px, 92vw);
  max-height: 86vh;
  border-radius: 8px;
  object-fit: contain;
  background: var(--paper);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(320px, 1fr) minmax(320px, 1fr);
  align-items: center;
  gap: 10px;
  padding: 40px 20px;
  color: var(--paper);
  background: var(--brown);
  text-align: left;
}

.site-footer:has(.footer-inner) {
  display: block;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(320px, 1fr) minmax(320px, 1fr);
  align-items: center;
  gap: 10px;
  width: min(100%, 1225px);
  margin: 0 auto;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--paper);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  text-transform: none;
}

.site-footer p,
.site-footer a,
.footer-address {
  display: block;
  margin: 0 0 14px;
  color: var(--paper);
  font-size: 1.125rem;
  font-style: normal;
  line-height: 1.5;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--paper);
  text-decoration: underline;
}

.footer-brand img {
  display: block;
  width: 138px;
  height: auto;
  margin: 0 auto;
}

.footer-brand p {
  display: none;
}

.footer-section {
  display: block;
}

.footer-hours,
.footer-menu-block,
.site-footer > div:nth-of-type(2),
.site-footer > div:nth-of-type(3) {
  grid-column: 2;
}

.footer-contact,
.site-footer > div:nth-of-type(4),
.site-footer > .copyright {
  grid-column: 3;
}

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

.footer-menu-block {
  align-self: start;
  margin-top: -2px;
}

.footer-menu-block:empty {
  display: none;
}

.footer-menu-block .panel-body {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.footer-menu-block .panel-body > h3 {
  display: none;
}

.footer-menu-block .panel-body section {
  display: block;
}

.footer-menu-block .menu {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-menu-block .menu li {
  margin: 0;
  padding: 0;
}

.footer-menu-block .menu a {
  margin-bottom: 0;
}

.footer-social {
  display: flex;
  justify-content: flex-start;
  gap: 11px;
  margin: 16px 0 0;
}

.footer-social-link {
  display: grid !important;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 4px;
  color: var(--brown) !important;
  background: var(--paper);
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  transform: translateY(-2px);
  background: var(--paper);
  text-decoration: none !important;
}

.footer-social-link::before {
  content: "";
  width: 16px;
  height: 16px;
  background: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.footer-facebook::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 320 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06H297V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z'/%3E%3C/svg%3E");
}

.footer-instagram::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 448 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9S352.4 35.1 316.5 33.4c-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1S3.3 127.6 1.6 163.5c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.5 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2s34.5-58 36.2-93.9c2.1-37 2.1-147.8-.1-184.9zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z'/%3E%3C/svg%3E");
}

.footer-tiktok::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 448 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M448 209.9a210.1 210.1 0 0 1-122.8-39.3v178.7A162.6 162.6 0 1 1 185 188.3v89.9a74.6 74.6 0 1 0 52.2 71.2V0h88a121.2 121.2 0 0 0 1.9 22.2 122.2 122.2 0 0 0 53.9 80.2 121.4 121.4 0 0 0 67 20.1z'/%3E%3C/svg%3E");
}

.copyright {
  padding-top: 20px;
  max-width: 380px;
  font-size: 1rem;
  line-height: 1.5;
}

.copyright span {
  display: inline;
  margin-left: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  h2 {
    font-size: 3.2rem;
  }

  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 6px;
    justify-content: space-between;
    padding: 4px 6px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    justify-content: space-between;
    width: min(100%, 430px);
    padding: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .nav-group,
  .nav-book,
  .site-nav a,
  .nav-parent {
    flex: 0 0 auto;
    width: auto;
  }

  .site-nav a,
  .nav-parent,
  .nav-book {
    justify-content: center;
    min-height: 34px;
    padding-inline: 9px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .subnav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 40;
    display: none;
    width: min(318px, calc(100vw - 44px));
    min-width: 220px;
    box-sizing: border-box;
    margin: 0;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: var(--brown);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    visibility: hidden;
    transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
  }

  .nav-group {
    flex-direction: row;
    align-items: center;
  }

  .nav-group::after {
    display: none;
  }

  .nav-group.is-open .subnav {
    display: grid;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .subnav a {
    justify-content: start;
    min-height: 36px;
    font-size: 0.8rem;
  }

  .split,
  .contact-layout,
  .gift-article,
  .guide-grid,
  .price-card {
    grid-template-columns: 1fr;
  }

  .service-teasers,
  .service-directory,
  .egift-program-grid,
  .egift-waxing-grid,
  .home-gallery-grid,
  .review-grid,
  .site-footer,
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

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

  .price-card img {
    min-height: 360px;
  }

  .egift-program-row,
  .egift-program-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .egift-program-row:nth-child(even) .egift-program-image {
    order: 0;
  }
}

@media (max-width: 640px) {
  :root {
    --mobile-rail-gutter: 38px;
  }

  body {
    font-size: 17px;
  }

  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    justify-content: space-between;
    width: min(calc(100% - 36px), 760px);
    min-height: 58px;
    top: 16px;
    padding: 7px 8px;
    border-radius: 10px;
  }

  .site-header::after {
    display: block;
    width: 0;
  }

  .brand {
    width: 42px;
    height: 42px;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav a,
  .nav-parent {
    min-height: 42px;
    padding-inline: 10px;
    border-radius: 8px;
    font-size: 0.94rem;
    line-height: 1;
  }

  .site-nav {
    grid-column: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-height: none;
    margin-top: 0;
    padding: 0;
    gap: 5px;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .nav-group,
  .site-nav a,
  .nav-parent {
    flex: 0 0 auto;
    width: auto;
  }

  .nav-group {
    flex-direction: row;
    align-items: center;
  }

  .site-nav a,
  .nav-parent {
    justify-content: center;
  }

  .subnav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 40;
    display: grid;
    width: min(318px, calc(100vw - 44px));
    min-width: 220px;
    box-sizing: border-box;
    margin: 0;
    gap: 2px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    color: var(--paper);
    background: var(--brown);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    visibility: hidden;
    transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
  }

  .nav-group.is-open .subnav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .subnav a {
    justify-content: left;
    min-height: 38px;
    padding-inline: 10px;
    color: var(--paper);
    text-align: center;
    white-space: normal;
  }

  .subnav a:hover,
  .subnav a.is-active {
    color: var(--paper);
    background: rgba(255, 255, 255, 0.16);
  }

  .site-header .nav-book {
    display: none;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.6rem;
  }

  h3 {
    font-size: 1.7rem;
  }

  .script-line {
    margin-bottom: 10px;
    font-size: 1.95rem;
  }

  .hero,
  .page-hero {
    min-height: 0;
    height: min(82vw, 340px);
    padding: 82px 18px 26px;
  }

  .page-hero {
    min-height: 0;
    height: min(56vw, 250px);
    padding: 80px 18px 24px;
  }

  .hero-logo {
    width: 78px;
    margin-bottom: 2px;
  }

  .hero .eyebrow,
  .page-hero .eyebrow {
    margin-bottom: 8px;
    font-size: 0.72rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.15rem, 9.5vw, 2.75rem);
    line-height: 0.96;
  }

  .hero-bg {
    object-position: center center;
  }

  .hero::after,
  .page-hero::after {
    height: 58px;
  }

  .section-inner {
    width: min(100% - (var(--mobile-rail-gutter) * 2), var(--max));
    padding: 72px 0;
  }

  main > .page.panel.panel-default {
    width: min(100% - (var(--mobile-rail-gutter) * 2), var(--max));
    margin-top: 98px;
    border-radius: 8px;
  }

  main > .page.panel.panel-default ~ .page.panel.panel-default {
    margin-top: 22px;
  }

  main > .page.panel.panel-default:last-of-type {
    margin-bottom: 56px;
  }

  main > .page.panel.panel-default .panel-body {
    padding: 30px 22px;
  }

  main > .page.panel.panel-default .title {
    margin-bottom: 22px;
    padding-bottom: 20px;
    font-size: clamp(2.35rem, 11vw, 3.45rem);
  }

  main > .page.panel.panel-default .bodytext {
    gap: 14px;
    font-size: 1rem;
    line-height: 1.62;
  }

  main > .page.panel.panel-default .bodytext h1 {
    font-size: clamp(2.15rem, 9vw, 3rem);
  }

  main > .page.panel.panel-default .bodytext h2 {
    font-size: clamp(1.75rem, 8vw, 2.55rem);
  }

  main > .page.panel.panel-default .bodytext h3 {
    font-size: clamp(1.4rem, 6vw, 1.9rem);
  }

  .button {
    width: fit-content;
    min-width: 150px;
    max-width: 100%;
  }

  .service-teasers,
  .service-directory,
  .egift-program-grid,
  .egift-waxing-grid,
  .home-gallery-grid,
  .policy-grid,
  .review-grid,
  .site-footer,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    gap: 10px;
    padding: 40px 20px;
    background: #ccc2b6;
    text-align: center;
  }

  .footer-inner {
    width: 100%;
    gap: 10px;
  }

  .footer-brand,
  .footer-section,
  .footer-address,
  .footer-policy,
  .footer-contact,
  .footer-menu-block,
  .copyright,
  .site-footer > div,
  .site-footer > div:nth-of-type(2),
  .site-footer > div:nth-of-type(3),
  .site-footer > div:nth-of-type(4),
  .site-footer > .copyright {
    grid-column: 1;
    text-align: center;
  }

  .footer-brand img {
    width: 118px;
  }

  .site-footer h3,
  .site-footer p,
  .site-footer a,
  .footer-address {
    font-size: 1rem;
    line-height: 1.5;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-menu-block {
    width: 100%;
    margin-top: 0;
  }

  .footer-menu-block .menu {
    justify-items: center;
  }

  .copyright {
    max-width: 100%;
    padding-top: 20px;
  }

  .egift-guide .section-inner {
    width: min(100% - (var(--mobile-rail-gutter) * 2), var(--max));
  }

  .egift-program-page .section {
    padding: 46px 0 58px;
  }

  .egift-program-page .section-inner {
    width: calc(100vw - (var(--mobile-rail-gutter) * 2));
    max-width: calc(100vw - (var(--mobile-rail-gutter) * 2));
    padding: 0;
  }

  .egift-program-title {
    gap: 10px;
    margin-bottom: 28px;
  }

  .egift-program-title h1 {
    font-size: 2.6rem;
    line-height: 1.04;
  }

  .egift-program-title div {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .egift-program-list {
    gap: 22px;
  }

  .egift-program-row {
    gap: 18px;
    padding: 14px;
    border-radius: 20px;
  }

  .egift-program-image,
  .egift-program-image img {
    min-height: 220px;
    border-radius: 16px;
  }

  .egift-program-copy {
    gap: 13px;
    padding: 2px;
  }

  .egift-program-copy h2 {
    font-size: 2.05rem;
  }

  .egift-program-description,
  .egift-program-terms li {
    font-size: 0.98rem;
  }

  .egift-program-terms {
    padding: 16px;
    border-radius: 16px;
  }

  .egift-options-page .section {
    padding: 44px 0;
  }

  .egift-options-page .section-inner {
    width: calc(100vw - (var(--mobile-rail-gutter) * 2));
    max-width: calc(100vw - (var(--mobile-rail-gutter) * 2));
    margin-right: auto;
    margin-left: auto;
    padding: 0;
  }

  .egift-options-hero {
    padding-top: 92px;
  }

  .egift-options-title {
    margin-bottom: 30px;
  }

  .egift-options-title h1 {
    max-width: 100%;
    font-size: 2rem;
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .egift-options-title h2 {
    max-width: 100%;
    font-size: 1.05rem;
    line-height: 1.28;
    overflow-wrap: anywhere;
  }

  .egift-option-list,
  .egift-step-list {
    gap: 22px;
  }

  .egift-option-card,
  .egift-step-card {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 20px;
  }

  .egift-option-content,
  .egift-step-content {
    min-width: 0;
  }

  .egift-option-meta {
    align-items: flex-start;
  }

  .egift-option-meta h3 {
    flex: 1 1 100%;
  }

  .egift-option-content p,
  .egift-note-card p,
  .egift-step-card p,
  .egift-info-card li,
  .egift-done-card p {
    max-width: calc(100vw - 90px);
    font-size: 0.98rem;
  }

  .egift-option-meta {
    max-width: calc(100vw - 90px);
  }

  .egift-step-number {
    width: 40px;
    height: 40px;
  }

  .egift-note-card,
  .egift-done-card,
  .egift-info-card {
    padding: 24px 20px;
  }

  .egift-note-card h2 {
    font-size: 1.5rem;
    line-height: 1.18;
    letter-spacing: 0.02em;
    overflow-wrap: anywhere;
  }

  .gallery-page-section .section-inner,
  .gallery-masonry-section .section-inner,
  .gallery-review-section .section-inner {
    width: min(100% - (var(--mobile-rail-gutter) * 2), var(--max));
  }

  .price-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .service-menu-stack {
    gap: 42px;
  }

  .service-menu-group {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-menu-media {
    justify-items: start;
  }

  .service-menu-media img {
    width: min(520px, 100%);
    aspect-ratio: 4 / 3;
  }

  .service-menu-content h2 {
    font-size: 2.05rem;
  }

  .service-panel summary {
    min-height: 48px;
    padding-inline: 16px;
    font-size: 1.08rem;
  }

  .service-panel-body {
    padding: 18px 16px 20px;
  }

  .service-menu-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px 12px;
    font-size: 1rem;
  }

  .service-menu-row i {
    display: none;
  }

  .social-rail {
    top: 50%;
    left: 0;
    right: auto;
    grid-template-columns: 1fr;
    transform: translateY(-50%);
  }

  .action-rail {
    top: 50%;
    left: auto;
    right: 0;
    grid-template-columns: 1fr;
    transform: translateY(-50%);
  }

  .social-rail a,
  .action-rail a,
  .action-rail button {
    width: 38px;
    height: 38px;
    padding: 0 9px;
  }

  .map-wrap {
    width: min(100% - (var(--mobile-rail-gutter) * 2), var(--max));
    margin-bottom: 72px;
  }
}

@media (max-width: 1024px) {
  body[data-page="services"] .page-hero {
    min-height: 0;
    height: min(56vw, 250px);
    padding: 80px 18px 24px;
  }

  body[data-page="services"] .page-hero h1 {
    font-size: 40px;
  }

  body[data-page="services"] .service-menu-page .section-inner,
  body[data-page="services"] .section-inner.price-grid {
    width: min(100% - (var(--mobile-rail-gutter, 20px) * 2), var(--max));
    max-width: var(--max);
    padding: 72px 0;
  }

  body[data-page="services"] .service-menu-group,
  body[data-page="services"] .price-card {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 26px;
    padding: 0;
  }

  body[data-page="services"] .service-menu-media,
  body[data-page="services"] .service-menu-media a,
  body[data-page="services"] .price-card img {
    justify-items: center;
    justify-self: center;
  }

  body[data-page="services"] .service-menu-media img,
  body[data-page="services"] .price-card img {
    width: min(100%, 420px);
    aspect-ratio: 698 / 896;
  }

  body[data-page="services"] .service-menu-content h2,
  body[data-page="services"] .price-content h3 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  body[data-page="services"] .page-hero {
    min-height: 0;
    height: min(56vw, 250px);
    padding: 80px 18px 24px;
  }

  body[data-page="services"] .page-hero h1 {
    font-size: 32px;
  }

  body[data-page="services"] .service-menu-group,
  body[data-page="services"] .price-card {
    min-height: auto;
    padding: 0;
  }

  body[data-page="services"] .service-menu-content,
  body[data-page="services"] .price-content {
    padding: 0;
  }

  body[data-page="services"] .service-menu-content h2,
  body[data-page="services"] .price-content h3 {
    font-size: 32px;
  }

  body[data-page="services"] .service-panel summary,
  body[data-page="services"] .addon-panel summary {
    padding: 10px 20px;
    font-size: 20px;
  }

  body[data-page="services"] .service-menu-row,
  body[data-page="services"] .price-list li {
    font-size: 16px;
  }

  body[data-page="services"] .service-menu-row strong,
  body[data-page="services"] .price-list strong {
    font-size: 18px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
