:root {
  --wine-black: #28000c;
  --wine-deep: #470013;
  --wine: #65001f;
  --wine-bright: #8e173a;
  --red-glow: #bf3154;
  --rose: #f7dfe0;
  --cream: #fff0ea;
  --cream-muted: #e9c8ca;
  --paper: #ffffff;
  --paper-soft: #ffffff;
  --wine-ink: #4a0b20;
  --wine-muted: #7d4654;
  --line-dark: rgba(255, 240, 234, 0.22);
  --line-wine: rgba(101, 0, 31, 0.2);
  --max-content: 1380px;
  --section-x: clamp(1rem, 4vw, 4.5rem);
  --heading: "Playfair Display", Georgia, serif;
  --body: "Manrope", "Segoe UI", sans-serif;
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--cream);
  background: var(--wine-deep);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

::selection {
  color: var(--wine-deep);
  background: var(--rose);
}

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 4px;
}

main {
  background: var(--wine-deep);
}

section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.section-inner {
  position: relative;
  z-index: 2;
  width: min(100% - (var(--section-x) * 2), var(--max-content));
  margin-inline: auto;
}

.section-dark {
  color: var(--cream);
  background: var(--wine-black);
}

.section-wine {
  color: var(--cream);
  background: var(--wine-deep);
}

.section-light,
.section-cream {
  color: var(--wine-ink);
  background: var(--paper);
}

.eyebrow,
.section-label,
.price-panel__label,
.price-panel__included-title {
  margin: 0 0 1rem;
  color: var(--wine-bright);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.section-dark .section-label,
.section-wine .eyebrow,
.section-wine .section-label {
  color: var(--cream-muted);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--heading);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3.8rem, 7vw, 7.8rem);
}

h2 {
  font-size: clamp(2.8rem, 5vw, 5.7rem);
}

h3 {
  font-size: clamp(1.75rem, 2.1vw, 2.35rem);
}

.hero {
  display: grid;
  min-height: 100svh;
  align-items: stretch;
  background:
    radial-gradient(circle at 12% 20%, rgba(166, 26, 63, 0.62), transparent 26%),
    radial-gradient(circle at 84% 34%, rgba(190, 49, 84, 0.56), transparent 30%),
    radial-gradient(circle at 48% 84%, rgba(112, 0, 37, 0.86), transparent 34%),
    linear-gradient(140deg, #4f0018, #760027 48%, #3d0011);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: 1;
  background:
    radial-gradient(circle at 24% 46%, rgba(247, 223, 224, 0.08), transparent 18%),
    radial-gradient(circle at 68% 14%, rgba(255, 141, 157, 0.2), transparent 19%),
    radial-gradient(circle at 72% 74%, rgba(249, 155, 169, 0.13), transparent 23%);
  filter: blur(36px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto var(--section-x) 1.15rem;
  z-index: 5;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 240, 234, 0.52), transparent);
  pointer-events: none;
}

.hero__inner {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding-block: clamp(4.5rem, 9vh, 8rem);
}

.hero__stage {
  position: absolute;
  inset: 0 50% 0 auto;
  z-index: -1;
  width: 100dvw;
  max-width: 100dvw;
  transform: translateX(50%);
  pointer-events: none;
}

.hero__stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(112, 0, 37, 0.18), rgba(71, 0, 19, 0.7) 58%, rgba(40, 0, 12, 0.9) 100%),
    linear-gradient(180deg, rgba(71, 0, 19, 0.66), rgba(101, 0, 31, 0.46) 48%, rgba(40, 0, 12, 0.84));
}

.hero__visual {
  position: absolute;
  inset: calc(var(--hero-shift, 0px) * -1) 0 0;
  height: calc(100% + 60px);
  opacity: 0.25;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(0.82) brightness(0.66);
  mix-blend-mode: screen;
}

.hero__copy {
  position: relative;
  z-index: 3;
  max-width: 1120px;
  margin-inline: auto;
  text-align: center;
}

.hero__brandline {
  margin: 0 0 clamp(2.4rem, 6vh, 5.2rem);
  color: var(--cream);
  font-family: var(--heading);
  font-size: clamp(1.7rem, 2.6vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
}

.hero__copy .eyebrow {
  margin-bottom: 1.2rem;
}

.hero__copy h1 {
  max-width: 10.8ch;
  margin-inline: auto;
  color: var(--cream);
  text-wrap: balance;
  text-shadow: 0 1.1rem 3rem rgba(40, 0, 12, 0.3);
}

.hero__lead {
  max-width: 46rem;
  margin: 1.65rem auto 0;
  color: rgba(255, 240, 234, 0.82);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin-top: 1.8rem;
}

.hero__facts span {
  display: inline-flex;
  min-height: 1.5rem;
  align-items: center;
  padding: 0 0.85rem;
  color: rgba(255, 240, 234, 0.92);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero__facts span + span {
  border-left: 1px solid rgba(255, 240, 234, 0.34);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  margin-top: 1.8rem;
}

.hero .button-row {
  justify-content: center;
}

.btn {
  position: relative;
  display: inline-flex;
  width: 17.5rem;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.3rem;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 36%, rgba(255, 255, 255, 0.24) 48%, transparent 60% 100%);
  transform: translateX(-115%);
  transition: transform 620ms ease;
}

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

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(115%);
}

.btn--primary {
  color: var(--wine-deep);
  background: var(--cream);
  box-shadow: 0 1rem 2.6rem rgba(40, 0, 12, 0.18);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: #fff9f5;
  box-shadow: 0 1.25rem 3rem rgba(40, 0, 12, 0.28);
}

.btn--ghost {
  color: var(--cream);
  border-color: rgba(255, 240, 234, 0.48);
  background: rgba(255, 240, 234, 0.04);
}

.btn--dark {
  color: var(--cream);
  background: var(--wine-deep);
}

.btn--line {
  color: var(--wine-deep);
  border-color: rgba(101, 0, 31, 0.4);
  background: transparent;
}

.btn--wide {
  width: 100%;
}

.hero__tagline {
  max-width: 31rem;
  margin: 1.65rem auto 0;
  color: rgba(255, 240, 234, 0.74);
  font-family: var(--heading);
  font-size: 1.42rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.about {
  padding-block: clamp(5.5rem, 10vw, 10rem);
  background:
    radial-gradient(circle at 88% 18%, rgba(190, 49, 84, 0.16), transparent 24%),
    radial-gradient(circle at 18% 90%, rgba(190, 49, 84, 0.1), transparent 23%),
    linear-gradient(145deg, var(--paper-soft), var(--paper));
}

.about::after,
.pricing::after,
.location::after {
  content: "";
  position: absolute;
  inset: 1rem;
  z-index: 1;
  border: 1px solid rgba(101, 0, 31, 0.1);
  pointer-events: none;
}

.about__inner,
.pricing__inner,
.impact__inner,
.location__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
}

.about__copy h2 {
  max-width: 12ch;
  color: var(--wine-deep);
}

.about__copy p:not(.section-label),
.pricing__copy p,
.impact__copy p,
.location__copy p,
.final-cta__inner p {
  max-width: 43rem;
  color: rgba(74, 11, 32, 0.74);
  font-size: clamp(1rem, 1.13vw, 1.15rem);
}

.about-ring-photo {
  position: relative;
  display: grid;
  min-height: clamp(20rem, 38vw, 37rem);
  place-items: center;
  margin: 0;
  background: transparent;
}

.about-ring-photo::before,
.about-ring-photo::after {
  content: none;
}

.about-ring-photo img {
  position: relative;
  z-index: 1;
  width: min(100%, 50rem);
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.92) contrast(1.02);
  mix-blend-mode: multiply;
  transition: transform 500ms ease;
}

.about-ring-photo:hover img {
  transform: scale(1.025);
}

.experience {
  padding-block: clamp(5.5rem, 10vw, 10rem);
  background:
    radial-gradient(circle at 18% 10%, rgba(190, 49, 84, 0.5), transparent 24%),
    radial-gradient(circle at 82% 76%, rgba(142, 23, 58, 0.52), transparent 28%),
    linear-gradient(145deg, #5b001b, #710124 54%, #470013);
}

.experience::before,
.final-cta::before {
  content: "";
  position: absolute;
  inset: -15%;
  z-index: 1;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 177, 186, 0.12), transparent 21%),
    radial-gradient(circle at 24% 72%, rgba(255, 177, 186, 0.09), transparent 18%);
  filter: blur(26px);
  pointer-events: none;
}

.section-heading {
  max-width: 920px;
  margin-bottom: clamp(2.4rem, 5vw, 4.5rem);
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  color: var(--cream);
  text-wrap: balance;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.2vw, 1.1rem);
}

.experience-card {
  position: relative;
  min-height: 310px;
  padding: clamp(1.25rem, 2vw, 1.8rem);
  border: 1px solid rgba(255, 240, 234, 0.24);
  background: rgba(255, 240, 234, 0.035);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.experience-card::after {
  content: "";
  position: absolute;
  inset: auto 1.8rem 1.6rem;
  width: 2rem;
  height: 1px;
  background: rgba(255, 240, 234, 0.5);
  transition: width 220ms ease;
}

.experience-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 240, 234, 0.62);
  background: rgba(255, 240, 234, 0.08);
}

.experience-card:hover::after {
  width: 4rem;
}

.card-index {
  display: inline-flex;
  margin-bottom: 3rem;
  color: var(--cream-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.experience-card h3 {
  color: var(--cream);
}

.experience-card p {
  margin: 1rem 0 2.5rem;
  color: rgba(255, 240, 234, 0.72);
  font-size: 0.93rem;
}

.decorative-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: clamp(2.8rem, 5vw, 4.5rem);
}

.decorative-line::before,
.decorative-line::after {
  content: "";
  width: min(22vw, 260px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 240, 234, 0.58));
}

.decorative-line::after {
  background: linear-gradient(90deg, rgba(255, 240, 234, 0.58), transparent);
}

.decorative-line span {
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: var(--cream);
  animation: pulseMark 2.8s ease-in-out infinite;
}

.decorative-line span:nth-child(2) {
  animation-delay: 220ms;
}

.decorative-line span:nth-child(3) {
  animation-delay: 440ms;
}

.pricing {
  padding-block: clamp(5.5rem, 10vw, 10rem);
  background:
    radial-gradient(circle at 12% 18%, rgba(190, 49, 84, 0.13), transparent 28%),
    radial-gradient(circle at 92% 82%, rgba(190, 49, 84, 0.14), transparent 24%),
    linear-gradient(145deg, var(--paper), var(--paper-soft));
}

.pricing__copy h2 {
  max-width: 11ch;
  color: var(--wine-deep);
}

.price-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.6rem, 3vw, 3rem);
  color: var(--cream);
  border: 1px solid rgba(255, 240, 234, 0.36);
  background:
    radial-gradient(circle at 90% 8%, rgba(190, 49, 84, 0.65), transparent 26%),
    radial-gradient(circle at 12% 88%, rgba(142, 23, 58, 0.52), transparent 26%),
    linear-gradient(145deg, #4a0015, #710124);
  box-shadow: 0 2.4rem 5rem rgba(71, 0, 19, 0.22);
}

.price-panel::before {
  content: "";
  position: absolute;
  inset: 0.7rem;
  border: 1px solid rgba(255, 240, 234, 0.15);
  pointer-events: none;
}

.price-panel > * {
  position: relative;
  z-index: 1;
}

.price-panel__label,
.price-panel__included-title {
  color: var(--cream-muted);
}

.price-panel strong {
  display: block;
  color: var(--cream);
  font-family: var(--heading);
  font-size: clamp(4.5rem, 8vw, 8.4rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.price-panel span {
  display: block;
  margin-top: 0.45rem;
  color: rgba(255, 240, 234, 0.7);
}

.price-panel__included-title {
  margin: 2.2rem 0 0;
}

.price-panel ul {
  display: grid;
  gap: 0.8rem;
  margin: 1.1rem 0 2rem;
  padding: 0;
  list-style: none;
}

.price-panel li {
  position: relative;
  padding: 0 0 0.8rem 1.25rem;
  border-bottom: 1px solid rgba(255, 240, 234, 0.15);
  color: rgba(255, 240, 234, 0.85);
}

.price-panel li::before {
  content: "";
  position: absolute;
  top: 0.77rem;
  left: 0;
  width: 0.55rem;
  height: 1px;
  background: var(--cream-muted);
}

.impact {
  padding-block: clamp(5.5rem, 10vw, 10rem);
  background:
    radial-gradient(circle at 12% 14%, rgba(142, 23, 58, 0.48), transparent 24%),
    radial-gradient(circle at 84% 64%, rgba(190, 49, 84, 0.28), transparent 29%),
    linear-gradient(145deg, #31000e, #580019 56%, #3b0010);
}

.impact::before {
  content: "";
  position: absolute;
  inset: 1rem;
  z-index: 1;
  border: 1px solid rgba(255, 240, 234, 0.13);
  pointer-events: none;
}

.impact__inner {
  grid-template-columns: minmax(330px, 0.92fr) minmax(0, 1.08fr);
}

.impact__visual {
  position: relative;
  display: grid;
  width: min(100%, 620px);
  aspect-ratio: 1;
  place-items: center;
  justify-self: center;
}

.impact__visual::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255, 240, 234, 0.32);
  transform: rotate(-3deg);
}

.impact__visual::after {
  content: "";
  position: absolute;
  inset: 10%;
  background: rgba(190, 49, 84, 0.3);
  filter: blur(46px);
}

.impact__visual img {
  position: relative;
  z-index: 2;
  width: min(82%, 500px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 240, 234, 0.28);
  box-shadow: 0 2.5rem 5rem rgba(40, 0, 12, 0.48);
  filter: sepia(0.2) saturate(0.82);
}

.circular-text {
  position: absolute;
  inset: 1%;
  z-index: 3;
  width: 98%;
  height: 98%;
  color: var(--cream-muted);
  opacity: 0.92;
  transform-origin: center;
  animation: rotateText 34s linear infinite;
}

.circular-text text {
  fill: currentColor;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.impact__copy {
  max-width: 850px;
}

.impact__copy h2 {
  max-width: 12.5ch;
  color: var(--cream);
  font-size: clamp(3.5rem, 5.5vw, 6.4rem);
  text-wrap: balance;
}

.impact__copy p:not(.section-label) {
  max-width: 50rem;
  color: rgba(255, 240, 234, 0.74);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
}

.impact__marks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: clamp(1.6rem, 3vw, 2.5rem);
}

.impact__marks span {
  display: inline-flex;
  min-height: 2.5rem;
  align-items: center;
  padding: 0.55rem 0.85rem;
  color: rgba(255, 240, 234, 0.84);
  border: 1px solid rgba(255, 240, 234, 0.22);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.location {
  padding-block: clamp(5.5rem, 10vw, 10rem);
  background:
    radial-gradient(circle at 83% 20%, rgba(190, 49, 84, 0.15), transparent 28%),
    linear-gradient(145deg, var(--paper-soft), var(--paper));
}

.location__copy h2 {
  max-width: 10ch;
  color: var(--wine-deep);
}

.location-card {
  position: relative;
  padding: clamp(1.6rem, 3vw, 3rem);
  border: 1px solid rgba(101, 0, 31, 0.2);
  background: rgba(255, 255, 255, 0.26);
}

.location-card::after {
  content: "";
  position: absolute;
  inset: 0.65rem;
  border: 1px solid rgba(101, 0, 31, 0.08);
  pointer-events: none;
}

.location-card > * {
  position: relative;
  z-index: 1;
}

.location-card__icon {
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 1.7rem;
  border: 1px solid rgba(101, 0, 31, 0.42);
  border-radius: 50% 50% 50% 0;
  background: var(--wine-deep);
  transform: rotate(-45deg);
}

.location-card__icon::after {
  content: "";
  position: absolute;
  inset: 0.78rem;
  border-radius: 50%;
  background: var(--cream);
}

.location-card p {
  margin: 0 0 0.5rem;
  color: rgba(74, 11, 32, 0.62);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.location-card strong {
  display: block;
  max-width: 37rem;
  color: var(--wine-deep);
  font-family: var(--heading);
  font-size: clamp(2.2rem, 3.5vw, 4.2rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.final-cta {
  padding-block: clamp(6.5rem, 12vw, 12rem);
  text-align: center;
  background:
    radial-gradient(circle at 18% 24%, rgba(190, 49, 84, 0.55), transparent 27%),
    radial-gradient(circle at 82% 82%, rgba(142, 23, 58, 0.62), transparent 28%),
    linear-gradient(145deg, #5b001b, #720124 54%, #470013);
}

.final-cta__inner {
  max-width: 1000px;
}

.final-cta__inner h2 {
  max-width: 11ch;
  margin-inline: auto;
  color: var(--cream);
  text-wrap: balance;
}

.final-cta__inner p {
  margin: 1.2rem auto 0;
  color: rgba(255, 240, 234, 0.78);
}

.final-cta__inner .btn {
  margin-top: 1.45rem;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  color: var(--cream);
  border-top: 1px solid rgba(255, 240, 234, 0.14);
  background:
    radial-gradient(circle at 78% 18%, rgba(142, 23, 58, 0.34), transparent 25%),
    linear-gradient(145deg, #31000e, #470013);
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 240, 234, 0.08);
  pointer-events: none;
}

.footer__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
}

.footer__inner p {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(1.6rem, 2.7vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
}

.footer__inner span,
.footer__inner a {
  color: rgba(255, 240, 234, 0.68);
  font-size: 0.82rem;
}

.footer__inner span {
  display: block;
  margin-top: 1rem;
}

.footer__inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}

.footer__inner nav a {
  display: inline-flex;
  width: 10.5rem;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 240, 234, 0.18);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer__inner nav a:hover,
.footer__inner nav a:focus-visible {
  color: var(--cream);
  border-color: rgba(255, 240, 234, 0.5);
  background: rgba(255, 240, 234, 0.06);
}

.wp-content {
  min-height: 70svh;
  padding-block: clamp(7rem, 12vw, 11rem) clamp(4rem, 8vw, 7rem);
  color: var(--wine-ink);
  background: var(--paper);
}

.wp-content h1,
.wp-content h2,
.wp-content h3 {
  color: var(--wine-deep);
}

.wp-content a {
  color: var(--wine-bright);
  font-weight: 800;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes pulseMark {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.86);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotateText {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1180px) {
  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --section-x: clamp(1rem, 5vw, 2rem);
  }

  .hero,
  .hero__inner {
    min-height: auto;
  }

  .hero__inner {
    padding-block: 5.5rem;
  }

  .hero__brandline {
    margin-bottom: 3.4rem;
  }

  .hero__copy h1 {
    max-width: 11ch;
    font-size: clamp(3.6rem, 12.5vw, 5.6rem);
  }

  h2 {
    font-size: clamp(2.8rem, 9.5vw, 4.9rem);
  }

  .about__inner,
  .pricing__inner,
  .impact__inner,
  .location__inner {
    grid-template-columns: 1fr;
  }

  .about-ring-photo {
    min-height: clamp(17rem, 64vw, 33rem);
  }

  .impact__visual {
    width: min(100%, 560px);
  }

  .impact__copy h2 {
    font-size: clamp(3.2rem, 9.5vw, 5rem);
  }

  .footer__inner {
    flex-direction: column;
  }

  .footer__inner nav {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .about::after,
  .pricing::after,
  .location::after,
  .impact::before,
  .site-footer::after {
    inset: 0.6rem;
  }

  .hero__inner {
    padding-block: 4.7rem 5.4rem;
  }

  .hero__brandline {
    margin-bottom: 2.8rem;
    font-size: 1.8rem;
  }

  .hero__lead {
    font-size: 0.96rem;
  }

  .hero__facts {
    display: grid;
    gap: 0.55rem;
  }

  .hero__facts span {
    justify-content: center;
    padding: 0;
  }

  .hero__facts span + span {
    border-left: 0;
  }

  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

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

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

  .price-panel strong {
    font-size: clamp(4rem, 19vw, 5.7rem);
  }

  .impact__marks {
    gap: 0.45rem;
  }

  .impact__marks span {
    min-height: 2.2rem;
    padding: 0.45rem 0.65rem;
    font-size: 0.62rem;
  }

  .location-card .button-row {
    margin-top: 1.5rem;
  }

  .footer__inner nav {
    display: grid;
    width: 100%;
  }

  .footer__inner nav a {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .about-ring-photo {
    min-height: 14rem;
  }

  .hero__copy h1 {
    font-size: clamp(3.2rem, 14.5vw, 4.15rem);
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
