:root {
  --ink: #17120f;
  --ink-soft: rgba(23, 18, 15, 0.72);
  --ink-faint: rgba(23, 18, 15, 0.14);
  --ivory: #f7f1e8;
  --porcelain: #fffaf3;
  --linen: #ede1d4;
  --sage: #838d78;
  --sage-dark: #465041;
  --copper: #a5644b;
  --rose: #d8aea2;
  --white: #ffffff;
  --max: 1280px;
  --radius: 6px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --hero-size: 7.5rem;
  --h2-size: 4.7rem;
  --h3-size: 2rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

img {
  width: 100%;
}

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

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  font-size: var(--hero-size);
  line-height: 0.9;
}

h2 {
  font-size: var(--h2-size);
  line-height: 0.96;
}

h3 {
  font-size: var(--h3-size);
  line-height: 1.05;
}

p {
  color: var(--ink-soft);
}

strong {
  color: var(--ink);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--ink);
  color: var(--porcelain);
  padding: 10px 14px;
}

.skip-link:focus {
  top: 16px;
}

.top-note {
  position: relative;
  background: var(--sage-dark);
  color: var(--porcelain);
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 54px;
  text-align: center;
  font-size: 0.88rem;
}

.top-note.is-hidden {
  display: none;
}

.top-note-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--porcelain);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.top-note-close:hover {
  background: rgba(255, 250, 243, 0.14);
}

.top-note-close .icon {
  width: 16px;
  height: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 243, 0.9);
  border-bottom: 1px solid var(--ink-faint);
  backdrop-filter: blur(18px);
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease, backdrop-filter 240ms ease;
}

.site-header:not(.is-scrolled) {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.site-header:not(.is-scrolled) .brand-mark,
.site-header:not(.is-scrolled) .nav-link,
.site-header:not(.is-scrolled) .text-button {
  color: var(--porcelain);
  text-shadow: 0 1px 18px rgba(23, 18, 15, 0.38);
}

.site-header:not(.is-scrolled) .brand-line {
  color: rgba(255, 250, 243, 0.78);
}

.site-header:not(.is-scrolled) .header-actions .button {
  background: rgba(23, 18, 15, 0.92);
  border-color: rgba(23, 18, 15, 0.92);
  color: var(--porcelain);
  box-shadow: 0 16px 40px rgba(23, 18, 15, 0.24);
}

.site-header:not(.is-scrolled) .header-actions .button:hover {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--porcelain);
}

body.menu-open .site-header {
  background: rgba(255, 250, 243, 0.96);
  border-bottom-color: var(--ink-faint);
  backdrop-filter: blur(18px);
}

body.menu-open .site-header .brand-mark,
body.menu-open .site-header .nav-link,
body.menu-open .site-header .text-button,
body.menu-open .site-header .menu-toggle {
  color: var(--ink);
  text-shadow: none;
}

body.menu-open .site-header .brand-line {
  color: var(--copper);
}

.header-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-grid;
  flex: 0 0 auto;
  gap: 1px;
  min-width: 198px;
  line-height: 1;
}

.brand-mark {
  font-family: var(--serif);
  font-size: 1.72rem;
  color: var(--ink);
}

.brand-line {
  font-size: 0.72rem;
  color: var(--copper);
}

.site-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-width: 0;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  transition: color 180ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"],
.nav-link.is-active {
  color: var(--ink);
}

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

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.header-actions .button {
  flex: 0 0 auto;
  display: inline-flex;
  gap: 8px;
  width: max-content;
  min-width: 126px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 6px;
  background: var(--ink);
  border-color: var(--ink);
  color: var(--porcelain);
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: 0 14px 34px rgba(23, 18, 15, 0.16);
}

.header-actions .button:hover {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--porcelain);
}

.header-actions .button .icon {
  flex: 0 0 auto;
  width: 0.95em;
  height: 0.95em;
  margin-left: 0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--ink-faint);
  border-radius: 99px;
  background: rgba(255, 250, 243, 0.94);
  color: var(--ink);
  padding: 0;
  box-shadow: 0 12px 32px rgba(23, 18, 15, 0.08);
}

.site-header:not(.is-scrolled) .menu-toggle {
  background: var(--porcelain);
  border-color: rgba(255, 250, 243, 0.78);
  color: var(--ink);
  text-shadow: none;
  box-shadow: 0 14px 34px rgba(23, 18, 15, 0.18);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.narrow {
  width: min(780px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: clamp(72px, 9vw, 132px) 0;
  scroll-margin-top: 96px;
}

.section-tight {
  padding: clamp(52px, 7vw, 92px) 0;
}

.section-shell {
  background: var(--porcelain);
}

.method-section {
  background: var(--sage-dark);
  color: var(--porcelain);
  overflow: hidden;
}

.method-section p {
  color: rgba(255, 250, 243, 0.76);
}

.method-section .eyebrow,
.method-section .quick-facts span {
  color: var(--rose);
}

.section-ink {
  background: var(--ink);
  color: var(--porcelain);
}

.section-ink p,
.section-ink .eyebrow,
.section-ink .quote-author {
  color: rgba(255, 250, 243, 0.72);
}

.section-sage {
  background: var(--sage-dark);
  color: var(--porcelain);
}

.section-sage p,
.section-sage .eyebrow {
  color: rgba(255, 250, 243, 0.76);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--copper);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
}

.lead {
  font-size: 1.18rem;
  line-height: 1.55;
}

.display-copy {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1.08;
}

.button,
.text-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 13px 22px;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

button.button {
  font: inherit;
}

.button {
  background: var(--ink);
  color: var(--porcelain);
}

.button:hover {
  transform: translateY(-2px);
  background: var(--copper);
  border-color: var(--copper);
  box-shadow: 0 16px 38px rgba(23, 18, 15, 0.16);
}

.button.light {
  background: var(--porcelain);
  color: var(--ink);
  border-color: var(--porcelain);
}

.button.light:hover {
  background: var(--rose);
  border-color: var(--rose);
}

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

.button.outline:hover {
  background: var(--ink);
  color: var(--porcelain);
}

.button.ghost-light {
  background: transparent;
  color: var(--porcelain);
  border-color: rgba(255, 250, 243, 0.68);
}

.button.ghost-light:hover {
  background: var(--porcelain);
  color: var(--ink);
  border-color: var(--porcelain);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  margin-left: 8px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.button:hover .icon,
.text-button:hover .icon {
  transform: translate(2px, -2px);
}

.icon.solo {
  margin-left: 0;
}

.text-button {
  min-height: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  padding: 0 0 4px;
  color: var(--ink);
}

.text-button:hover {
  color: var(--copper);
}

.hero {
  min-height: calc(100svh - 154px);
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background-image:
    linear-gradient(90deg, rgba(23, 18, 15, 0.76), rgba(23, 18, 15, 0.36) 48%, rgba(23, 18, 15, 0.08)),
    var(--hero-image, none);
  background-position: var(--hero-position, center);
  background-size: cover;
}

main > .hero:first-child {
  margin-top: -76px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(23, 18, 15, 0.58), rgba(23, 18, 15, 0.3) 48%, rgba(23, 18, 15, 0.08)),
    var(--hero-bg);
  background-position: var(--hero-position, center);
  background-size: cover;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 520ms ease, transform 900ms ease;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-position, center);
  filter: saturate(0.88) contrast(1.04);
}

.hero-bg.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-bg.is-active img {
  animation: imageDrift 18s ease-out forwards;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 42%, rgba(23, 18, 15, 0.06), rgba(23, 18, 15, 0.1) 38%, rgba(23, 18, 15, 0.48) 100%),
    linear-gradient(180deg, rgba(23, 18, 15, 0.08), rgba(23, 18, 15, 0.34));
  transform: scale(1.04);
  animation: heroBreath 6.5s ease forwards;
}

.hero-switcher {
  align-items: center;
  background-image: none;
}

.hero-content {
  width: min(810px, calc(100% - 40px));
  margin-left: max(20px, calc((100vw - var(--max)) / 2));
  padding: 86px 0 68px;
  color: var(--porcelain);
}

.hero-switcher .hero-content {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0;
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-switcher h1 {
  width: 100%;
  max-width: 1040px;
  font-size: 8.25rem;
  line-height: 0.88;
  transition: opacity 260ms ease, transform 320ms ease;
}

.hero-switcher.is-switching h1 {
  opacity: 0.72;
  transform: translateY(4px);
}

.hero .eyebrow,
.hero p {
  color: rgba(255, 250, 243, 0.86);
}

.hero h1,
.hero .eyebrow,
.hero .lead,
.hero .hero-lead,
.hero .button-row,
.hero .hero-trust,
.hero-service-toggle {
  opacity: 0;
  transform: translateY(18px);
  animation: riseIn 820ms ease forwards;
}

.hero .lead,
.hero .hero-lead {
  max-width: 620px;
  margin: 20px 0 28px;
  animation-delay: 140ms;
}

.hero .button-row {
  animation-delay: 260ms;
}

.hero .hero-trust {
  animation-delay: 360ms;
}

.hero-lead {
  color: rgba(255, 250, 243, 0.86);
  font-size: 1.2rem;
  line-height: 1.45;
}

.hero-actions {
  justify-content: center;
  margin-top: 26px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-trust li {
  border: 1px solid rgba(255, 250, 243, 0.34);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 250, 243, 0.86);
  font-size: 0.88rem;
  background: rgba(23, 18, 15, 0.2);
  backdrop-filter: blur(12px);
}

.hero-laser .hero-bg img {
  filter: saturate(0.9) contrast(1.08) brightness(0.9);
}

.hero-service-toggle {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --toggle-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  width: min(520px, 100%);
  min-height: 62px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 34px auto 0;
  padding: 6px;
  border: 0;
  border-radius: 12px;
  background: rgba(23, 18, 15, 0.2);
  box-shadow:
    inset 0 0 0 1px rgba(255, 250, 243, 0.48),
    0 16px 48px rgba(23, 18, 15, 0.2);
  backdrop-filter: blur(16px) saturate(1.08);
  animation: riseIn 820ms ease 210ms forwards;
  transition: background 240ms ease, box-shadow 280ms ease, transform 320ms var(--toggle-ease);
  will-change: transform;
}

.hero-service-toggle-nav a {
  display: grid;
  place-items: center;
  text-decoration: none;
}

.hero-service-toggle::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 6px;
  width: calc(50% - 6px);
  border-radius: 8px;
  background: var(--porcelain);
  z-index: 0;
  transform: translate3d(0, 0, 0) scale(1);
  box-shadow: 0 8px 22px rgba(23, 18, 15, 0.1);
  transition:
    transform 380ms var(--toggle-ease),
    border-radius 320ms ease,
    box-shadow 260ms ease,
    filter 260ms ease;
  will-change: transform;
}

.hero-service-toggle::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 0 34%, rgba(255, 250, 243, 0.42) 47%, transparent 62% 100%);
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
  transform: translateX(-90%);
  animation: toggleSheen 7s ease-in-out infinite;
}

.hero-switcher[data-active-topic="wax"] .hero-service-toggle::before {
  transform: translate3d(100%, 0, 0) scale(1);
}

.hero-switcher.is-morphing .hero-service-toggle,
.hero-service-toggle.is-morphing {
  background: rgba(255, 250, 243, 0.2);
  box-shadow:
    inset 0 0 0 1px rgba(255, 250, 243, 0.58),
    0 18px 52px rgba(23, 18, 15, 0.22);
}

.hero-switcher.is-morphing .hero-service-toggle::before,
.hero-service-toggle.is-morphing::before {
  border-radius: 10px;
  filter: brightness(1.02);
  box-shadow: 0 10px 28px rgba(23, 18, 15, 0.14);
}

.hero-switcher.is-morphing .hero-service-toggle::after,
.hero-service-toggle.is-morphing::after {
  opacity: 0.72;
  animation-duration: 2.2s;
}

.hero-toggle-button {
  position: relative;
  z-index: 1;
  min-height: 50px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 250, 243, 0.76);
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.02rem;
  transition: color 360ms ease, transform 360ms var(--toggle-ease), opacity 260ms ease;
}

.hero-toggle-button:hover {
  transform: translateY(-1px);
}

.hero-toggle-button.is-active {
  color: var(--ink);
  transform: translateY(-1px);
}

.hero-small {
  min-height: 540px;
}

.hero-small h1 {
  max-width: 960px;
  font-size: 5.45rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-chip {
  border: 1px solid rgba(255, 250, 243, 0.36);
  border-radius: 99px;
  padding: 8px 12px;
  color: rgba(255, 250, 243, 0.84);
  font-size: 0.88rem;
}

.intro-statement {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}

.intro-statement p {
  font-size: 1.08rem;
}

.intro-statement h2 {
  max-width: 8.5ch;
}

.intro-statement > div:last-child > p {
  max-width: 620px;
  font-size: 1.2rem;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.quick-facts li {
  position: relative;
  display: grid;
  align-content: end;
  gap: 10px;
  min-height: 136px;
  padding: 20px;
  border: 1px solid rgba(255, 250, 243, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.07);
  overflow: hidden;
}

.quick-facts li::before {
  content: "";
  position: absolute;
  width: 76px;
  height: 76px;
  top: -24px;
  right: -24px;
  border: 1px solid rgba(255, 250, 243, 0.18);
  border-radius: 999px;
}

.quick-facts span {
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 800;
}

.quick-facts strong {
  font-family: var(--serif);
  font-size: 1.34rem;
  line-height: 1.12;
  font-weight: 400;
  color: var(--porcelain);
}

.quick-facts li.quick-fact-accent {
  background:
    linear-gradient(135deg, rgba(165, 100, 75, 0.5), rgba(216, 174, 162, 0.18)),
    rgba(255, 250, 243, 0.08);
  border-color: rgba(216, 174, 162, 0.54);
  box-shadow: inset 0 0 0 1px rgba(255, 250, 243, 0.04);
}

.quick-facts li.quick-fact-accent::before {
  border-color: rgba(255, 250, 243, 0.3);
  background: rgba(255, 250, 243, 0.05);
}

.quick-facts li.quick-fact-accent span {
  color: var(--porcelain);
}

.technology-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}

.technology-notes p {
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 250, 243, 0.18);
  font-size: 0.98rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(70, 80, 65, 0.28);
  border: 1px solid rgba(70, 80, 65, 0.28);
}

.feature-grid,
.three-grid,
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(70, 80, 65, 0.28);
  border: 1px solid rgba(70, 80, 65, 0.28);
}

.proof-item,
.feature-item,
.journal-item {
  background: var(--sage-dark);
  padding: 34px;
  min-height: 230px;
  color: var(--porcelain);
}

.proof-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 250, 243, 0.22);
  border-radius: 999px;
  color: var(--rose);
}

.proof-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-number {
  display: block;
  margin-bottom: 22px;
  color: var(--rose);
  font-family: var(--serif);
  font-size: 3.4rem;
  line-height: 1;
}

.proof-item p,
.feature-item p,
.journal-item p {
  margin-top: 14px;
  color: rgba(255, 250, 243, 0.74);
}

.proof-item h3,
.feature-item h3,
.journal-item h3 {
  color: var(--porcelain);
}

.proof-item-accent {
  background: linear-gradient(135deg, var(--copper), #754a39);
}

.proof-item-accent .proof-icon {
  color: var(--porcelain);
  border-color: rgba(255, 250, 243, 0.34);
}

.proof-item-accent .proof-number {
  color: rgba(255, 250, 243, 0.82);
}

.media-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.media-copy.reverse {
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.95fr);
}

.media-copy.reverse .media-frame {
  order: 2;
}

.media-copy.reverse .copy-block {
  order: 1;
}

.media-frame {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: var(--linen);
  isolation: isolate;
  border-radius: var(--radius);
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--porcelain);
  border-radius: inherit;
  transform: translateX(0);
  transition: transform 950ms cubic-bezier(0.72, 0, 0.18, 1);
}

.media-frame.is-visible::after {
  transform: translateX(102%);
}

.media-frame.short {
  min-height: 480px;
}

.media-frame img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: translateY(var(--depth-offset, 0));
  transition: transform 120ms linear;
}

.copy-block {
  max-width: 610px;
}

.copy-block p {
  margin-top: 20px;
}

.ritual-list {
  position: relative;
  display: grid;
  gap: 4px;
  margin-top: 34px;
  padding-left: 5px;
}

.ritual-list::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 22px;
  bottom: 22px;
  width: 1px;
  background: linear-gradient(180deg, rgba(165, 100, 75, 0), rgba(165, 100, 75, 0.8) 16%, rgba(165, 100, 75, 0.8) 84%, rgba(165, 100, 75, 0));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1100ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.copy-block.is-visible .ritual-list::before {
  transform: scaleY(1);
}

.service-row,
.faq details {
  border-bottom: 1px solid var(--ink-faint);
}

.ritual-step {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  padding: 0 0 32px;
}

.ritual-step:last-child {
  padding-bottom: 0;
}

.ritual-step span {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(165, 100, 75, 0.42);
  border-radius: 999px;
  background: var(--porcelain);
  color: var(--copper);
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1;
  box-shadow: 0 0 0 8px var(--porcelain), 0 14px 38px rgba(165, 100, 75, 0.12);
  opacity: 0;
  transform: scale(0.7);
}

.copy-block.is-visible .ritual-step span {
  animation: stepPulse 620ms cubic-bezier(0.18, 0.9, 0.24, 1.2) forwards;
}

.copy-block.is-visible .ritual-step:nth-child(2) span {
  animation-delay: 140ms;
}

.copy-block.is-visible .ritual-step:nth-child(3) span {
  animation-delay: 280ms;
}

.ritual-step > div {
  padding-top: 2px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.copy-block.is-visible .ritual-step > div {
  opacity: 1;
  transform: translateY(0);
}

.copy-block.is-visible .ritual-step:nth-child(2) > div {
  transition-delay: 120ms;
}

.copy-block.is-visible .ritual-step:nth-child(3) > div {
  transition-delay: 240ms;
}

.ritual-step p {
  margin-top: 6px;
}

.service-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.service-list {
  border-top: 1px solid var(--ink-faint);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 20px 0;
}

.service-row p {
  margin-top: 5px;
  font-size: 0.95rem;
}

.price {
  color: var(--copper);
  white-space: nowrap;
  font-weight: 700;
}

.about-section {
  padding: clamp(48px, 7vw, 86px) 0;
  background: var(--sage-dark);
  color: var(--porcelain);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.about-grid .eyebrow,
.about-grid p {
  color: rgba(255, 250, 243, 0.76);
}

.about-grid > div:first-child p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 18px;
  font-size: 1.08rem;
}

.about-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  padding: 0;
  border: 1px solid rgba(255, 250, 243, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.07);
  overflow: hidden;
}

.about-card {
  min-height: 210px;
  padding: 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.about-card + .about-card {
  border-left: 1px solid rgba(255, 250, 243, 0.14);
}

.about-card-head {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.about-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 174, 162, 0.42);
  border-radius: 999px;
  color: var(--rose);
  background: rgba(255, 250, 243, 0.06);
}

.about-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-label {
  display: block;
  margin-bottom: 6px;
  color: var(--rose);
  font-size: 0.82rem;
  font-weight: 800;
}

.language-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.language-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  place-items: center start;
  min-height: 74px;
  padding: 14px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.075);
  color: var(--porcelain);
}

.flag {
  font-size: 1.4rem;
  line-height: 1;
}

.language-list strong,
.about-card strong {
  color: var(--porcelain);
  font-family: var(--serif);
  font-size: 1.14rem;
  font-weight: 400;
}

.about-card p {
  margin: 0;
  color: rgba(255, 250, 243, 0.72);
}

.pricing-section {
  background: var(--porcelain);
}

.pricing-list {
  border-top: 1px solid var(--ink-faint);
  transition: opacity 260ms ease, transform 320ms ease;
}

.pricing-list.is-swapping {
  opacity: 0.42;
  transform: translateY(10px);
}

.pricing-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr);
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--ink-faint);
  align-items: center;
}

.pricing-main {
  display: grid;
  gap: 9px;
}

.pricing-main h3 {
  max-width: 22ch;
  font-size: clamp(1.85rem, 3.2vw, 3rem);
}

.pricing-main p {
  font-size: 1rem;
}

.offer-badge {
  width: fit-content;
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(165, 100, 75, 0.12);
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
}

.package-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.package-button {
  min-height: 38px;
  border: 1px solid var(--ink-faint);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  padding: 8px 12px;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.package-button:hover {
  transform: translateY(-1px);
  border-color: rgba(165, 100, 75, 0.38);
  color: var(--ink);
}

.package-button.is-active {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: var(--porcelain);
}

.price-block {
  display: grid;
  justify-items: end;
  gap: 8px;
  text-align: right;
}

.price-block > span {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.price-block strong {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1;
}

.quote-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.quote-large {
  color: var(--porcelain);
  font-family: var(--serif);
  font-size: 3.2rem;
  line-height: 1.05;
}

.quote-author {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: 760px;
  margin-top: 24px;
  color: rgba(255, 250, 243, 0.72);
  font-weight: 700;
}

.quote-author span:last-child {
  color: var(--rose);
  text-align: right;
}

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

.reviews-action {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.testimonial {
  margin: 0;
  min-height: 230px;
  padding: 32px;
  background: var(--porcelain);
  border: 1px solid var(--ink-faint);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.testimonial:hover {
  transform: translateY(-6px);
  border-color: rgba(165, 100, 75, 0.34);
  box-shadow: 0 24px 70px rgba(23, 18, 15, 0.08);
}

.review-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid var(--ink-faint);
  border-radius: 999px;
  color: var(--copper);
}

.review-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rating {
  display: flex;
  gap: 5px;
  margin-bottom: 24px;
  color: var(--copper);
}

.rating svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linejoin: round;
}

.testimonial blockquote {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.2;
}

.testimonial figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-weight: 700;
}

.testimonial figcaption span:first-child {
  color: var(--ink);
}

.testimonial figcaption span:last-child {
  color: var(--copper);
  text-align: right;
}

.location-section {
  background: linear-gradient(135deg, var(--porcelain), rgba(131, 141, 120, 0.16));
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
}

.location-copy {
  display: grid;
  align-content: center;
}

.location-copy h2 {
  max-width: 9.5ch;
}

.location-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.location-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: rgba(70, 80, 65, 0.24);
  border: 1px solid rgba(70, 80, 65, 0.24);
  border-radius: var(--radius);
  overflow: hidden;
}

.location-meta div {
  min-height: 148px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 22px;
  background: rgba(255, 250, 243, 0.8);
}

.location-meta span {
  color: var(--copper);
  font-weight: 800;
}

.location-meta strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.42rem;
  line-height: 1.15;
  font-weight: 400;
}

.location-meta small {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.location-book {
  min-height: 52px;
  padding: 0 4px;
}

.location-map {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(70, 80, 65, 0.22);
  box-shadow: 0 28px 90px rgba(23, 18, 15, 0.1);
  background: var(--linen);
}

.map-image,
.location-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  border: 0;
}

.map-image {
  object-fit: cover;
  filter: saturate(0.9) contrast(0.96);
}

.location-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 243, 0.18), rgba(255, 250, 243, 0.02) 45%, rgba(70, 80, 65, 0.03)),
    radial-gradient(circle at 68% 46%, rgba(165, 100, 75, 0.08), transparent 24%);
  pointer-events: none;
}

.map-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  display: inline-grid;
  gap: 4px;
  max-width: calc(100% - 36px);
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.88);
  border: 1px solid rgba(23, 18, 15, 0.12);
  box-shadow: 0 16px 50px rgba(23, 18, 15, 0.16);
  backdrop-filter: blur(14px);
}

.map-label strong {
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1;
  font-weight: 400;
}

.map-label span {
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 800;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: grid;
  align-items: end;
  isolation: isolate;
  color: var(--porcelain);
  background: var(--ink);
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(23, 18, 15, 0.74), rgba(23, 18, 15, 0.38) 50%, rgba(23, 18, 15, 0.08)),
    linear-gradient(180deg, rgba(23, 18, 15, 0.08), rgba(23, 18, 15, 0.44));
}

.cta-panel-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: saturate(1.05) contrast(1.02);
}

.cta-panel .container {
  position: relative;
  z-index: 1;
  padding: 64px 0;
}

.cta-panel p {
  max-width: 560px;
  margin: 18px 0 28px;
  color: rgba(255, 250, 243, 0.8);
}

.cta-panel h2 + .button-row {
  margin-top: 28px;
}

.booking-section {
  align-items: center;
  min-height: 720px;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.58fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.booking-copy {
  max-width: 660px;
}

.booking-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 28px;
}

.booking-contact a {
  color: rgba(255, 250, 243, 0.86);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}

.booking-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  align-self: end;
}

.booking-action .button {
  width: fit-content;
  min-width: 0;
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.booking-action p {
  margin: 0;
  color: rgba(255, 250, 243, 0.78);
}

.booking-modal[hidden],
.success-toast[hidden] {
  display: none;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 20px;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 18, 15, 0.62);
  backdrop-filter: blur(10px);
}

.booking-dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(820px, calc(100svh - 40px));
  overflow: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink-faint);
  border-radius: var(--radius);
  background: var(--porcelain);
  color: var(--ink);
  cursor: pointer;
}

.booking-form {
  display: grid;
  gap: 20px;
  background: rgba(255, 250, 243, 0.96);
  color: var(--ink);
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 250, 243, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(23, 18, 15, 0.28);
}

.booking-form .eyebrow {
  color: var(--copper);
  margin-bottom: 8px;
}

.booking-form p {
  color: var(--ink-soft);
  margin: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-wide {
  grid-column: 1 / -1;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 750;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(23, 18, 15, 0.2);
  border-radius: var(--radius);
  background: var(--porcelain);
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

.booking-form input[type="date"] {
  cursor: pointer;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid rgba(165, 100, 75, 0.35);
  border-color: var(--copper);
}

.booking-form .button {
  width: 100%;
}

.form-status {
  min-height: 1.5em;
}

.booking-form.is-submitted .form-status {
  color: var(--sage-dark);
  font-weight: 750;
}

.success-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 340;
  width: min(420px, calc(100% - 44px));
  display: grid;
  grid-template-columns: 34px 1fr 30px;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--ink-faint);
  border-radius: var(--radius);
  background: var(--porcelain);
  color: var(--ink);
  box-shadow: 0 20px 60px rgba(23, 18, 15, 0.22);
}

.success-toast p {
  margin: 0;
  color: var(--ink);
  font-weight: 750;
}

.success-toast button {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.toast-icon {
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 999px;
  background: var(--sage-dark);
  fill: none;
  stroke: var(--porcelain);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.56fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 52px;
}

.page-heading > :only-child {
  grid-column: 1 / -1;
  max-width: 840px;
}

.page-heading p {
  font-size: 1.06rem;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink-faint);
  border: 1px solid var(--ink-faint);
}

.area-item {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: var(--porcelain);
}

.area-item span {
  color: var(--copper);
  font-weight: 800;
}

.faq {
  border-top: 1px solid var(--ink-faint);
}

.faq details {
  padding: 22px 0;
}

.faq summary {
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.55rem;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-top: 2px;
  border: 1px solid var(--ink-faint);
  border-radius: 999px;
  color: var(--copper);
  font-family: var(--sans);
  font-size: 1.1rem;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "-";
}

.faq p {
  max-width: 760px;
  margin-top: 12px;
  animation: faqAnswer 260ms ease;
}

.site-footer {
  background: var(--ink);
  color: var(--porcelain);
  padding-top: 68px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
}

.footer-grid p {
  color: rgba(255, 250, 243, 0.72);
  margin-top: 12px;
}

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

.footer-nav a,
.socials a {
  color: rgba(255, 250, 243, 0.78);
}

.footer-nav a:hover,
.socials a:hover {
  color: var(--porcelain);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.socials a {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 250, 243, 0.18);
  border-radius: var(--radius);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.socials a:hover {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--porcelain);
  transform: translateY(-2px);
}

.socials svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.socials a[data-social="tiktok"] svg,
.socials a[data-social="facebook"] svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  stroke: none;
}

.socials a[data-social="tiktok"] svg {
  width: 18px;
  height: 18px;
}

.copyright {
  border-top: 1px solid rgba(255, 250, 243, 0.16);
  margin-top: 54px;
  padding: 18px 20px;
  color: rgba(255, 250, 243, 0.64);
  text-align: center;
  font-size: 0.9rem;
}

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

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

@keyframes riseIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroBreath {
  to {
    transform: scale(1);
  }
}

@keyframes imageDrift {
  from {
    transform: scale(1.02) translate3d(-0.6%, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(0.8%, -0.8%, 0);
  }
}

@keyframes toggleSheen {
  0%,
  42% {
    transform: translateX(-90%);
  }

  62%,
  100% {
    transform: translateX(90%);
  }
}

@keyframes stepPulse {
  0% {
    opacity: 0;
    transform: scale(0.66);
  }

  70% {
    opacity: 1;
    transform: scale(1.08);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes faqAnswer {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  :root {
    --hero-size: 5.7rem;
    --h2-size: 3.8rem;
  }

  .header-inner {
    gap: 20px;
  }

  .brand {
    min-width: 170px;
  }

  .site-nav {
    gap: 14px;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  .header-actions .text-button {
    display: none;
  }

  .header-actions .button {
    min-width: 118px;
    padding: 12px 18px;
  }

  .proof-grid,
  .feature-grid,
  .three-grid,
  .journal-grid,
  .area-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-switcher h1 {
    font-size: 6.35rem;
  }
}

@media (max-width: 860px) {
  :root {
    --hero-size: 4.4rem;
    --h2-size: 3.1rem;
    --h3-size: 1.72rem;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    font-size: 1.46rem;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    align-content: start;
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    background: rgba(255, 250, 243, 0.98);
    border-bottom: 1px solid var(--ink-faint);
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 260ms ease, opacity 220ms ease, transform 220ms ease, padding 220ms ease;
  }

  body.menu-open .site-nav {
    max-height: calc(100svh - 68px);
    padding: 16px 22px 24px;
    opacity: 1;
    transform: translateY(0);
    overflow-y: auto;
  }

  .nav-link {
    min-height: 52px;
    border-bottom: 1px solid var(--ink-faint);
    color: var(--ink);
  }

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

  .header-actions {
    display: none;
  }

  main > .hero:first-child {
    margin-top: -68px;
  }

  .hero,
  .hero-small {
    min-height: calc(100svh - 132px);
    background-position: var(--hero-position-mobile, center);
  }

  .hero-bg {
    background-position: var(--hero-position-mobile, center);
  }

  .hero-bg img {
    object-position: var(--hero-position-mobile, center);
  }

  .hero-small h1 {
    font-size: var(--hero-size);
  }

  .hero-content {
    margin: 0 auto;
    padding: 62px 0 46px;
  }

  .hero-switcher .hero-content {
    padding: 72px 0;
  }

  .hero-switcher h1 {
    font-size: 4.75rem;
  }

  .intro-statement,
  .about-grid,
  .media-copy,
  .media-copy.reverse,
  .service-menu,
  .quote-band,
  .booking-layout,
  .testimonial-grid,
  .location-grid,
  .page-heading,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .media-copy.reverse .media-frame,
  .media-copy.reverse .copy-block {
    order: unset;
  }

  .media-frame {
    min-height: 520px;
  }

  .section {
    scroll-margin-top: 78px;
  }

  .quote-large,
  .display-copy {
    font-size: 2.32rem;
  }

  .booking-section {
    min-height: auto;
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }

  .about-panel {
    grid-template-columns: 1fr;
  }

  .about-card + .about-card {
    border-left: 0;
    border-top: 1px solid rgba(255, 250, 243, 0.14);
  }

  .location-copy h2 {
    max-width: 11ch;
  }

  .location-map {
    min-height: 420px;
  }

  .language-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-row {
    grid-template-columns: 1fr;
  }

  .price-block {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 600px) {
  :root {
    --hero-size: 3.36rem;
    --h2-size: 2.52rem;
    --h3-size: 1.55rem;
  }

  body {
    font-size: 15px;
  }

  .container,
  .narrow,
  .hero-content {
    width: min(100% - 24px, var(--max));
  }

  .top-note {
    font-size: 0.78rem;
  }

  body.menu-open .site-nav {
    max-height: calc(100svh - 68px);
  }

  .hero {
    min-height: calc(100svh - 124px);
  }

  .hero-switcher .hero-content {
    width: min(100% - 24px, var(--max));
    padding: 58px 0;
    justify-items: start;
    text-align: left;
  }

  .hero-switcher h1 {
    font-size: 2.35rem;
    max-width: 100%;
    text-align: left;
  }

  .button-row,
  .button,
  .reviews-action .button {
    width: 100%;
  }

  .booking-action .button {
    width: auto;
  }

  .icon {
    margin-left: 6px;
  }

  .icon.solo {
    margin-left: 0;
  }

  .hero-service-toggle {
    justify-self: stretch;
    width: min(278px, 100%);
    min-height: 44px;
    margin-top: 18px;
    padding: 4px;
    background: rgba(23, 18, 15, 0.3);
    box-shadow: 0 14px 42px rgba(23, 18, 15, 0.24);
  }

  .hero-service-toggle::before {
    top: 4px;
    bottom: 4px;
    left: 4px;
    width: calc(50% - 4px);
  }

  .hero-toggle-button {
    min-height: 36px;
    font-size: 0.95rem;
  }

  .button-row .button,
  .button-row .text-button {
    width: 100%;
  }

  .booking-layout {
    gap: 26px;
  }

  .booking-action .button {
    width: fit-content;
    min-width: 0;
  }

  .booking-form {
    padding: 20px;
  }

  .booking-modal {
    padding: 12px;
  }

  .booking-dialog {
    max-height: calc(100svh - 24px);
  }

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

  .booking-contact {
    display: grid;
    gap: 12px;
  }

  .proof-grid,
  .feature-grid,
  .three-grid,
  .journal-grid,
  .area-list {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .feature-item,
  .journal-item,
  .area-item,
  .testimonial {
    padding: 24px;
  }

  .media-frame,
  .media-frame.short {
    min-height: 420px;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .testimonial-grid {
    gap: 12px;
  }

  .testimonial {
    min-height: 0;
    padding: 22px;
  }

  .testimonial blockquote {
    font-size: 1.18rem;
    line-height: 1.32;
  }

  .testimonial figcaption {
    margin-top: 18px;
    font-size: 0.94rem;
  }

  .location-meta {
    grid-template-columns: 1fr;
  }

  .location-meta div {
    min-height: 126px;
    padding: 20px;
  }

  .location-actions {
    display: grid;
  }

  .location-map {
    min-height: 360px;
  }

  .technology-notes {
    grid-template-columns: 1fr;
  }

  .language-list {
    grid-template-columns: 1fr;
  }

  .language-list li {
    min-height: 66px;
  }

  .pricing-row {
    padding: 24px 0;
  }

  .package-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .price-block .text-button {
    width: auto;
  }

  .faq summary {
    gap: 12px;
    font-size: 1.28rem;
  }

  .faq summary::after {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }
}

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

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

  .media-frame img {
    transform: none !important;
  }
}
