@import url('https://fonts.googleapis.com/css2?family=Oooh+Baby&family=Mulish:wght@400;500;600&family=Playfair+Display:wght@400;500&display=swap');
:root {
  /* 456px is the measured width where the existing three-column content fits.
     Scale the complete mobile composition together; keep desktop at 16px. */
  font-size: clamp(10px, 3.50877193vw, 24px);
  --wine: #2c030d;
  --panel: #3a0713;
  --gold: #efd18a;
  --cream: #fcf2df;
  --muted: #d9c5b5;
  --line: #69402e;
  --nav: 4.5rem;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 1.25rem;
}
body {
  margin: 0;
  background: var(--wine);
  color: var(--cream);
  font:
    1rem/1.55 'Mulish',
    sans-serif;
  padding-bottom: calc(var(--nav) + env(safe-area-inset-bottom));
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
img {
  display: block;
  width: 100%;
  object-fit: cover;
}
h1,
h2,
h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.13;
  margin: 0;
  letter-spacing: -0.03125rem;
}
h1 {
  font-size: 2.625rem;
}
h2 {
  font-size: 1.6875rem;
}
h3 {
  font-size: 1.25rem;
}
p {
  margin: 0.75rem 0;
}
a:focus-visible,
button:focus-visible {
  outline: 0.1875rem solid var(--gold);
  outline-offset: 0.25rem;
}
.skip {
  position: fixed;
  top: -6.25rem;
  background: var(--cream);
  color: var(--wine);
  z-index: 99;
  padding: 0.75rem;
}
.skip:focus {
  top: 0;
}
svg {
  width: 1.5625rem;
  height: 1.5625rem;
  flex-shrink: 0;
}
.header {
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.25rem;
  border-bottom: 1px solid #62332155;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.5625rem;
  color: var(--gold);
  font:
    1.375rem/1 'Playfair Display',
    serif;
  text-transform: uppercase;
}
.brand > img {
  width: 2.6875rem;
  height: 2.6875rem;
  border-radius: 50%;
}
.brand small {
  display: block;
  font:
    0.5rem/1.8 'Mulish',
    sans-serif;
  letter-spacing: 0.04375rem;
}
.header-call {
  color: var(--gold);
  padding: 0.5rem;
}
.desktop-nav {
  display: none;
}
.bottom-nav {
  position: fixed;
  z-index: 20;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  height: calc(var(--nav) + env(safe-area-inset-bottom));
  padding: 0 0.5rem env(safe-area-inset-bottom);
  background: #2c030df7;
  border-top: 1px solid var(--line);
}
.bottom-nav a {
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  color: var(--gold);
  font-size: 0.75rem;
  margin: 0.3125rem 0;
  border-radius: 0.5625rem;
}
.bottom-nav .active {
  background: #5b1f224f;
}
.bottom-nav .active svg {
  stroke-width: 2.2;
}
.bottom-nav .active span {
  font-weight: 600;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9375rem;
  min-height: 2.75rem;
  padding: 0.625rem 1.25rem;
  border: 1px solid var(--gold);
  border-radius: 1.75rem;
  background: var(--gold);
  color: var(--wine);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
}
.button:hover {
  background: #ffe4a3;
}
.button-wine {
  background: var(--wine);
  color: var(--gold);
  border-color: var(--wine);
}
.button-wine:hover {
  background: #520c20;
}
.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  line-height: 1.4;
  color: var(--gold);
  margin: 0 0 0.625rem;
}
.centered {
  text-align: center;
}
.hero {
  position: relative;
  isolation: isolate;
  min-height: 16.25rem;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  height: 100%;
  object-position: center;
}
.hero:after {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(
    90deg,
    #23020beb 0%,
    #29080b88 47%,
    transparent 80%
  );
}
.hero-content {
  padding: 1.5rem 1.25rem;
  max-width: 69%;
}
.hero-content > p:not(.eyebrow) {
  font-size: 0.875rem;
  line-height: 1.45;
  max-width: 17.5rem;
  color: #f4e4d2;
}
.hero .button {
  padding: 0.625rem 1rem;
}
.home-hero {
  /* A minimum, not a fixed height: content can grow on short screens. */
  min-height: clamp(16rem, calc((100svh - 9rem - env(safe-area-inset-bottom)) * 0.5), 20rem);
  border-radius: 0 0 1rem 1rem;
}
.home-hero .eyebrow {
  margin-bottom: 0.5625rem;
}
.home-hero h1 {
  font-size: 2.5rem;
}
.inner-hero {
  min-height: clamp(15.625rem, 34svh, 22.5rem);
}
.about-hero {
  min-height: clamp(16.875rem, 38svh, 26.25rem);
}
.about-hero img {
  object-position: center 48%;
}
.about-hero:after {
  background: linear-gradient(90deg, #26030ee6, #26030e55 65%, transparent);
}
.section {
  padding: 1.625rem 1.25rem;
}
.cream {
  background: var(--cream);
  color: var(--wine);
}
.cream .eyebrow {
  color: #765c36;
}
.section-title {
  text-align: center;
  margin-bottom: 1.25rem;
}
.section-title .eyebrow {
  margin: 0.5625rem 0 0;
  font-size: 0.6875rem;
}
.welcome h2 {
  margin-bottom: 0.5625rem;
}
.welcome > p:last-child {
  margin-bottom: 0;
}
.welcome .eyebrow {
  font-size: 0.6875rem;
}
.treatment-cards {
  --card-gap: 0.5625rem;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2 * var(--card-gap)) / 3);
  gap: var(--card-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.treatment-cards::-webkit-scrollbar { display: none; }
.treatment-card:nth-child(3n + 1) { scroll-snap-align: start; }
.review-slides { display: grid; }
.review-slides figure { grid-area: 1 / 1; }
.review-slides figure[data-active="false"] { visibility: hidden; pointer-events: none; }
.treatment-card {
  background: var(--panel);
  border: 1px solid #66332466;
  border-radius: 0.4375rem;
  overflow: hidden;
}
.treatment-card > img {
  aspect-ratio: 1.2;
}
.treatment-card > div {
  padding: 0.625rem 0.5rem;
}
.treatment-card h3 {
  font-size: .875rem;
  line-height: 1.2;
  min-height: 2.25rem;
  letter-spacing: -0.0125rem;
}
.treatment-card p {
  font-size: 0.75rem;
  line-height: 1.45;
  min-height: 3.3rem;
  margin: 0.5625rem 0;
  color: var(--muted);
}
.treatment-card small {
  font-size: 0.75rem;
  display: block;
  margin: 0.625rem 0;
}
.treatment-card .button {
  font-size: 0.75rem;
  min-height: 2.25rem;
  padding: 0.5rem 0.375rem;
  gap: 0.3125rem;
  width: 100%;
}
.all-link {
  display: block;
  text-align: right;
  font-size: 0.8125rem;
  color: var(--gold);
  margin-top: 0.9375rem;
  text-decoration: underline;
}
.story {
  display: grid;
  grid-template-columns: 43% 57%;
  border-top: 1px solid var(--line);
}
.story > img {
  height: 100%;
  min-height: 13.125rem;
}
.story > div {
  padding: 1.375rem 1rem;
}
.story h2 {
  font-size: 1.5rem;
}
.story p:not(.eyebrow) {
  font-size: 0.875rem;
  line-height: 1.5;
}
.story .eyebrow {
  font-size: 0.625rem;
}
.story .button {
  font-size: 0.8125rem;
  padding: 0.5625rem 1rem;
  min-height: 2.375rem;
}
.gift {
  display: grid;
  grid-template-columns: 57% 43%;
  position: relative;
  overflow: hidden;
}
.gift > div {
  padding: 1.5625rem 1.25rem;
}
.gift > img {
  height: 100%;
  min-height: 15rem;
  object-position: 76% center;
}
.gift h2 {
  font-size: 1.6875rem;
}
.gift p:not(.eyebrow) {
  font-size: 0.875rem;
}
.gift .button {
  font-size: 0.75rem;
  padding: 0.625rem 0.8125rem;
  gap: 0.5rem;
}
.reviews {
  text-align: center;
  border-block: 1px solid var(--line);
  padding-block: 1.625rem;
}
.reviews h2 {
  font-size: 1.5625rem;
}
.review-carousel {
  display: grid;
  grid-template-columns: 1.75rem 1fr 1.75rem;
  align-items: center;
  gap: 0.3125rem;
  margin-top: 0.75rem;
}
.review-carousel button {
  border: 0;
  background: none;
  color: var(--gold);
  font:
    2.25rem/1 Georgia,
    serif;
  min-height: 2.75rem;
  width: 1.75rem;
  padding: 0;
}
.review-slides figure {
  margin: 0;
}
.review-slides blockquote {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
}
.review-slides figcaption {
  font-size: 0.75rem;
  color: var(--gold);
  margin-top: 0.625rem;
}
.gallery .section-title {
  margin-bottom: 1rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.4375rem;
}
.gallery-grid button {
  border: 0;
  padding: 0;
  background: none;
  border-radius: 0.3125rem;
  overflow: hidden;
}
.gallery-grid img {
  aspect-ratio: 1;
  height: auto;
}
.gallery-grid.large {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.gallery-grid.large button {
  grid-column: span 2;
}
.gallery-grid.large button:nth-child(-n+2) {
  grid-column: span 3;
}
.gallery-grid.large img {
  height: 10.625rem;
}
.gallery-grid.large button:nth-child(-n+2) img {
  height: 10.625rem;
}
.gallery-open {
  display: flex;
  margin: 1rem auto 0;
  font-size: 0.75rem;
  min-height: 2.25rem;
  padding: 0.5rem 1.125rem;
}
.visit-items {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0.75rem;
}
.visit-items a {
  display: flex;
  gap: 0.4375rem;
  align-items: start;
  font-size: 0.75rem;
}
.visit-items svg {
  width: 1.1875rem;
  color: var(--gold);
}
footer {
  padding: 1.125rem 1.25rem;
  border-top: 1px solid #62332155;
  font-size: 0.75rem;
  text-align: center;
  color: var(--muted);
}
footer a {
  text-decoration: underline;
}
footer p {
  font-size: 0.75rem;
  max-width: 34.375rem;
  margin: 0.5rem auto 0;
}
.treatments {
  padding: 1.125rem 0.75rem;
}
.service-row {
  display: grid;
  grid-template-columns: 30% 1fr 25%;
  gap: 0.625rem;
  background: var(--panel);
  padding: 0.625rem;
  border: 1px solid #62332155;
  border-radius: 0.375rem;
  margin: 0 0 0.5625rem;
}
.service-row > img {
  height: 100%;
  min-height: 7.5rem;
  max-height: 11.875rem;
  border-radius: 0.25rem;
}
.service-row h2 {
  font-size: 1.0625rem;
  line-height: 1.15;
  letter-spacing: -0.01875rem;
}
.service-row p {
  font-size: 0.75rem;
  line-height: 1.45;
  margin: 0.5rem 0;
}
.service-copy > a {
  font-size: 0.75rem;
  color: var(--gold);
}
.prices {
  border-left: 1px solid var(--line);
  padding-left: 0.5625rem;
  align-self: center;
}
.prices > div {
  display: flex;
  justify-content: space-between;
  gap: 0.25rem;
  font-size: 0.75rem;
  line-height: 2;
  color: var(--gold);
  white-space: nowrap;
}
.final-book {
  text-align: center;
  padding-top: 1.25rem;
}
.final-book .button {
  min-width: 75%;
}
.journey h2 {
  margin-bottom: 0.9375rem;
}
.focus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8125rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.callout {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.callout h2 {
  font-size: 1.375rem;
}
.callout p {
  font-size: 0.8125rem;
  margin: 0.5rem 0;
}
.callout .button {
  flex-shrink: 0;
}
.contact h2 {
  font-size: 1.5625rem;
}
.contact > .eyebrow {
  margin: 0.5625rem 0 1.25rem;
}
.contact-details {
  display: grid;
  gap: 1rem;
}
.contact-details > a,
.contact-details > div {
  display: flex;
  gap: 0.8125rem;
  align-items: center;
  font-size: 0.9375rem;
}
.contact-details svg {
  background: var(--wine);
  color: var(--gold);
  border-radius: 50%;
  width: 2.4375rem;
  height: 2.4375rem;
  padding: 0.5625rem;
}
.contact-details small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  font-size: 0.625rem;
  margin-bottom: 0.1875rem;
}
.contact-actions {
  display: flex;
  gap: 0.5rem;
  margin: 1.25rem 0 1rem;
}
.contact-actions .button {
  padding: 0.625rem 0.6875rem;
  font-size: 0.75rem;
  flex: 1;
  gap: 0.3125rem;
}
.contact-actions .button > span {
  display: none;
}
.contact iframe {
  width: 100%;
  height: 12.5rem;
  border: 0;
  border-radius: 0.3125rem;
}
.directions {
  display: flex;
  gap: 0.9375rem;
  align-items: center;
  margin-top: 0.875rem;
}
.directions small {
  display: block;
  font-size: 0.75rem;
}
.directions > span:last-child {
  margin-left: auto;
}
.photo-dialog {
  border: 1px solid var(--gold);
  background: var(--wine);
  color: var(--cream);
  padding: 1rem;
  max-width: min(95vw, 56.25rem);
  max-height: 90svh;
}
.photo-dialog::backdrop {
  background: #000c;
}
.photo-dialog > img {
  max-height: 65svh;
  object-fit: contain;
}
.photo-dialog button {
  background: none;
  border: 1px solid var(--line);
  color: var(--gold);
  min-width: 2.75rem;
  min-height: 2.75rem;
  font-size: 1.5625rem;
}
.close-dialog {
  display: block;
  margin: 0 0 0.75rem auto;
}
.photo-dialog > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.875rem;
}
@media (min-width: 1024px) {
  html {
    font-size: 16px;
  }
  body {
    padding-bottom: 0;
  }
  .header {
    height: 5.75rem;
    padding-inline: max(5vw, 1.5rem);
  }
  .brand {
    font-size: 1.75rem;
  }
  .brand > img {
    width: 3.25rem;
    height: 3.25rem;
  }
  .brand small {
    font-size: 0.625rem;
  }
  .desktop-nav {
    display: flex;
    gap: 1.75rem;
    align-items: center;
    color: var(--gold);
  }
  .desktop-nav svg {
    display: none;
  }
  .desktop-nav .active {
    text-decoration: underline;
    text-underline-offset: 0.5rem;
  }
  .desktop-nav .nav-book {
    background: var(--gold);
    color: var(--wine);
    padding: 0.5625rem 1.125rem;
    border-radius: 1.5625rem;
  }
  .header-call,
  .bottom-nav {
    display: none;
  }
  main {
    max-width: 75rem;
    margin: auto;
  }
  .hero {
    min-height: 27.5rem;
    height: auto;
    max-height: none;
  }
  .home-hero {
    min-height: 31.875rem;
  }
  .hero-content {
    padding: 3.125rem 3.4375rem;
    max-width: 58%;
  }
  .hero h1,
  .home-hero h1 {
    font-size: 3.5rem;
  }
  .hero-content > p:not(.eyebrow) {
    font-size: 1.0625rem;
    max-width: 21.875rem;
  }
  .hero > img {
    object-position: center;
  }
  .hero .button {
    font-size: 1rem;
    padding: 0.8125rem 1.5625rem;
  }
  .section {
    padding: 2.5rem 2.8125rem;
  }
  .section-title h2,
  h2 {
    font-size: 2.1875rem;
  }
  .welcome {
    padding-right: 30%;
  }
  .treatment-cards {
    --card-gap: 1.375rem;
  }
  .treatment-card > img {
    aspect-ratio: 1.7;
  }
  .treatment-card > div {
    padding: 1.25rem;
  }
  .treatment-card h3 {
    font-size: 1.5625rem;
    min-height: 3.5rem;
  }
  .treatment-card p {
    font-size: 0.9375rem;
    min-height: 3rem;
  }
  .treatment-card .button {
    width: auto;
    font-size: 0.875rem;
    padding: 0.625rem 1.375rem;
  }
  .story > div {
    padding: 2.5rem;
  }
  .story h2 {
    font-size: 2.25rem;
  }
  .story p:not(.eyebrow) {
    font-size: 1rem;
  }
  .story > img {
    max-height: 20.625rem;
  }
  .gift > div {
    padding: 2.8125rem;
  }
  .gift > img {
    max-height: 21.25rem;
  }
  .gift h2 {
    font-size: 2.375rem;
  }
  .gift p:not(.eyebrow) {
    font-size: 1rem;
  }
  .gift .button {
    font-size: 0.875rem;
  }
  .reviews {
    padding-inline: 15%;
  }
  .reviews h2 {
    font-size: 2rem;
  }
  .review-slides blockquote {
    font-size: 1.125rem;
  }
  .gallery-grid img {
    height: 13.75rem;
  }
  .gallery-grid.large {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-grid.large button:first-child {
    grid-column: auto;
  }
  .gallery-grid.large img,
  .gallery-grid.large button:first-child img {
    height: 15.625rem;
  }
  .visit-items a {
    font-size: 0.9375rem;
    align-items: center;
  }
  .treatments {
    padding: 1.75rem 2.1875rem;
  }
  .service-row {
    grid-template-columns: 25% 1fr 23%;
    padding: 1rem;
    gap: 1.5625rem;
    margin-bottom: 0.9375rem;
  }
  .service-row h2 {
    font-size: 1.8125rem;
  }
  .service-row p {
    font-size: 1rem;
  }
  .service-copy > a {
    font-size: 0.875rem;
  }
  .prices > div {
    font-size: 0.9375rem;
  }
  .service-row > img {
    height: 10.9375rem;
  }
  .journey {
    padding-right: 24%;
  }
  .contact {
    padding: 2.5rem 4.375rem;
  }
  .contact h2 {
    font-size: 2.25rem;
  }
  .contact-details {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 1.5625rem;
  }
  .contact-actions {
    max-width: 34.375rem;
  }
  .contact iframe {
    height: 21.25rem;
  }
  .focus-grid {
    font-size: 1.0625rem;
  }
  .callout {
    justify-content: space-between;
  }
  .callout h2 {
    font-size: 1.75rem;
  }
}

/* Reference details share the same scale as the page geometry. */
[hidden] { display: none !important; }
.arrow-right, .action-icon { width: 1rem; height: 1rem; }
.button { white-space: nowrap; }
.button-outline { background: transparent; color: var(--wine); border-color: #ac8747; }
.home-hero { background: var(--wine); }
.page-home main { background: var(--cream); }
.page-home main > section:not(.cream) { background-color: var(--wine); }
.home-hero .eyebrow { margin: .5rem 0 .375rem; }
.home-hero .hero-content > p:not(.eyebrow) { margin: .4rem 0 .65rem; font-size: .8125rem; }
.home-hero .button { min-height: 2rem; padding: .4rem .9rem; font-size: .75rem; }
.ornament { position: relative; }
.ornament::after { content: ''; position: absolute; pointer-events: none; right: .6rem; top: .6rem; width: 5.5rem; height: 9rem; opacity: .48; background: url('/assets/images/lotus-line.svg') center / contain no-repeat; }
.handwritten { font: 1.85rem/.8 'Oooh Baby', cursive; color: #ad8e4b; position: absolute; right: 1.5rem; bottom: 1.5rem; text-align: center; transform: rotate(-8deg); }
.handwritten::after { content: ''; display: block; width: 3rem; margin: .65rem auto 0; border-bottom: 1px solid currentColor; transform: rotate(3deg); }
.welcome { padding-right: 28%; }
.welcome > p:last-child { max-width: 16rem; font-size: .9375rem; line-height: 1.45; }
.welcome h2 { white-space: nowrap; font-size: 1.5rem; }
.welcome .eyebrow { white-space: nowrap; font-size: .625rem; }
.welcome .handwritten { right: 1.2rem; bottom: 1.4rem; z-index: 1; }
.treatment-card .button { min-height: 1.65rem; padding: .3rem .375rem; font-size: .75rem; }
.treatment-card .arrow-right { width: .8rem; height: .8rem; }
.treatment-pagination { display: flex; justify-content: center; margin: .4rem 0 0; }
.treatment-pagination button { background: transparent; border: 0; width: 1.75rem; height: 1.75rem; display: grid; place-items: center; padding: 0; }
.treatment-pagination span { width: .375rem; height: .375rem; background: var(--gold); opacity: .25; border-radius: 50%; }
.treatment-pagination [aria-pressed='true'] span { opacity: 1; }
.popular .all-link { margin-top: -1.4rem; position: relative; width: max-content; margin-left: auto; font-size: .65rem; }
.all-link .arrow-right { vertical-align: middle; margin-left: .5rem; }
.page-home .story h2 { font-size: 1.3rem; }
.page-home .gift { grid-template-columns: 62% 38%; }
.page-home .gift > div { padding: 1.3rem 1.25rem; }
.page-home .gift h2 { font-size: 1.4rem; white-space: nowrap; }
.page-home .gift > img { min-height: 10rem; }
.page-home .gift .eyebrow { font-size: .625rem; }
.page-home .reviews h2.eyebrow { font-family: 'Mulish', sans-serif; font-size: .6875rem; }
.reviews { position: relative; }
.page-home .review-slides, .page-treatments .review-slides { max-width: 18rem; margin-inline: auto; }
.reviews::before { content: ''; position: absolute; left: .2rem; top: 0; width: 5rem; height: 100%; background: url('/assets/images/lotus-line.svg') center / contain no-repeat; opacity: .2; pointer-events: none; }
.gallery-grid button { position: relative; }
.gallery-grid button > span { position: absolute; bottom: 0; left: 0; right: 0; text-align: left; padding: .5rem; font-size: .625rem; color: white; background: linear-gradient(transparent, #20030caa); }
.gallery .section-title .eyebrow { font-size: .625rem; }
.journey { padding-right: 28%; }
.journey p { max-width: 16.5rem; font-size: .875rem; }
.journey h2 { white-space: nowrap; }
.journey .handwritten { right: 1.1rem; bottom: 2rem; }
.reviews-split { display: grid; grid-template-columns: 32% 68%; padding: 0; }
.review-image { height: 100%; min-height: 12rem; }
.reviews-split > div { padding: 1rem .5rem; }
.reviews-split h2 { font-size: 1.4rem; }
.reviews-split blockquote { font-size: .75rem; }
.page-contact .hero .handwritten { right: 1.25rem; bottom: 1.5rem; color: var(--gold); }
.page-contact .hero-content { max-width: 74%; }
.contact-actions .action-icon { display: block; }
.callout::after { left: 0; right: auto; width: 3rem; }
@media (min-width: 1024px) {
 .welcome h2 { font-size: 2rem; }
 .welcome > p:last-child, .journey p { font-size: 1rem; }
 .page-home .gift h2 { font-size: 2rem; }
 .page-home .story h2 { font-size: 2rem; }
 .home-hero .hero-content > p:not(.eyebrow) { font-size: 1rem; }
 .home-hero .button { font-size: 1rem; }
 .handwritten { font-size: 3rem; right: 3rem; }
 .ornament::after { width: 8rem; height: 12rem; }
 .popular .all-link { font-size: .875rem; }
 .treatment-card .button { min-height: 2.5rem; font-size: .875rem; }
 .gallery-grid.large { grid-template-columns: repeat(6,minmax(0,1fr)); }
 .gallery-grid.large button:first-child { grid-column: span 3; }
 .gallery-grid.large button:nth-child(-n+2) img { height: 15.625rem; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

@media (hover: hover) and (pointer: fine) {
  .treatment-cards { cursor: grab; user-select: none; }
  .treatment-cards a, .treatment-cards button { cursor: pointer; }
}
.treatment-cards.is-dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }

/* Preserve the complete gift composition rather than cropping a narrow image column. */
.gift > div { position: relative; z-index: 1; background: linear-gradient(90deg, #fff4df 72%, transparent); }
.gift > img { position: absolute; inset: 0; width: 100%; height: 100%; min-height: 0; max-height: none; object-fit: cover; object-position: center; }
.page-home .gift > img { min-height: 0; }
@media (min-width: 1024px) {
  .gift > img { object-fit: contain; object-position: right center; background: #fff4df; }
}

/* Quiet entrance, immediate feedback. Content never waits for motion. */
:root { --motion-ease: cubic-bezier(.22, 1, .36, 1); }
.button, .bottom-nav a, .desktop-nav a, .contact-actions a,
.review-carousel button, .photo-dialog button, .gallery-grid button {
  transition: transform 160ms var(--motion-ease), background-color 180ms ease, box-shadow 180ms ease;
}
.button:active, .contact-actions a:active, .bottom-nav a:active,
.review-carousel button:active, .photo-dialog button:active { transform: scale(.97); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.cream a:focus-visible, .cream button:focus-visible { outline-color: var(--wine); }
.button .arrow-right { transition: transform 180ms var(--motion-ease); }
.treatment-pagination span { transition: opacity 180ms ease, transform 180ms var(--motion-ease); }
.treatment-pagination [aria-pressed='true'] span { transform: scale(1.2); }
@media (hover: hover) and (pointer: fine) {
  .button:hover, .contact-actions a:hover { transform: translateY(-2px); box-shadow: 0 5px 16px #20030c20; }
  .button:hover .arrow-right { transform: translateX(3px); }
  .desktop-nav a:hover, .bottom-nav a:hover { background-color: #efd18a15; }
  .gallery-grid button:hover { transform: translateY(-2px); }
}
@media (prefers-reduced-motion: no-preference) {
  .hero > img { animation: atmosphere-arrive 1200ms var(--motion-ease) both; }
  .hero-content { animation: copy-arrive 650ms var(--motion-ease) both; }
  .hero .handwritten { animation: signature-arrive 1100ms ease-out both; }
  .photo-dialog[open] { animation: photo-open 220ms var(--motion-ease) both; }
  .photo-dialog[open]::backdrop { animation: backdrop-open 180ms ease-out both; }
}
@keyframes atmosphere-arrive { from { filter: brightness(.8); } to { filter: brightness(1); } }
@keyframes copy-arrive { from { opacity: .45; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes signature-arrive { from { opacity: .15; } to { opacity: 1; } }
@keyframes photo-open { from { opacity: 0; transform: translateY(6px) scale(.99); } to { opacity: 1; transform: none; } }
@keyframes backdrop-open { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

.desktop-footer { display: none; }
@media (min-width: 1024px) {
  .header { height: 88px; padding-inline: max(32px, calc((100vw - 1200px) / 2)); gap: 32px; }
  .header .brand { flex-shrink: 0; font-size: 27px; white-space: nowrap; }
  .header .brand > img { width: 48px; height: 48px; }
  .header .brand small { font-size: 9px; letter-spacing: .6px; }
  .desktop-nav { gap: clamp(20px, 2.3vw, 36px); font-size: 15px; white-space: nowrap; }
  .desktop-nav .nav-book { padding: 10px 24px; }
  .desktop-footer { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto; padding: 40px 32px; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); }
  .footer-brand { font: 30px/1.2 'Playfair Display', serif; color: var(--gold); }
  .desktop-footer p { margin-top: 8px; }
  .desktop-footer address { font-style: normal; }
  .desktop-footer address a { display: block; margin-bottom: 10px; }
  .footer-links { display: flex; flex-wrap: wrap; align-content: start; gap: 12px 20px; }
  .footer-links a:last-child { flex-basis: 100%; color: var(--gold); }
  .desktop-footer a:hover { text-decoration: underline; text-underline-offset: 4px; }
}
