:root {
  --green: #58663b;
  --green-dark: #2f3a25;
  --green-soft: #76805f;
  --gold: #ccb26e;
  --gold-dark: #a8893f;
  --cream: #fbf8f1;
  --cream-deep: #f2ecdf;
  --white: #fffdf9;
  --text: #293126;
  --muted: #666c62;
  --line: rgba(88, 102, 59, 0.15);
  --shadow: 0 20px 55px rgba(47, 58, 37, 0.12);
  --shadow-soft: 0 10px 30px rgba(47, 58, 37, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --header-height: 68px;
  --shell: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.6;
}

body::after {
  position: fixed;
  z-index: 95;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 253, 249, 0.96), rgba(242, 236, 223, 0.98)),
    var(--cream);
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms cubic-bezier(0.4, 0, 0.2, 1);
}

body.page-cover-visible::after {
  opacity: 1;
  pointer-events: auto;
}

body.intro-active {
  overflow: hidden;
}

body.intro-active > .site-header,
body.intro-active > main,
body.intro-active > .site-footer {
  opacity: 0;
  visibility: hidden;
}

body.intro-active.intro-revealing > .site-header,
body.intro-active.intro-revealing > main,
body.intro-active.intro-revealing > .site-footer {
  opacity: 1;
  visibility: visible;
  transition: opacity 700ms 180ms ease;
}

.site-intro {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  overflow: hidden;
  cursor: pointer;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 253, 249, 0.98) 0, rgba(251, 248, 241, 0.96) 34%, rgba(242, 236, 223, 0.99) 100%);
  place-items: center;
  transition:
    opacity 760ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 850ms cubic-bezier(0.76, 0, 0.24, 1);
}

.site-intro::before,
.site-intro::after {
  position: absolute;
  width: min(70vw, 620px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(204, 178, 110, 0.18);
  border-radius: 50%;
  opacity: 0;
  animation: intro-rings 1600ms 250ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.site-intro::after {
  width: min(88vw, 780px);
  border-color: rgba(88, 102, 59, 0.08);
  animation-delay: 420ms;
}

.site-intro-glow {
  position: absolute;
  width: min(82vw, 720px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(204, 178, 110, 0.16), transparent 64%);
  opacity: 0;
  animation: intro-glow 1800ms 200ms ease-out forwards;
}

.site-intro-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(88vw, 560px);
  text-align: center;
}

.site-intro-mark {
  width: clamp(68px, 16vw, 92px);
  height: clamp(68px, 16vw, 92px);
  color: var(--gold-dark);
}

.site-intro-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
  animation: intro-draw 1150ms 180ms cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.site-intro-name {
  margin-top: 18px;
  color: var(--green-dark);
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 3.15rem);
  letter-spacing: 0.015em;
  opacity: 0;
  transform: translateY(10px);
  animation: intro-arrive 800ms 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.site-intro-line {
  width: 0;
  height: 1px;
  margin-top: 18px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
  animation: intro-line 850ms 1050ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.site-intro-tagline {
  margin-top: 14px;
  color: var(--green-soft);
  font-size: clamp(0.68rem, 2.8vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(8px);
  animation: intro-arrive 700ms 1200ms ease-out forwards;
}

.site-intro.is-leaving {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-3%) scale(1.015);
}

.site-intro.is-leaving .site-intro-content {
  opacity: 0;
  transform: translateY(-12px);
  transition:
    opacity 420ms ease,
    transform 520ms ease;
}

@keyframes intro-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes intro-arrive {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes intro-line {
  to {
    width: min(220px, 62vw);
  }
}

@keyframes intro-rings {
  from {
    opacity: 0;
    transform: scale(0.84);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes intro-glow {
  to {
    opacity: 1;
  }
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

.shell {
  width: min(calc(100% - 28px), var(--shell));
  margin-inline: auto;
}

.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;
}

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

.skip-link:focus {
  transform: translateY(0);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--green-dark);
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.45rem, 12vw, 4.9rem);
}

h2 {
  font-size: clamp(1.85rem, 7vw, 3rem);
}

h3 {
  font-size: clamp(1.35rem, 5vw, 1.7rem);
}

p {
  margin: 0;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-dark);
  font-family: var(--serif);
  font-size: 1.25rem;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 31px;
  height: 31px;
  color: var(--gold-dark);
  place-items: center;
}

.brand-mark svg,
.icon-circle svg,
.feature-list svg,
.button-icon svg,
.booking-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  padding: 8px;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-dark);
  border-radius: 999px;
  transition: opacity 180ms ease, transform 180ms ease;
}

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

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

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

.site-nav {
  position: fixed;
  z-index: 99;
  top: calc(var(--header-height) + 10px);
  right: 14px;
  left: 14px;
  display: grid;
  padding: 9px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-open .site-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav a {
  padding: 13px 12px;
  color: var(--green-dark);
  border-bottom: 1px solid var(--line);
}

.site-nav a:last-child {
  border-bottom: 0;
}

.view {
  display: none;
}

.view.is-active {
  display: block;
}

.view.is-active .hero-card,
.view.is-active .page-hero-card,
.view.is-active .category-hero-card,
.view.is-active .category-card,
.view.is-active .process,
.view.is-active .section-heading,
.view.is-active .service-card,
.view.is-active .booking-panel,
.view.is-active .teaser-card,
.view.is-active .contact-strip,
.view.is-active .praxis-block,
.view.is-active .contact-card {
  opacity: 0;
  transform: translateY(18px);
}

.view.is-active.is-revealing .hero-card,
.view.is-active.is-revealing .page-hero-card,
.view.is-active.is-revealing .category-hero-card,
.view.is-active.is-revealing .category-card,
.view.is-active.is-revealing .process,
.view.is-active.is-revealing .section-heading,
.view.is-active.is-revealing .service-card,
.view.is-active.is-revealing .booking-panel,
.view.is-active.is-revealing .teaser-card,
.view.is-active.is-revealing .contact-strip,
.view.is-active.is-revealing .praxis-block,
.view.is-active.is-revealing .contact-card {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.view.is-active.is-revealing .category-card:nth-child(2),
.view.is-active.is-revealing .service-card:nth-child(2),
.view.is-active.is-revealing .teaser-card:nth-child(2),
.view.is-active.is-revealing .praxis-block:nth-child(2) {
  transition-delay: 80ms;
}

.view.is-active.is-revealing .category-card:nth-child(3),
.view.is-active.is-revealing .service-card:nth-child(3),
.view.is-active.is-revealing .process,
.view.is-active.is-revealing .contact-card {
  transition-delay: 150ms;
}

.view.is-active.is-revealing .service-card:nth-child(4) {
  transition-delay: 210ms;
}

.view.is-active.is-revealing .service-card:nth-child(5) {
  transition-delay: 250ms;
}

.view.is-active.is-revealing .service-card:nth-child(6) {
  transition-delay: 290ms;
}

.view.is-active.is-revealing .service-card:nth-child(7) {
  transition-delay: 330ms;
}

.view.is-active.is-revealing .service-card:nth-child(8),
.view.is-active.is-revealing .booking-panel,
.view.is-active.is-revealing .contact-strip {
  transition-delay: 370ms;
}

.view.is-active.is-revealing .category-hero-bg,
.view.is-active.is-revealing .page-hero-bg,
.view.is-active.is-revealing .hero-bg {
  animation: background-arrival 1400ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes background-arrival {
  from {
    opacity: 0.62;
    transform: scale(1.025);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero,
.page-hero,
.category-hero {
  position: relative;
  overflow: hidden;
}

.hero {
  padding: 34px 0 46px;
}

.hero-bg,
.page-hero-bg,
.category-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(251, 248, 241, 0.16), rgba(251, 248, 241, 0.72) 70%, var(--cream) 100%),
    url("https://images.unsplash.com/photo-1600334129128-685c5582fd35?auto=format&fit=crop&w=1800&q=85") center / cover;
  filter: saturate(0.78);
}

.hero-bg::after,
.page-hero-bg::after,
.category-hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 8% 44%, rgba(255, 253, 249, 0.64), transparent 20rem),
    radial-gradient(circle at 94% 25%, rgba(88, 102, 59, 0.13), transparent 22rem);
}

.hero-shell,
.page-hero-inner,
.category-hero-inner {
  position: relative;
}

.hero-shell {
  display: grid;
  gap: 24px;
}

.hero-card,
.page-hero-card,
.category-hero-card {
  padding: 34px 20px;
  text-align: center;
  background: rgba(255, 253, 249, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card {
  max-width: 700px;
  margin-inline: auto;
}

.botanical-mark {
  position: relative;
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  color: var(--gold-dark);
}

.botanical-mark::before,
.botanical-mark::after {
  position: absolute;
  inset: 5px 14px;
  content: "";
  border: 1.5px solid currentColor;
  border-radius: 50% 50% 0 50%;
  transform-origin: bottom center;
}

.botanical-mark::before {
  transform: rotate(-38deg);
}

.botanical-mark::after {
  transform: rotate(38deg);
}

.hero-copy {
  max-width: 510px;
  margin: 20px auto 0;
  color: var(--muted);
}

.hero-copy::before {
  display: block;
  width: 48px;
  height: 1px;
  margin: 0 auto 20px;
  content: "";
  background: var(--gold);
}

.category-grid {
  display: grid;
  gap: 14px;
}

.category-card,
.service-card,
.teaser-card {
  background: rgba(255, 253, 249, 0.95);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 20px;
  text-align: center;
}

.category-card p {
  max-width: 340px;
  margin: 12px 0 22px;
  color: var(--muted);
}

.icon-circle {
  display: grid;
  width: 68px;
  height: 68px;
  padding: 13px;
  margin-bottom: 17px;
  color: var(--green);
  background: rgba(204, 178, 110, 0.14);
  border-radius: 50%;
  place-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid transparent;
  border-radius: 10px;
  transition: background-color 160ms ease, transform 160ms ease;
}

.button-gold {
  color: #fffdf8;
  background: var(--gold-dark);
  box-shadow: 0 10px 24px rgba(168, 137, 63, 0.24);
}

.button-gold:hover {
  background: #967831;
  transform: translateY(-1px);
}

.button-icon {
  width: 19px;
  height: 19px;
  margin-left: 9px;
}

.process {
  padding: 20px 16px;
  background: rgba(255, 253, 249, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.process-title {
  margin-bottom: 14px;
  color: var(--green-dark);
  font-family: var(--serif);
  font-size: 1.1rem;
  text-align: center;
}

.process-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.process-list span {
  display: grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  color: var(--green-dark);
  font-family: var(--serif);
  background: rgba(204, 178, 110, 0.18);
  border-radius: 50%;
  place-items: center;
}

.intro-section,
.services-section,
.praxis-section {
  padding-block: 72px;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading > p:last-child {
  margin-top: 15px;
  color: var(--muted);
}

.teaser-grid {
  display: grid;
  gap: 18px;
}

.teaser-card {
  overflow: hidden;
}

.teaser-image {
  min-height: 250px;
  background-position: center;
  background-size: cover;
}

.teaser-image-portrait {
  background-image:
    linear-gradient(180deg, rgba(251, 248, 241, 0.02), rgba(47, 58, 37, 0.08)),
    url("https://images.unsplash.com/photo-1594824476967-48c8b964273f?auto=format&fit=crop&w=900&q=82");
}

.teaser-image-room {
  background-image:
    linear-gradient(180deg, rgba(251, 248, 241, 0.02), rgba(47, 58, 37, 0.08)),
    url("https://images.unsplash.com/photo-1519823551278-64ac92734fb1?auto=format&fit=crop&w=1200&q=82");
}

.teaser-content {
  padding: 25px 22px 28px;
}

.teaser-content > p:not(.eyebrow) {
  margin-top: 12px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 17px;
  color: var(--gold-dark);
  font-weight: 700;
}

.text-link::after {
  margin-left: 8px;
  content: "→";
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.contact-strip,
.booking-panel,
.contact-card {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 30%, rgba(204, 178, 110, 0.18), transparent 15rem),
    linear-gradient(135deg, var(--green-dark), var(--green));
  box-shadow: var(--shadow-soft);
}

.contact-strip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 30px 24px;
  margin-bottom: 72px;
  border-radius: var(--radius-md);
}

.contact-strip h2,
.booking-panel h2,
.contact-card h2 {
  color: var(--white);
}

.contact-strip .eyebrow,
.booking-panel .eyebrow,
.contact-card .eyebrow {
  color: var(--gold);
}

.text-link-light {
  margin: 0;
  color: var(--white);
}

.page-hero,
.category-hero {
  padding: 42px 0;
}

.page-hero-inner,
.category-hero-inner {
  min-height: 440px;
  display: grid;
  align-items: center;
}

.page-hero-card,
.category-hero-card {
  max-width: 760px;
  margin-inline: auto;
}

.page-hero-card > p:last-child,
.category-hero-card > p:not(.eyebrow) {
  max-width: 600px;
  margin: 20px auto 0;
  color: var(--muted);
}

.category-hero-card h1 {
  font-size: clamp(2.35rem, 11vw, 4.5rem);
}

.category-icon {
  width: 76px;
  height: 76px;
  margin-inline: auto;
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 22px 0 0;
  margin: 24px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.feature-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.86rem;
}

.feature-list li > span {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  color: var(--green);
}

.category-page {
  background:
    radial-gradient(circle at 100% 15%, rgba(204, 178, 110, 0.08), transparent 25rem),
    var(--cream);
}

.service-grid {
  display: grid;
  gap: 12px;
}

.service-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  box-shadow: none;
}

.service-icon {
  width: 54px;
  height: 54px;
  padding: 11px;
  margin: 0;
}

.service-card h3 {
  font-size: 1.24rem;
}

.service-card p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.booking-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 34px 24px;
  margin-top: 34px;
  text-align: center;
  border-radius: var(--radius-md);
}

.booking-mark {
  width: 54px;
  height: 54px;
  padding: 5px;
  color: var(--gold);
}

.booking-panel p:not(.eyebrow) {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.82);
}

.booking-button {
  width: 100%;
  max-width: 280px;
}

.praxis-section {
  display: grid;
  gap: 22px;
}

.praxis-block {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.praxis-image {
  min-height: 300px;
  background-position: center;
  background-size: cover;
  border-radius: var(--radius-md);
}

.praxis-block p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
}

.contact-card {
  display: grid;
  gap: 24px;
  padding: 30px 24px;
  margin-top: 26px;
  border-radius: var(--radius-lg);
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.contact-card p:not(.eyebrow) {
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-list {
  display: grid;
  gap: 10px;
  font-style: normal;
}

.contact-list a,
.contact-list span {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.site-footer {
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #252d20;
}

.footer-inner {
  display: grid;
  gap: 8px;
  text-align: center;
}

.brand-footer {
  justify-content: center;
  color: var(--white);
}

.site-footer a:last-child {
  color: var(--gold);
}

@media (min-width: 700px) {
  .shell {
    width: min(calc(100% - 48px), var(--shell));
  }

  .hero {
    padding: 58px 0;
  }

  .hero-card,
  .page-hero-card,
  .category-hero-card {
    padding: 48px 52px;
  }

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

  .category-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 7px);
    justify-self: center;
  }

  .process-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-list li {
    justify-content: center;
    text-align: left;
  }

  .feature-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .service-card {
    display: block;
    min-height: 245px;
    padding: 28px 22px;
    text-align: center;
  }

  .service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
  }

  .contact-strip,
  .booking-panel,
  .contact-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .booking-panel {
    display: grid;
    grid-template-columns: auto 1fr auto;
  }

  .booking-button {
    width: auto;
  }

  .praxis-block {
    grid-template-columns: 0.9fr 1.1fr;
    padding: 28px;
  }

  .praxis-block-reverse .praxis-image {
    order: 2;
  }

  .contact-card {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer-inner {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    text-align: left;
  }

  .brand-footer {
    justify-content: flex-start;
  }

  .site-footer a:last-child {
    justify-self: end;
  }
}

@media (min-width: 960px) {
  :root {
    --header-height: 78px;
  }

  .brand {
    font-size: 1.55rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    gap: 34px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    padding: 8px 0;
    border: 0;
    transition: color 160ms ease;
  }

  .site-nav a:hover {
    color: var(--gold-dark);
  }

  .hero {
    min-height: calc(100vh - var(--header-height));
    display: grid;
    align-items: center;
    padding: 64px 0;
  }

  .hero-shell {
    gap: 34px;
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .category-card,
  .category-card:last-child {
    grid-column: auto;
    width: auto;
    min-height: 300px;
    padding: 30px 26px;
  }

  .category-card .button {
    margin-top: auto;
  }

  .category-card {
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  }

  .category-card:hover {
    border-color: rgba(204, 178, 110, 0.5);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
  }

  .process {
    padding: 18px 28px;
  }

  .process-title {
    margin-bottom: 16px;
  }

  .intro-section,
  .services-section,
  .praxis-section {
    padding-block: 92px;
  }

  .teaser-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    min-height: 320px;
  }

  .teaser-card:nth-child(2) .teaser-image {
    order: 2;
  }

  .teaser-content {
    align-self: center;
    padding: 34px;
  }

  .page-hero,
  .category-hero {
    padding: 64px 0;
  }

  .service-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .service-card {
    min-height: 260px;
  }

  .booking-panel {
    padding: 36px 48px;
    margin-top: 42px;
  }

  .praxis-block {
    gap: 60px;
    padding: 36px;
  }

  .praxis-image {
    min-height: 400px;
  }

  .contact-card {
    padding: 44px 48px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .site-intro {
    display: none;
  }

  body.intro-active > .site-header,
  body.intro-active > main,
  body.intro-active > .site-footer {
    opacity: 1;
    visibility: visible;
  }

  .view.is-active .hero-card,
  .view.is-active .page-hero-card,
  .view.is-active .category-hero-card,
  .view.is-active .category-card,
  .view.is-active .process,
  .view.is-active .section-heading,
  .view.is-active .service-card,
  .view.is-active .booking-panel,
  .view.is-active .teaser-card,
  .view.is-active .contact-strip,
  .view.is-active .praxis-block,
  .view.is-active .contact-card {
    opacity: 1;
    transform: none;
  }
}
