@property --shine {
  syntax: "<percentage>";
  inherits: false;
  initial-value: -120%;
}

:root {
  --ivory: #f8f4ec;
  --paper: #fffdf8;
  --warm: #e9dfd2;
  --sage: #607060;
  --sage-dark: #24352d;
  --sage-soft: #dbe0d5;
  --plum: #6d294f;
  --plum-dark: #2d1726;
  --gold: #c9a15d;
  --gold-light: #efd698;
  --ink: #252420;
  --muted: #6d6a62;
  --white: #fff;
  --border: rgba(36, 53, 45, .14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --container: min(1180px, calc(100% - 40px));
  --shadow: 0 28px 80px rgba(34, 38, 31, .13);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--white);
  background: var(--plum);
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 9px 16px;
  color: var(--white);
  background: var(--plum-dark);
  border-radius: 999px;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.reading-progress {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--plum));
  transform: scaleX(0);
  transform-origin: left;
}

.topbar {
  min-height: 86px;
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .17);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: inherit;
  text-decoration: none;
}

.brand__mark {
  width: 45px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid rgba(239, 214, 152, .55);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1;
}

.brand__text {
  display: grid;
  gap: 1px;
}

.brand__text strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.1;
}

.brand__text small {
  color: rgba(255,255,255,.58);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.topbar__cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 19px;
  color: var(--plum-dark);
  background: var(--gold-light);
  border-radius: 999px;
  text-decoration: none;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease;
}

.topbar__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,.2);
}

.hero {
  min-height: 920px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 145px max(20px, calc((100vw - 1180px) / 2)) 100px;
  color: var(--white);
  background: var(--sage-dark);
}

.hero__media,
.hero__overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.hero__slide {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 64% center;
  opacity: 0;
  transform: scale(1.02);
  animation: heroSlide 32s ease-in-out infinite;
}

.hero__slide:nth-child(1) { animation-delay: 0s; object-position: 64% center; }
.hero__slide:nth-child(2) { animation-delay: 8s; object-position: 54% 44%; }
.hero__slide:nth-child(3) { animation-delay: 16s; object-position: 54% 38%; }
.hero__slide:nth-child(4) { animation-delay: 24s; object-position: 54% 32%; }

.hero__overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(27,38,32,.98) 0%, rgba(27,38,32,.92) 36%, rgba(27,38,32,.5) 68%, rgba(45,23,38,.32) 100%),
    linear-gradient(180deg, rgba(27,38,32,.35) 0%, transparent 38%, rgba(27,38,32,.9) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 560px;
  aspect-ratio: 1;
  left: -280px;
  bottom: -290px;
  border: 1px solid rgba(239,214,152,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255,255,255,.02), 0 0 0 180px rgba(255,255,255,.012);
}

@keyframes heroSlide {
  0% { opacity: 1; transform: scale(1.02); }
  18% { opacity: 1; transform: scale(1.075); }
  25% { opacity: 0; transform: scale(1.09); }
  100% { opacity: 0; transform: scale(1.09); }
}

.hero__content {
  width: min(740px, 100%);
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--plum);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  transform-origin: left;
  transition: transform .7s cubic-bezier(.2,.75,.25,1);
}

.hero .eyebrow,
.section--sage .eyebrow,
.conversion-band .eyebrow,
.final-cta .eyebrow {
  color: var(--gold-light);
}

.hero h1,
.section h2,
.conversion-band h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .98;
  text-wrap: balance;
}

.hero h1 {
  font-size: clamp(3.9rem, 7.1vw, 7.5rem);
}

.hero h1 em,
.section h2 em {
  color: var(--gold-light);
  font-weight: 500;
}

.hero__lead {
  max-width: 650px;
  margin: 34px 0 0;
  color: rgba(255,255,255,.74);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.hero__actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
}

.button {
  --shine: -120%;
  min-height: 60px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 9px 0 27px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .07em;
  line-height: 1.2;
  text-transform: uppercase;
  box-shadow: 0 18px 44px rgba(15,20,16,.2);
  transition: transform .3s ease, box-shadow .3s ease;
}

.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(112deg, transparent calc(var(--shine) - 20%), rgba(255,255,255,.55) var(--shine), transparent calc(var(--shine) + 20%));
  animation: buttonShine 5s ease-in-out infinite;
  pointer-events: none;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 23px 52px rgba(15,20,16,.28);
}

.button:active {
  transform: translateY(0) scale(.98);
}

.button--gold {
  color: var(--plum-dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.button--dark {
  color: var(--white);
  background: linear-gradient(135deg, var(--sage-dark), #15271f);
}

.button__arrow {
  width: 43px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  background: var(--plum-dark);
  border-radius: 50%;
  font-size: 1.1rem;
  transition: transform .3s ease;
}

.button:hover .button__arrow {
  transform: rotate(45deg);
}

@keyframes buttonShine {
  0%, 60% { --shine: -120%; }
  84%, 100% { --shine: 220%; }
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--gold-light);
  transition: transform .3s ease;
}

.text-link:hover span {
  transform: translateY(4px);
}

.text-link--dark {
  color: var(--sage-dark);
}

.hero__credentials {
  margin: 64px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.18);
}

.hero__credentials li {
  padding: 22px 20px 0 0;
  display: grid;
  gap: 3px;
}

.hero__credentials li + li {
  padding-left: 20px;
  border-left: 1px solid rgba(255,255,255,.18);
}

.hero__credentials strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.hero__credentials span {
  color: rgba(255,255,255,.5);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-enter {
  opacity: 0;
  transform: translateY(28px);
  animation: heroEnter .8s cubic-bezier(.2,.75,.25,1) forwards;
}

.hero-enter:nth-child(1) { animation-delay: .12s; }
.hero-enter:nth-child(2) { animation-delay: .22s; }
.hero-enter:nth-child(3) { animation-delay: .32s; }
.hero-enter:nth-child(4) { animation-delay: .42s; }
.hero-enter:nth-child(5) { animation-delay: .52s; }

@keyframes heroEnter {
  to {
    opacity: 1;
    transform: none;
  }
}

.trust-strip {
  width: var(--container);
  min-height: 142px;
  margin: -50px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.trust-strip__item {
  padding: 32px 28px;
  display: grid;
  align-content: center;
  gap: 4px;
}

.trust-strip__item + .trust-strip__item {
  border-left: 1px solid var(--border);
}

.trust-strip__item strong {
  color: var(--sage-dark);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 600;
  line-height: 1.1;
}

.trust-strip__item span {
  color: var(--muted);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: clamp(100px, 11vw, 160px) max(20px, calc((100vw - 1180px) / 2));
}

.section-heading {
  max-width: 720px;
}

.section-heading--wide {
  max-width: 900px;
}

.section-heading h2 {
  font-size: clamp(3rem, 5.3vw, 5.7rem);
}

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

.introduction {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .68fr);
  gap: clamp(70px, 11vw, 160px);
  align-items: center;
}

.introduction__copy {
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.introduction__copy p {
  margin: 0 0 20px;
}

.introduction__copy blockquote {
  margin: 40px 0 0;
  padding: 26px 0 26px 28px;
  color: var(--plum);
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 2.3rem);
  font-style: italic;
  line-height: 1.25;
}

.section--sage {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 10%, rgba(201,161,93,.18), transparent 25%),
    linear-gradient(135deg, var(--sage-dark), #334a3e 55%, #1c2d25);
}

.section--sage::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image: radial-gradient(circle at 1px 1px, var(--white) 1px, transparent 1.2px);
  background-size: 30px 30px;
  pointer-events: none;
}

.section--sage .section-heading > p:last-child {
  color: rgba(255,255,255,.62);
}

.specialties__grid {
  margin-top: clamp(65px, 8vw, 100px);
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.specialty-card {
  min-height: 520px;
  padding: 42px clamp(26px, 3vw, 42px);
  transition: background .4s ease, transform .4s cubic-bezier(.2,.75,.25,1);
}

.specialty-card + .specialty-card {
  border-left: 1px solid rgba(255,255,255,.18);
}

.specialty-card:hover {
  z-index: 1;
  background: rgba(255,255,255,.055);
  transform: translateY(-8px);
}

.specialty-card__number {
  display: block;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.specialty-card h3 {
  min-height: 116px;
  margin: 54px 0 24px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 500;
  line-height: 1.02;
}

.specialty-card p {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
}

.specialty-card ul {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
  color: rgba(255,255,255,.76);
  font-size: .78rem;
  list-style: none;
}

.specialty-card li {
  position: relative;
  padding-left: 20px;
}

.specialty-card li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--gold);
  font-size: .45rem;
}

.consultation {
  min-height: 980px;
  display: grid;
  grid-template-columns: minmax(330px, .72fr) minmax(0, 1fr);
  gap: clamp(70px, 11vw, 150px);
  align-items: center;
  background:
    radial-gradient(circle at 4% 12%, rgba(201,161,93,.12), transparent 24%),
    var(--paper);
}

.consultation__visual {
  position: relative;
}

.consultation__visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -20px 34px 34px -20px;
  border: 1px solid rgba(201,161,93,.55);
  border-radius: 48% 48% 4px 4px;
}

.consultation__visual img {
  width: 100%;
  position: relative;
  z-index: 1;
  aspect-ratio: .72;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 48% 48% 4px 4px;
  filter: saturate(.84) contrast(1.02);
}

.consultation__visual > span {
  position: absolute;
  z-index: 2;
  right: -25px;
  bottom: 38px;
  padding: 13px 20px;
  color: var(--white);
  background: var(--plum);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  box-shadow: 12px 12px 30px rgba(45,23,38,.2);
}

.consultation__facts {
  margin: 38px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-block: 1px solid var(--border);
}

.consultation__facts li {
  min-height: 92px;
  padding: 18px 16px;
  display: grid;
  align-content: center;
  gap: 3px;
}

.consultation__facts li + li {
  border-left: 1px solid var(--border);
}

.consultation__facts strong {
  color: var(--plum);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
}

.consultation__facts span {
  color: var(--muted);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.consultation__steps {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border);
}

.consultation__steps li {
  min-height: 130px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  align-items: start;
  padding: 25px 14px 25px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left .3s ease, background .3s ease;
}

.consultation__steps li:hover {
  padding-left: 14px;
  background: rgba(96,112,96,.045);
}

.consultation__steps li > span {
  color: var(--plum);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.consultation__steps h3 {
  margin: 0 0 5px;
  color: var(--sage-dark);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
}

.consultation__steps p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
}

.conversion-band {
  min-height: 420px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(78px, 9vw, 120px) max(20px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(50px, 9vw, 130px);
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 0%, rgba(239,214,152,.15), transparent 30%),
    linear-gradient(125deg, var(--plum-dark), var(--plum) 62%, #4b253b);
}

.conversion-band::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -200px;
  bottom: -300px;
  width: 540px;
  aspect-ratio: 1;
  border: 1px solid rgba(239,214,152,.22);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.02), 0 0 0 140px rgba(255,255,255,.014);
}

.conversion-band__copy {
  max-width: 760px;
}

.conversion-band h2 {
  font-size: clamp(2.9rem, 5vw, 5.1rem);
}

.conversion-band__copy > p:last-child {
  max-width: 580px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.68);
}

.conversion-band > .button {
  min-width: 285px;
}

.space {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(201,161,93,.16), transparent 20%),
    var(--warm);
}

.space__grid {
  margin-top: clamp(52px, 7vw, 88px);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: minmax(230px, 31vw) minmax(190px, 22vw);
  gap: clamp(12px, 1.7vw, 22px);
}

.space__item {
  min-height: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--sage-soft);
}

.space__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(.88) contrast(1.01);
  transition: transform .8s cubic-bezier(.2,.75,.25,1), filter .5s ease;
}

.space__item::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(18,31,25,.72));
  pointer-events: none;
}

.space__item figcaption {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 18px;
  left: 20px;
  color: var(--white);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.space__item:hover img {
  transform: scale(1.045);
  filter: saturate(1) contrast(1.03);
}

.space__item--main {
  grid-column: span 8;
}

.space__item--room {
  grid-column: span 4;
  grid-row: span 2;
}

.space__item--reception {
  grid-column: span 3;
}

.space__item--professional {
  grid-column: span 5;
}

.space__item--professional img { object-position: center 45%; }

.about-paula {
  min-height: 800px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .68fr);
  gap: clamp(80px, 12vw, 170px);
  align-items: center;
}

.about-paula__copy > div:nth-child(2) {
  max-width: 680px;
  margin-top: 40px;
  color: var(--muted);
}

.about-paula__copy p {
  margin: 0 0 19px;
}

.about-paula__credentials {
  margin: 46px 0 0;
  display: grid;
  border-top: 1px solid var(--border);
}

.about-paula__credentials > div {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--border);
}

.about-paula__credentials dt {
  color: var(--plum);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.about-paula__credentials dd {
  margin: 0;
  color: var(--sage-dark);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
}

.about-paula__quote {
  position: relative;
  min-height: 610px;
  padding: clamp(48px, 6vw, 76px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(201,161,93,.17), transparent 30%),
    var(--sage-dark);
  box-shadow: 22px 22px 0 var(--sage-soft);
}

.about-paula__quote::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(19,34,27,.08) 12%, rgba(19,34,27,.92) 92%);
  pointer-events: none;
}

.about-paula__quote > img {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  inset: 0;
  object-fit: cover;
  object-position: center 32%;
  filter: saturate(.76) contrast(1.02);
}

.about-paula__quote-content {
  position: relative;
  z-index: 2;
}

.about-paula__quote-content > span {
  display: block;
  height: 75px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 9rem;
  line-height: .8;
}

.about-paula__quote blockquote {
  margin: 26px 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  font-weight: 500;
  line-height: 1.05;
}

.about-paula__quote p {
  margin: 0;
  color: var(--gold-light);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.reviews {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 15%, rgba(201,161,93,.13), transparent 25%),
    linear-gradient(125deg, #1b2c25, var(--sage-dark) 55%, #253b31);
  color: var(--white);
}

.reviews::before {
  content: "";
  width: min(700px, 75vw);
  aspect-ratio: 1;
  position: absolute;
  top: -45%;
  right: -20%;
  border: 1px solid rgba(239,214,152,.16);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(239,214,152,.025), 0 0 0 120px rgba(239,214,152,.02);
  pointer-events: none;
}

.reviews .eyebrow,
.reviews .section-heading h2,
.reviews h2 { color: var(--white); }

.reviews .eyebrow::before { background: var(--gold-light); }

.reviews__intro {
  max-width: 670px;
  position: relative;
  z-index: 1;
}

.reviews__intro h2 {
  margin-bottom: 22px;
}

.reviews__intro h2 em { color: var(--gold-light); }

.reviews__intro > p:last-child {
  max-width: 560px;
  margin: 0;
  color: rgba(255,255,255,.68);
}

.reviews__carousel {
  position: relative;
  z-index: 1;
  margin-top: clamp(42px, 6vw, 70px);
}

.reviews__controls {
  margin: 0 0 18px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 7px;
}

.reviews__arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: rgba(239,214,152,.82);
  background: transparent;
  border: 1px solid rgba(239,214,152,.25);
  border-radius: 50%;
  cursor: pointer;
  font-size: .88rem;
  transition: background .25s ease, color .25s ease, transform .25s ease, opacity .25s ease;
}

.reviews__arrow:hover:not(:disabled) {
  color: var(--sage-dark);
  background: var(--gold-light);
  transform: translateY(-2px);
}

.reviews__arrow:disabled { opacity: .34; cursor: not-allowed; }

.reviews__track {
  width: calc(100% + max(20px, calc((100vw - 1180px) / 2)));
  margin-right: calc(-1 * max(20px, calc((100vw - 1180px) / 2)));
  padding: 2px max(20px, calc((100vw - 1180px) / 2)) 16px 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 374px);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: 1px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.reviews__track::-webkit-scrollbar { display: none; }

.review-card {
  min-height: 286px;
  padding: 27px 26px 24px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 5px;
  box-shadow: 0 18px 35px rgba(9,18,14,.16);
  scroll-snap-align: start;
  transition: transform .35s cubic-bezier(.2,.75,.25,1), box-shadow .35s ease;
}

.review-card:hover {
  box-shadow: 0 26px 48px rgba(9,18,14,.24);
  transform: translateY(-5px);
}

.review-card__header {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 11px;
  align-items: center;
}

.review-card__avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--plum), #9b476e);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 800;
}

.review-card__header div { display: grid; line-height: 1.25; }

.review-card__header strong { color: var(--ink); font-size: .76rem; }

.review-card__header div span {
  margin-top: 3px;
  color: var(--muted);
  font-size: .58rem;
  font-weight: 700;
}

.review-card__more {
  color: #777;
  letter-spacing: 1px;
  transform: translateY(-5px);
}

.review-card__stars {
  margin: 23px 0 13px;
  color: #d6a73f;
  font-size: .93rem;
  letter-spacing: 1px;
  line-height: 1;
}

.review-card blockquote {
  margin: 0;
  color: #45423e;
  font-size: .84rem;
  font-style: normal;
  line-height: 1.68;
}

.reviews__google-link {
  width: fit-content;
  min-height: 48px;
  margin-top: 30px;
  padding: 0 4px 0 13px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .025em;
  text-decoration: none;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.reviews__google-link:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.reviews__google-mark {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: #4285f4;
  background: var(--white);
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: .84rem;
  font-weight: 800;
}

.reviews__google-link .button__arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--plum-dark);
  background: var(--gold-light);
  border-radius: 50%;
  font-size: .9rem;
}

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

.location {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(320px, .68fr) minmax(0, 1fr);
  gap: clamp(65px, 9vw, 120px);
  align-items: center;
}

.location__address {
  margin-top: 40px;
  display: grid;
  color: var(--muted);
  font-style: normal;
}

.location__address strong {
  margin-bottom: 8px;
  color: var(--sage-dark);
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 600;
}

.location__address a {
  width: fit-content;
  margin-top: 14px;
  color: var(--plum);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.location__address a + a {
  margin-top: 5px;
}

.location__features {
  max-width: 430px;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  list-style: none;
}

.location__features li {
  position: relative;
  padding-left: 17px;
  color: var(--sage-dark);
  font-size: .76rem;
  font-weight: 700;
}

.location__features li::before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  top: .62em;
  left: 0;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,161,93,.13);
}

.location__hours {
  max-width: 430px;
  margin: 30px 0 0;
  border-top: 1px solid var(--border);
}

.location__hours > div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}

.location__hours dt {
  color: var(--sage-dark);
  font-weight: 700;
}

.location__hours dd {
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.location__actions {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.location__map {
  min-height: 520px;
  position: relative;
  padding: 16px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.location__map::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(36,53,45,.12);
  pointer-events: none;
}

.location__map iframe {
  width: 100%;
  height: 488px;
  display: block;
  border: 0;
  filter: saturate(.7) sepia(.08) contrast(.96);
}

.footer__hours {
  display: block;
  margin-top: 6px;
}

.faq {
  min-height: 850px;
  display: grid;
  grid-template-columns: minmax(270px, .62fr) minmax(0, 1fr);
  gap: clamp(70px, 10vw, 140px);
  background: var(--paper);
}

.faq__heading {
  position: sticky;
  top: 110px;
  align-self: start;
}

.faq__heading > p:last-child {
  max-width: 430px;
}

.faq__list {
  border-top: 1px solid var(--border);
}

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

.faq summary {
  min-height: 94px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--sage-dark);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 600;
  list-style: none;
  transition: color .3s ease, padding-left .3s ease;
}

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

.faq summary span {
  width: 36px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--plum);
  border-radius: 50%;
  font-family: var(--sans);
  transition: transform .3s ease, background .3s ease;
}

.faq summary:hover,
.faq details[open] summary {
  padding-left: 8px;
  color: var(--plum);
}

.faq details[open] summary span {
  background: var(--sage-dark);
  transform: rotate(45deg);
}

.faq details p {
  max-width: 690px;
  margin: 0 0 28px;
  padding-right: 48px;
  color: var(--muted);
  animation: faqIn .35s ease both;
}

@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

.final-cta {
  min-height: 720px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(100px, 12vw, 170px) max(20px, calc((100vw - 1180px) / 2));
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 50% 110%, rgba(201,161,93,.2), transparent 42%),
    linear-gradient(135deg, var(--sage-dark), #182820 58%, var(--plum-dark));
}

.final-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(900px, 90vw);
  aspect-ratio: 1;
  border: 1px solid rgba(239,214,152,.13);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255,255,255,.015), 0 0 0 180px rgba(255,255,255,.01);
}

.final-cta__content {
  max-width: 920px;
  display: grid;
  justify-items: center;
}

.final-cta h2 {
  font-size: clamp(3.25rem, 6.3vw, 6.6rem);
}

.final-cta__content > p:not(.eyebrow) {
  max-width: 620px;
  margin: 30px 0 38px;
  color: rgba(255,255,255,.67);
}

.footer {
  padding: 65px max(20px, calc((100vw - 1180px) / 2)) 45px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 38px;
  align-items: start;
  color: rgba(255,255,255,.64);
  background: #15231d;
}

.footer__brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer__brand > div {
  display: grid;
}

.footer__brand strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.footer__brand span:not(.brand__mark) {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer address {
  font-style: normal;
  font-size: .78rem;
}

.footer address > span {
  display: block;
}

.footer address a {
  color: var(--gold-light);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer__links a {
  text-underline-offset: 4px;
}

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

.footer__social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid rgba(239,214,152,.27);
  border-radius: 50%;
  transition: transform .25s ease, color .25s ease, background .25s ease, border-color .25s ease;
}

.footer__social a:hover {
  color: var(--plum-dark);
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-3px);
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: .7rem;
}

.footer__legal-links a {
  text-decoration: underline;
  text-decoration-color: rgba(239,214,152,.42);
  text-underline-offset: 4px;
}

.footer__legal-links a:hover { color: var(--gold-light); }

.footer__legal {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .65rem;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.75,.25,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal .eyebrow::before {
  transform: scaleX(0);
}

.reveal.is-visible .eyebrow::before {
  transform: scaleX(1);
}

@media (max-width: 980px) {
  .hero {
    min-height: 860px;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(27,38,32,.98), rgba(27,38,32,.78) 70%, rgba(45,23,38,.42)),
      linear-gradient(180deg, rgba(27,38,32,.24), transparent 34%, rgba(27,38,32,.9));
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip__item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .trust-strip__item:nth-child(4) {
    border-top: 1px solid var(--border);
  }

  .introduction,
  .consultation,
  .about-paula,
  .location,
  .faq {
    grid-template-columns: 1fr;
  }

  .introduction {
    min-height: auto;
  }

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

  .specialty-card {
    min-height: 0;
  }

  .specialty-card + .specialty-card {
    border-top: 1px solid rgba(255,255,255,.18);
    border-left: 0;
  }

  .specialty-card h3 {
    min-height: 0;
  }

  .consultation__visual {
    width: min(280px, 58vw);
    margin-inline: auto;
  }

  .consultation__visual::before {
    inset: -10px 14px 16px -10px;
    border-radius: 24px;
  }

  .consultation__visual img {
    aspect-ratio: 1;
    border-radius: 24px;
    object-position: center 38%;
  }

  .conversion-band {
    grid-template-columns: 1fr;
  }

  .conversion-band > .button {
    width: fit-content;
  }

  .about-paula__quote {
    max-width: 680px;
  }

  .reviews__track {
    width: calc(100% + 20px);
    margin-right: -20px;
    padding-right: 20px;
  }

  .space__grid {
    grid-template-rows: minmax(210px, 39vw) minmax(180px, 28vw);
  }

  .faq__heading {
    position: static;
  }
}

@media (max-width: 720px) {
  :root {
    --container: calc(100% - 28px);
  }

  html {
    scroll-padding-top: 75px;
  }

  body {
    padding-bottom: 80px;
    line-height: 1.65;
  }

  .topbar {
    min-height: 72px;
  }

  .brand__mark {
    width: 38px;
    font-size: 1rem;
  }

  .brand__text strong {
    font-size: 1.05rem;
  }

  .brand__text small {
    display: none;
  }

  .topbar__cta {
    min-height: 38px;
    padding-inline: 14px;
    font-size: .62rem;
  }

  .hero {
    min-height: 820px;
    padding: 115px 20px 74px;
    align-items: end;
  }

  .hero__slide:nth-child(1) { object-position: 68% center; }
  .hero__slide:nth-child(2) { object-position: 56% 44%; }
  .hero__slide:nth-child(3) { object-position: 55% 38%; }
  .hero__slide:nth-child(4) { object-position: 54% 30%; }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(26,38,31,.4) 0%, rgba(26,38,31,.7) 40%, rgba(26,38,31,.98) 78%, var(--sage-dark) 100%),
      linear-gradient(90deg, rgba(26,38,31,.7), rgba(45,23,38,.18));
  }

  .hero h1 {
    font-size: clamp(3.35rem, 15vw, 4.9rem);
  }

  .hero__lead {
    margin-top: 25px;
    font-size: .95rem;
  }

  .hero__actions {
    margin-top: 30px;
    display: grid;
  }

  .hero .button {
    width: 100%;
    justify-content: space-between;
  }

  .hero .text-link {
    justify-self: center;
  }

  .hero__credentials {
    margin-top: 44px;
    grid-template-columns: 1fr;
  }

  .hero__credentials li {
    padding: 14px 0;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .hero__credentials li + li {
    padding-left: 0;
    border-top: 1px solid rgba(255,255,255,.15);
    border-left: 0;
  }

  .hero__credentials span {
    text-align: right;
  }

  .trust-strip {
    width: calc(100% - 28px);
    margin-top: -18px;
    grid-template-columns: 1fr;
  }

  .trust-strip__item {
    min-height: 94px;
    padding: 22px 24px;
  }

  .trust-strip__item + .trust-strip__item,
  .trust-strip__item:nth-child(3),
  .trust-strip__item:nth-child(4) {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .section {
    padding: 88px 20px;
  }

  .section-heading h2 {
    font-size: clamp(2.85rem, 13vw, 4.2rem);
  }

  .introduction {
    gap: 50px;
  }

  .specialties {
    padding-top: 94px;
    padding-bottom: 94px;
  }

  .specialties__grid {
    margin-top: 56px;
  }

  .space__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 12px;
  }

  .space__item--main,
  .space__item--professional {
    grid-column: span 2;
    aspect-ratio: 1.24;
  }

  .space__item--room,
  .space__item--reception {
    grid-column: span 1;
    grid-row: auto;
    aspect-ratio: .72;
  }

  .space__item figcaption {
    right: 13px;
    bottom: 12px;
    left: 13px;
    font-size: .55rem;
  }

  .specialty-card {
    padding: 34px 8px 40px;
  }

  .specialty-card h3 {
    margin-top: 36px;
  }

  .consultation {
    gap: 72px;
  }

  .consultation__visual {
    width: 100%;
    max-width: 680px;
    min-height: 520px;
  }

  .consultation__visual::before {
    display: none;
  }

  .consultation__visual img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
    border-radius: 0;
    object-position: center 32%;
  }

  .consultation__visual > span {
    right: auto;
    bottom: 28px;
    left: 28px;
    font-size: .54rem;
  }

  .consultation__steps {
    margin-top: 45px;
  }

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

  .consultation__facts li {
    min-height: 72px;
    grid-template-columns: 105px 1fr;
    align-items: center;
    gap: 12px;
  }

  .consultation__facts li + li {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .consultation__steps li {
    grid-template-columns: 46px 1fr;
    gap: 12px;
    padding-right: 0;
  }

  .conversion-band {
    min-height: auto;
    padding: 82px 20px;
    gap: 38px;
  }

  .conversion-band h2 {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .conversion-band > .button {
    width: 100%;
    min-width: 0;
    justify-content: space-between;
  }

  .about-paula {
    gap: 65px;
  }

  .about-paula__credentials > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .about-paula__quote {
    min-height: 520px;
    padding: 45px 28px;
    box-shadow: 12px 12px 0 var(--sage-soft);
  }

  .reviews { padding-top: 88px; padding-bottom: 88px; }

  .reviews__controls { justify-content: flex-end; }

  .reviews__track {
    width: calc(100% + 20px);
    margin-right: -20px;
    grid-auto-columns: minmax(278px, 84vw);
    gap: 14px;
    padding-right: 20px;
  }

  .review-card {
    min-height: 270px;
    padding: 24px 22px 22px;
  }

  .reviews__google-link { width: 100%; justify-content: space-between; }

  .location {
    gap: 58px;
  }

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

  .location__actions {
    display: grid;
  }

  .location__actions .button {
    width: 100%;
    justify-content: space-between;
  }

  .location__map {
    min-height: 390px;
    margin-inline: -5px;
    padding: 9px;
  }

  .location__map iframe {
    height: 372px;
  }

  .faq {
    gap: 52px;
  }

  .faq summary {
    min-height: 82px;
    font-size: 1.15rem;
  }

  .faq details p {
    padding-right: 20px;
  }

  .final-cta {
    min-height: 650px;
    padding: 96px 20px 110px;
  }

  .final-cta h2 {
    font-size: clamp(3.1rem, 14vw, 4.8rem);
  }

  .final-cta .button {
    width: 100%;
    justify-content: space-between;
  }

  .footer {
    padding: 56px 20px 40px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__legal {
    grid-column: auto;
  }

  .mobile-cta {
    min-height: 68px;
    position: fixed;
    z-index: 80;
    inset: auto 8px 8px;
    padding: 9px 9px 9px 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--white);
    background: rgba(36,53,45,.96);
    border: 1px solid rgba(239,214,152,.28);
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(12,20,16,.34);
    backdrop-filter: blur(12px);
    transform: translateY(130%);
    transition: transform .45s cubic-bezier(.2,.75,.25,1);
  }

  .mobile-cta.is-visible {
    transform: none;
  }

  .mobile-cta > div {
    display: grid;
  }

  .mobile-cta span {
    color: rgba(255,255,255,.56);
    font-size: .54rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .mobile-cta strong {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 600;
  }

  .mobile-cta > a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    padding-inline: 20px;
    color: var(--plum-dark);
    background: var(--gold-light);
    border-radius: 13px;
    text-decoration: none;
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
  }
}

@media (max-width: 380px) {
  .topbar__cta {
    padding-inline: 11px;
    font-size: .56rem;
  }

  .hero h1 {
    font-size: 3.15rem;
  }

  .button {
    padding-left: 20px;
    font-size: .68rem;
  }

  .mobile-cta > div {
    display: none;
  }

  .mobile-cta > a {
    width: 100%;
    justify-content: center;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .hero-enter,
  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__slide {
    animation: none;
    opacity: 0;
    transform: none;
  }

  .hero__slide:first-child { opacity: 1; }
}

@media (forced-colors: active) {
  .button,
  .topbar__cta,
  .mobile-cta > a {
    border: 2px solid ButtonText;
  }
}
