:root {
  --color-cream: #fcf8f0;
  --color-paper: #fffdf8;
  --color-sand: #eadcc8;
  --color-forest: #283226;
  --color-terracotta: #9c6a34;
  --color-gold: #c99a2e;
  --color-gold-soft: #f5e6bd;
  --color-gold-deep: #8b6517;
  --color-purple: #b88725;
  --color-purple-soft: #f6ecd7;
  --color-purple-deep: #302818;
  --color-ink: #2f2b22;
  --color-muted: #756d5d;
  --color-line: #eadcc7;
  --shadow-soft: 0 18px 45px rgba(52, 41, 26, 0.13);
  --shadow-card: 0 12px 28px rgba(52, 41, 26, 0.09);
  --shadow-hover: 0 24px 54px rgba(201, 154, 46, 0.2);
  --shadow-premium: 0 20px 48px rgba(40, 50, 38, 0.22);
  --radius-sm: 8px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1160px;
  --space-section: clamp(4rem, 8vw, 7rem);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(201, 154, 46, .1), transparent 28rem),
    radial-gradient(circle at 94% 16%, rgba(201, 154, 46, .12), transparent 24rem),
    var(--color-cream);
  line-height: 1.65;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main,
.site-footer {
  max-width: 100%;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body,
  main,
  .site-footer {
    overflow-x: clip;
  }
}

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

a {
  color: inherit;
}

a,
button,
.btn {
  touch-action: manipulation;
}

@media (hover: hover) and (pointer: fine) {
  body.has-custom-cursor,
  body.has-custom-cursor a,
  body.has-custom-cursor button,
  body.has-custom-cursor [role="button"],
  body.has-custom-cursor input,
  body.has-custom-cursor textarea,
  body.has-custom-cursor select {
    cursor: none;
  }
}

::selection {
  color: #fff;
  background: var(--color-purple);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(199, 154, 66, 0.8);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  background: var(--color-forest);
  color: #fff;
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
}

.skip-link:focus { top: 1rem; }

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: var(--space-section) 0;
}

.section-soft {
  background:
    linear-gradient(135deg, rgba(239, 231, 245, .72), rgba(245, 230, 189, .38)),
    #fbf4e9;
}

.eyebrow {
  margin: 0 0 .75rem;
  color: var(--color-purple);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  line-height: 1.12;
  color: var(--color-forest);
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  font-size: 2.55rem;
  margin: 0 0 1.2rem;
}

h2 {
  font-size: 2rem;
  margin: 0 0 1rem;
}

h3 {
  font-size: 1.35rem;
  margin: 0 0 .55rem;
}

p {
  margin: 0 0 1rem;
}

.lead {
  font-size: 1.08rem;
  color: #5f5366;
  max-width: 68ch;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(252, 248, 240, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(230, 218, 199, .8);
  transition: background .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, .96);
  border-bottom-color: rgba(201, 154, 46, .24);
  box-shadow: 0 12px 28px rgba(52, 41, 26, .08);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  font-weight: 800;
  color: var(--color-forest);
  transition: transform .22s ease, color .22s ease;
}

.brand:hover {
  color: var(--color-purple-deep);
  transform: translateY(-1px);
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  transition: transform .28s ease, filter .28s ease;
}

.brand:hover img {
  transform: rotate(-3deg) scale(1.04);
  filter: drop-shadow(0 8px 12px rgba(201, 154, 46, .2));
}

.brand span {
  display: grid;
  line-height: 1.15;
  max-width: min(58vw, 280px);
}

.brand small {
  color: var(--color-muted);
  font-weight: 600;
  font-size: .74rem;
}

.nav-toggle {
  position: relative;
  min-width: 48px;
  min-height: 48px;
  border: 1px solid var(--color-line);
  background: var(--color-paper);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--color-forest);
  position: absolute;
  transition: transform .22s ease, opacity .22s ease;
}

.nav-toggle::before { transform: translateY(-7px); }
.nav-toggle::after { transform: translateY(7px); }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: rotate(-45deg); }

.site-nav {
  position: fixed;
  inset: 76px 1rem auto 1rem;
  padding: 1rem;
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-md);
  display: none;
}

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

.site-nav a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: .6rem .75rem;
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  position: relative;
  transition: color .22s ease, background .22s ease, transform .22s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--color-purple-soft);
  color: var(--color-purple-deep);
  transform: translateY(-1px);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: .75rem;
  right: .75rem;
  bottom: .35rem;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav a.btn::after {
  display: none;
}

.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .9rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
  border: 1px solid transparent;
  background-clip: padding-box;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(40, 50, 38, .08);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease, filter .22s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: #fff;
  background: #8f6a25;
  border-color: transparent;
  box-shadow: 0 16px 34px rgba(91, 67, 26, .3);
}

.btn-primary:hover {
  background: #9a742b;
  filter: none;
  box-shadow: 0 22px 44px rgba(91, 67, 26, .36);
}

.btn-secondary {
  color: var(--color-forest);
  background: rgba(255, 253, 248, .94);
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(40, 50, 38, .12);
}

.btn-secondary:hover {
  color: var(--color-purple-deep);
  border-color: transparent;
  box-shadow: 0 18px 36px rgba(201, 154, 46, .18);
}

.hero {
  position: relative;
  min-height: calc(100dvh - 76px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 68%, rgba(201, 154, 46, .24), transparent 22rem),
    linear-gradient(90deg, rgba(25, 32, 24, .9), rgba(54, 43, 26, .64) 48%, rgba(70, 55, 28, .18) 78%),
    linear-gradient(180deg, rgba(20, 24, 18, .12), rgba(20, 24, 18, .22));
  z-index: -1;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(1.035);
  transition: transform .18s linear;
  z-index: -2;
}

.hero-content {
  position: relative;
  padding: clamp(4.4rem, 10vw, 8rem) 0 clamp(3.8rem, 7vw, 5.4rem);
  color: #fff;
  max-width: 820px;
}

.hero h1,
.hero .lead {
  color: #fff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .22);
}

.hero .eyebrow {
  color: #f2d48f;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.75rem;
}

.hero-actions {
  width: fit-content;
  max-width: 100%;
  gap: .65rem;
  padding: .48rem;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  background: rgba(28, 34, 25, .28);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-premium);
}

.hero-actions .btn {
  min-width: 170px;
  min-height: 54px;
}

.hero-actions .btn-primary {
  background: #987126;
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
}

.hero-actions .btn-primary:hover {
  background: #a17a2d;
}

.hero-actions .btn-secondary {
  background: rgba(255, 253, 248, .96);
  border-color: transparent;
}

.hero-strip {
  margin-top: 2.1rem;
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-strip div {
  min-height: 82px;
  padding: 1rem;
  background: rgba(255, 253, 248, .18);
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 14px;
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
  font-weight: 700;
  transition: transform .24s ease, background .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.hero-strip div:hover {
  transform: translateY(-5px);
  background: rgba(255, 253, 248, .24);
  border-color: rgba(255, 255, 255, .42);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .16);
}

.page-hero {
  padding: clamp(4rem, 9vw, 7rem) 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(201, 154, 46, .16), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(201, 154, 46, .16), transparent 28%),
    linear-gradient(135deg, #fbf2e3, #fffdf8);
}

.page-hero .container {
  display: grid;
  gap: 2rem;
}

.page-hero img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .42s ease, box-shadow .42s ease, filter .42s ease;
}

.page-hero img.portrait-image {
  width: 100%;
  max-width: 440px;
  justify-self: center;
  aspect-ratio: 3 / 4;
  max-height: none;
  padding: 0;
  object-fit: cover;
  object-position: center top;
  background:
    radial-gradient(circle at 50% 22%, rgba(201, 154, 46, .12), transparent 36%),
    rgba(255, 253, 248, .86);
}

.portrait-frame {
  position: relative;
  justify-self: center;
  width: min(100%, 520px);
  min-height: clamp(420px, 54vw, 620px);
  display: grid;
  align-items: end;
  justify-items: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .12), rgba(255, 253, 248, .66)),
    url("../img/pranee-hintergrund.webp") center / cover no-repeat;
  transition: transform .35s ease, box-shadow .35s ease;
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: auto 8% 0;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(251, 247, 239, .72));
  pointer-events: none;
}

.portrait-frame:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-hover);
}

.page-hero .portrait-frame img.portrait-image {
  position: relative;
  z-index: 1;
  width: min(82%, 390px);
  max-width: none;
  height: auto;
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  object-fit: contain;
  object-position: center bottom;
}

.page-hero .portrait-frame img.portrait-image:hover {
  transform: none;
  box-shadow: none;
}

.page-hero img:hover {
  transform: translateY(-7px) scale(1.018);
  box-shadow: var(--shadow-hover);
  filter: saturate(1.05) contrast(1.03);
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-2,
.grid-3,
.grid-4 {
  grid-template-columns: 1fr;
}

.card,
.massage-card,
.price-card,
.contact-card {
  position: relative;
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.card:hover,
.massage-card:hover,
.price-card:hover,
.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 154, 46, .34);
  box-shadow: var(--shadow-hover);
}

.card::after,
.contact-card::after {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(201, 154, 46, .2), transparent 70%);
  opacity: 0;
  transform: scale(.72);
  transition: opacity .24s ease, transform .24s ease;
  pointer-events: none;
}

.card:hover::after,
.contact-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.card {
  padding: 1.35rem;
}

.icon-badge,
.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: #efe3cf;
  color: var(--color-forest);
  font-weight: 800;
  font-size: .86rem;
  transition: transform .2s ease, background .2s ease;
}

.tag {
  background: var(--color-purple-soft);
  color: var(--color-purple-deep);
}

.icon-badge:hover,
.tag:hover {
  transform: translateY(-2px) rotate(-1deg);
  background: var(--color-gold-soft);
}

.massage-card {
  overflow: hidden;
  display: grid;
  isolation: isolate;
}

.massage-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0), rgba(245, 230, 189, .34)),
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, .48), transparent 28%);
  opacity: 0;
  transform: scale(.98);
  transition: opacity .28s ease, transform .28s ease;
  pointer-events: none;
}

.massage-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.massage-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
}

.massage-card:hover img {
  transform: scale(1.07);
  filter: saturate(1.1) contrast(1.03);
}

.massage-card-body {
  position: relative;
  z-index: 2;
  padding: 1.25rem;
  display: grid;
  gap: .75rem;
}

.massage-card h3 {
  transition: color .22s ease, transform .22s ease;
}

.massage-card:hover h3 {
  color: var(--color-gold-deep);
  transform: translateX(3px);
}

.massage-card .btn {
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.massage-card:hover .btn {
  transform: translateY(-1px);
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefits li {
  padding: .35rem .6rem;
  background: linear-gradient(135deg, var(--color-gold-soft), var(--color-purple-soft));
  border-radius: 999px;
  color: var(--color-purple-deep);
  font-size: .9rem;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.massage-card:hover .benefits li,
.benefits li:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #fff6df, var(--color-gold-soft));
  box-shadow: 0 8px 16px rgba(201, 154, 46, .14);
}

.signature-section {
  position: relative;
  overflow: hidden;
}

.signature-section::before {
  content: "";
  position: absolute;
  inset: 10% auto auto -8rem;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: rgba(201, 154, 46, .14);
  filter: blur(18px);
  pointer-events: none;
}

.feature-card {
  position: relative;
  min-height: 250px;
  padding: 1.35rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(201, 154, 46, .28);
  background:
    linear-gradient(160deg, rgba(255, 253, 248, .92), rgba(239, 231, 245, .72)),
    var(--color-paper);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -18% -28% auto;
  width: 10rem;
  height: 10rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(201, 154, 46, .26), transparent 68%);
  transition: transform .35s ease;
}

.feature-card:hover {
  transform: translateY(-7px);
  border-color: rgba(201, 154, 46, .5);
  box-shadow: var(--shadow-hover);
}

.feature-card:hover::after {
  transform: translate(-1rem, -1rem) scale(1.15);
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--color-gold-deep), var(--color-gold));
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.journey-section {
  background:
    linear-gradient(135deg, rgba(40, 50, 38, .96), rgba(112, 82, 28, .9)),
    #2f3529;
  color: #fff;
}

.journey-section h2,
.journey-section h3,
.journey-section .lead {
  color: #fff;
}

.journey-section .eyebrow {
  color: var(--color-gold-soft);
}

.journey-list {
  display: grid;
  gap: 1rem;
}

.journey-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.1rem;
  border: 1px solid rgba(245, 230, 189, .28);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, .09);
  backdrop-filter: blur(12px);
  transition: transform .26s ease, background .26s ease, border-color .26s ease;
}

.journey-list article:hover {
  transform: translateX(8px);
  background: rgba(255, 253, 248, .14);
  border-color: rgba(245, 230, 189, .55);
}

.journey-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--color-gold);
  color: var(--color-purple-deep);
  font-weight: 900;
}

.reviews-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.reviews-head h2 {
  margin-bottom: 0;
}

.review-card {
  position: relative;
  min-height: 250px;
  padding: 1.35rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(201, 154, 46, .24);
  background: rgba(255, 253, 248, .9);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--color-gold-deep), var(--color-gold));
}

.review-card:hover {
  transform: translateY(-7px) rotate(.25deg);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201, 154, 46, .5);
}

.review-card blockquote {
  font-size: 1.08rem;
}

.review-card a {
  color: var(--color-purple-deep);
  font-weight: 900;
}

.review-source {
  color: var(--color-gold-deep);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .78rem;
}

.review-card-main {
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 154, 46, .2), transparent 34%),
    rgba(255, 253, 248, .94);
}

.image-grid {
  position: relative;
  display: grid;
  gap: 1rem;
}

.image-grid::before {
  content: "";
  position: absolute;
  inset: 8% 6% auto auto;
  width: 56%;
  height: 72%;
  border: 1px solid rgba(201, 154, 46, .32);
  border-radius: var(--radius-lg);
  transform: translate(1rem, 1rem);
  pointer-events: none;
}

.image-grid img {
  position: relative;
  border-radius: var(--radius-md);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow-card);
  transition: transform .38s ease, box-shadow .38s ease, filter .38s ease;
}

.image-grid img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 26px 58px rgba(52, 41, 26, .18);
  filter: saturate(1.08) contrast(1.03);
}

.testimonial {
  max-width: 860px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  line-height: 1.45;
  color: var(--color-forest);
}

.quote-meta {
  margin-top: 1.2rem;
  color: var(--color-muted);
  font-weight: 800;
}

.price-card {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  background:
    linear-gradient(var(--color-paper), var(--color-paper)) padding-box,
    linear-gradient(135deg, rgba(201, 154, 46, .5), rgba(139, 101, 23, .28)) border-box;
  border: 1px solid transparent;
}

.price-section {
  background:
    linear-gradient(180deg, rgba(239, 231, 245, .38), transparent 22rem),
    var(--color-cream);
}

.price-intro {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: rgba(255, 253, 248, .78);
  border: 1px solid rgba(201, 154, 46, .22);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 30px rgba(76, 44, 104, .08);
  transition: transform .28s ease, box-shadow .28s ease;
}

.price-intro h2,
.price-intro p {
  margin-bottom: 0;
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-deep));
}

.price-card h2 {
  min-height: 3.2rem;
  margin-bottom: .35rem;
  font-size: 1.35rem;
}

.price-card:nth-child(14),
.price-card:nth-child(15) {
  background:
    linear-gradient(135deg, rgba(239, 231, 245, .8), var(--color-paper)) padding-box,
    linear-gradient(135deg, var(--color-gold), var(--color-gold-deep)) border-box;
}

.price-list {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .55rem;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .78rem .85rem;
  background: linear-gradient(135deg, #f7efe4, #fffaf3);
  border-radius: var(--radius-sm);
  font-weight: 800;
  border: 1px solid rgba(230, 218, 199, .78);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.price-list li:hover {
  transform: translateX(4px);
  background: linear-gradient(135deg, #fffaf3, var(--color-purple-soft));
  border-color: rgba(201, 154, 46, .32);
}

.price-card:hover h2,
.contact-card:hover h2,
.contact-card:hover h3,
.card:hover h3 {
  color: var(--color-gold-deep);
}

.cta-band {
  position: relative;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, filter .28s ease;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -24%;
  width: 18rem;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .16), transparent);
  transform: rotate(18deg);
  transition: transform .55s ease;
  pointer-events: none;
}

.cta-band:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  filter: saturate(1.04);
}

.cta-band:hover::before {
  transform: translateX(34rem) rotate(18deg);
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.price-list li span:last-child {
  color: var(--color-purple-deep);
  font-size: 1.08rem;
  font-variant-numeric: tabular-nums;
}

.price-note {
  color: var(--color-muted);
  font-size: .95rem;
}

.faq-list {
  display: grid;
  gap: .75rem;
}

.faq-item {
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.faq-item:hover {
  border-color: rgba(201, 154, 46, .34);
  box-shadow: 0 12px 28px rgba(201, 154, 46, .12);
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  min-height: 58px;
  padding: 1rem 1.2rem;
  border: 0;
  background: transparent;
  color: var(--color-forest);
  font: inherit;
  font-weight: 800;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  font-size: 1.35rem;
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--color-purple-soft);
  color: var(--color-purple-deep);
  transition: transform .22s ease, background .22s ease;
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
  transform: rotate(180deg);
  background: var(--color-gold-soft);
}

.faq-answer {
  display: none;
  padding: 0 1.2rem 1.2rem;
  color: var(--color-muted);
}

.faq-answer.is-open {
  display: block;
}

.cta-band {
  padding: clamp(2rem, 5vw, 3rem);
  background:
    radial-gradient(circle at 92% 20%, rgba(201, 154, 46, .28), transparent 28%),
    linear-gradient(135deg, var(--color-forest), #5b4314);
  color: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

.contact-overview {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .55), rgba(245, 230, 189, .22)),
    var(--color-cream);
}

.contact-overview::before {
  content: "";
  position: absolute;
  inset: 14% auto auto 4%;
  width: 12rem;
  height: 12rem;
  border-radius: 999px;
  background: rgba(201, 154, 46, .12);
  filter: blur(20px);
  pointer-events: none;
}

.contact-layout {
  position: relative;
  display: grid;
  gap: 1.2rem;
  align-items: stretch;
}

.contact-intro {
  display: grid;
  align-content: center;
  padding: clamp(1.4rem, 4vw, 2rem);
  border-left: 4px solid var(--color-gold);
  background: rgba(255, 253, 248, .58);
  border-radius: var(--radius-lg);
}

.contact-intro h2 {
  margin-bottom: .85rem;
}

.contact-note {
  margin: 1rem 0 0;
  color: var(--color-muted);
  font-weight: 800;
}

.contact-card-grid {
  display: grid;
  gap: 1rem;
}

.contact-card {
  min-height: 240px;
  padding: 1.35rem;
  display: grid;
  align-content: start;
  gap: .65rem;
  overflow: hidden;
}

.contact-card-primary {
  background:
    linear-gradient(145deg, rgba(255, 253, 248, .96), rgba(245, 230, 189, .62)),
    var(--color-paper);
  border-color: rgba(201, 154, 46, .38);
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-forest), var(--color-gold-deep));
  box-shadow: 0 14px 26px rgba(67, 45, 18, .18);
  transition: transform .24s ease, box-shadow .24s ease;
}

.contact-icon img {
  width: 23px;
  height: 23px;
  filter: brightness(0) invert(1);
}

.contact-card h3 {
  margin-bottom: 0;
  font-size: 1.65rem;
}

.contact-card p {
  margin-bottom: 0;
}

.contact-card a,
.contact-value a {
  font-weight: 900;
  color: var(--color-forest);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: color .2s ease, text-decoration-color .2s ease;
}

.contact-card a:hover,
.contact-value a:hover {
  color: var(--color-gold-deep);
  text-decoration-color: rgba(201, 154, 46, .65);
}

.contact-card:hover .contact-icon {
  transform: translateY(-2px) rotate(-3deg);
}

.contact-section-head {
  max-width: 760px;
  margin-bottom: 1.4rem;
}

.contact-section-head h2 {
  margin-bottom: .8rem;
}

.contact-premium {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.booking-panel {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  display: grid;
  align-content: center;
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .08), transparent 36%),
    radial-gradient(circle at 88% 18%, rgba(201, 154, 46, .3), transparent 28%),
    linear-gradient(135deg, #263023, #5e4417 64%, #8b6517);
  box-shadow: 0 28px 68px rgba(52, 41, 26, .22);
}

.booking-panel::after {
  content: "";
  position: absolute;
  inset: auto -7rem -9rem auto;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 253, 248, .08);
  pointer-events: none;
}

.booking-panel h3 {
  max-width: 11ch;
  margin: .8rem 0 1rem;
  color: #fff;
  font-size: 2.35rem;
}

.booking-panel p {
  max-width: 54ch;
  color: rgba(255, 255, 255, .84);
}

.contact-kicker,
.method-label {
  color: var(--color-gold-soft);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}

.phone-hero {
  width: fit-content;
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  transition: color .22s ease, transform .22s ease;
}

.phone-hero:hover {
  color: var(--color-gold-soft);
  transform: translateX(3px);
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1rem;
}

.visit-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.2rem;
}

.visit-chips span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: .42rem .75rem;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(255, 253, 248, .1);
  color: rgba(255, 255, 255, .88);
  font-weight: 800;
  font-size: .9rem;
}

.contact-methods {
  display: grid;
  gap: 1rem;
}

.contact-method {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem;
  border: 1px solid rgba(201, 154, 46, .22);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, .96), rgba(255, 250, 243, .86)),
    var(--color-paper);
  box-shadow: var(--shadow-card);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.contact-method:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 154, 46, .45);
  box-shadow: 0 24px 52px rgba(52, 41, 26, .13);
}

.contact-method:hover .contact-icon {
  transform: translateY(-2px) rotate(-3deg);
}

.contact-method h3 {
  margin-bottom: .25rem;
  font-size: 1.45rem;
}

.contact-method p {
  margin-bottom: 0;
}

.contact-method a {
  color: var(--color-forest);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.contact-method a:hover {
  color: var(--color-gold-deep);
}

.contact-method .method-label {
  color: var(--color-gold-deep);
  margin-bottom: .2rem;
}

.map-embed {
  position: relative;
  margin: 0;
  min-height: 360px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-line);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, .92), rgba(245, 230, 189, .5)),
    var(--color-paper);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: grid;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.map-embed img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.map-embed:hover img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.02);
}

.map-embed figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  margin: 0;
  padding: .55rem .75rem;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 999px;
  background: rgba(255, 253, 248, .9);
  color: var(--color-forest);
  font-weight: 800;
  font-size: .92rem;
  box-shadow: 0 12px 24px rgba(52, 41, 26, .14);
}

.page-next {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: clamp(1.35rem, 4vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 154, 46, .28);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, .94), rgba(245, 230, 189, .42)),
    var(--color-paper);
  box-shadow: var(--shadow-card);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}

.page-next:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 154, 46, .5);
  box-shadow: 0 26px 58px rgba(52, 41, 26, .16);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, .98), rgba(245, 230, 189, .58)),
    var(--color-paper);
}

.page-next h2,
.page-next p {
  margin-bottom: 0;
}

.page-next-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

.map-embed,
.page-next,
.price-intro {
  transform-style: preserve-3d;
}

.map-embed:hover,
.price-intro:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(52, 41, 26, .14);
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity .2s ease, width .18s ease, height .18s ease, background .18s ease, border-color .18s ease;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-gold);
  box-shadow: 0 0 18px rgba(201, 154, 46, .5);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(139, 101, 23, .56);
  border-radius: 999px;
  backdrop-filter: blur(1px);
}

.cursor-dot.is-visible,
.cursor-ring.is-visible {
  opacity: 1;
}

.cursor-dot.is-hovering {
  background: var(--color-forest);
}

.cursor-ring.is-hovering {
  width: 52px;
  height: 52px;
  border-color: rgba(201, 154, 46, .8);
  background: rgba(245, 230, 189, .16);
}

.hover-lift {
  transition: transform .24s ease, filter .24s ease;
}

.hover-lift:hover {
  transform: translateY(-3px);
  filter: saturate(1.04);
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 42%, rgba(201, 154, 46, .14), transparent 19rem),
    radial-gradient(circle at 0% 92%, rgba(245, 230, 189, .55), transparent 22rem),
    linear-gradient(135deg, var(--color-paper) 0%, var(--color-cream) 58%, #f8eedf 100%);
  color: var(--color-ink);
  padding: clamp(4rem, 7vw, 5.25rem) 0 2rem;
  border-top: 1px solid rgba(201, 154, 46, .22);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 253, 248, .48), transparent 34%, rgba(201, 154, 46, .08));
  pointer-events: none;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.site-footer h2,
.site-footer h3 {
  margin: 0;
  color: var(--color-forest);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  line-height: 1.2;
  font-size: 1.28rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: inherit;
}

.footer-grid {
  display: grid;
  gap: 2.1rem;
}

.footer-brand,
.footer-column {
  min-width: 0;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  width: fit-content;
  color: var(--color-forest);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.15;
}

.footer-logo img {
  width: 23px;
  height: 23px;
  filter: brightness(0) saturate(100%) invert(65%) sepia(45%) saturate(626%) hue-rotate(5deg) brightness(93%) contrast(89%);
}

.footer-logo span {
  font-size: 1rem;
}

.footer-logo strong {
  color: var(--color-forest);
}

.footer-logo em {
  color: var(--color-gold);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-style: normal;
  font-weight: 600;
}

.footer-brand p,
.footer-column p,
.footer-note {
  color: var(--color-muted);
  font-size: .95rem;
  line-height: 1.6;
}

.footer-owner {
  color: var(--color-gold-deep);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: .78rem;
  letter-spacing: 0;
}

.footer-column h3 {
  padding-bottom: .9rem;
  border-bottom: 1px solid rgba(201, 154, 46, .24);
}

.footer-links,
.footer-contact-list {
  display: grid;
  gap: .58rem;
  margin-top: 1rem;
}

.footer-links a,
.footer-contact-item a {
  color: var(--color-forest);
  text-decoration: none;
  font-weight: 800;
  transition: color .2s ease, transform .2s ease;
}

.footer-links a:hover,
.footer-contact-item a:hover {
  color: var(--color-gold-deep);
  transform: translateX(3px);
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: .7rem;
  align-items: start;
}

.footer-contact-item img {
  width: 21px;
  height: 21px;
  margin-top: .12rem;
  filter: brightness(0) saturate(100%) invert(65%) sepia(45%) saturate(626%) hue-rotate(5deg) brightness(93%) contrast(89%);
}

.footer-contact-item em {
  color: var(--color-forest);
  font-style: italic;
}

.footer-note {
  margin-top: 1.4rem;
  padding: .9rem;
  border: 1px solid rgba(201, 154, 46, .28);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 248, .7);
  box-shadow: 0 12px 28px rgba(52, 41, 26, .07);
}

.footer-note strong {
  display: block;
  margin-bottom: .25rem;
  color: var(--color-gold-deep);
  font-size: .82rem;
}

.footer-bottom {
  display: grid;
  gap: .7rem;
  margin-top: clamp(2.2rem, 4vw, 3.4rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 154, 46, .24);
  color: var(--color-muted);
  font-size: .86rem;
}

.footer-bottom a {
  color: var(--color-gold-deep);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.footer-bottom a:hover {
  color: var(--color-forest);
}

.reveal,
.reveal-left,
.reveal-right,
.reveal-zoom,
.reveal-clip {
  opacity: 0;
  transition: opacity .8s cubic-bezier(.2, .8, .2, 1), transform .8s cubic-bezier(.2, .8, .2, 1), clip-path .9s cubic-bezier(.2, .8, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, clip-path;
}

.reveal {
  transform: translateY(34px);
}

.reveal-left {
  transform: translateX(-26px) translateY(18px);
}

.reveal-right {
  transform: translateX(26px) translateY(18px);
}

.reveal-zoom {
  transform: translateY(26px) scale(.94);
}

.reveal-clip {
  transform: translateY(28px);
  clip-path: inset(0 0 18% 0 round 18px);
}

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-zoom.is-visible,
.reveal-clip.is-visible {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0 0 round 18px);
}

.reveal-fade {
  opacity: 0;
  transition: opacity .8s ease;
}

.reveal-fade.is-visible {
  opacity: 1;
}

@media (min-width: 760px) {
  .nav-toggle { display: none; }
  h1 { font-size: 4.25rem; }
  h2 { font-size: 2.75rem; }
  .lead { font-size: 1.2rem; }
  .brand small { font-size: .82rem; }
  blockquote { font-size: 1.55rem; }
  .review-card blockquote { font-size: 1.18rem; }
  .price-card h2 { font-size: 1.55rem; }
  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: .25rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .site-nav a { padding: .35rem .7rem; }
  .hero-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .page-hero .container { grid-template-columns: 1.05fr .95fr; align-items: center; }
  .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .image-grid { grid-template-columns: 1.08fr .92fr; align-items: center; }
  .image-grid img:first-child {
    aspect-ratio: 4 / 3;
    object-position: center;
  }
  .image-grid img:nth-child(2) {
    z-index: 2;
    width: min(112%, 460px);
    justify-self: end;
    aspect-ratio: 3 / 4;
    object-position: center;
    transform: translateX(-.65rem);
  }
  .image-grid img:nth-child(2):hover {
    transform: translateX(-.65rem) translateY(-8px) scale(1.025);
  }
  .footer-grid { grid-template-columns: 1.15fr 1.05fr 1.05fr 1.15fr; }
  .footer-bottom { grid-template-columns: 1fr auto; align-items: center; }
  .reviews-head { grid-template-columns: 1fr auto; align-items: end; }
  .price-intro { grid-template-columns: .85fr 1.15fr; align-items: end; }
  .price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-next { grid-template-columns: 1fr auto; }
  .contact-layout { grid-template-columns: .85fr 1.15fr; gap: 1.25rem; }
  .contact-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact-card { min-height: 270px; }
  .contact-premium { grid-template-columns: .95fr 1.05fr; gap: 1.25rem; }
  .booking-panel h3 { font-size: 3rem; }
  .phone-hero { font-size: 1.75rem; }
}

@media (min-width: 1040px) {
  h1 { font-size: 5.2rem; }
  h2 { font-size: 3.2rem; }
  blockquote { font-size: 1.75rem; }
  .review-card blockquote { font-size: 1.3rem; }
  .price-card h2 { font-size: 1.7rem; }
  .price-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact-layout { grid-template-columns: .72fr 1.28fr; }
  .contact-premium { grid-template-columns: .9fr 1.1fr; }
  .booking-panel h3 { font-size: 3.45rem; }
  .phone-hero { font-size: 2rem; }
}

@media (max-width: 520px) {
  :root {
    --space-section: 3.25rem;
  }

  body {
    touch-action: pan-y pinch-zoom;
  }

  .container {
    width: min(var(--container), calc(100% - 1.25rem));
  }

  h1 {
    font-size: 2.35rem;
  }

  .hero-content {
    padding-bottom: 2.4rem;
  }

  .hero-actions {
    display: grid;
    width: 100%;
    border-radius: 24px;
    padding: .55rem;
    gap: .45rem;
  }

  .hero-actions .btn {
    min-width: 0;
  }

  .btn,
  .hero-actions .btn,
  .cta-row .btn,
  .page-next-actions .btn {
    width: 100%;
  }

  .brand span {
    max-width: 58vw;
  }

  .site-nav {
    inset-inline: .75rem;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
  }

  .contact-intro,
  .contact-card {
    border-radius: var(--radius-md);
  }

  .contact-card {
    min-height: auto;
  }

  .booking-panel {
    min-height: auto;
    padding: 1.35rem;
  }

  .booking-panel h3 {
    max-width: 13ch;
    font-size: 2.25rem;
  }

  .booking-actions .btn {
    width: 100%;
  }

  .contact-method {
    grid-template-columns: 1fr;
    gap: .75rem;
    padding: 1.15rem;
  }

  .map-embed,
  .map-embed img {
    min-height: 260px;
  }

  .map-embed figcaption {
    right: .75rem;
    left: .75rem;
    bottom: .75rem;
    width: auto;
  }

  .footer-grid {
    gap: 1.4rem;
  }

  .site-footer {
    padding-top: 3.25rem;
  }

  .footer-column h3 {
    padding-bottom: .75rem;
  }

  .footer-note {
    margin-top: 1rem;
  }
}

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

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-zoom,
  .reveal-clip,
  .reveal-fade {
    opacity: 1;
    transform: none;
    clip-path: none;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}
