:root {
  --ink: #29242d;
  --ink-soft: #5d5660;
  --forest: #29473d;
  --forest-deep: #1f3730;
  --leaf: #718d43;
  --plum: #684f6d;
  --plum-deep: #4d3851;
  --lilac: #c9b4d5;
  --cream: #f7f4ed;
  --mist: #edf1e9;
  --white: #fffefa;
  --line: rgba(41, 36, 45, 0.14);
  --shadow: 0 22px 58px rgba(31, 55, 48, 0.13);
  --radius: 22px;
  --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 {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.7rem, 6.2vw, 5.5rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.65rem);
}

h3 {
  font-size: clamp(1.42rem, 2vw, 1.85rem);
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding-left: 1.3rem;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--forest-deep);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.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(1160px, calc(100% - 2rem));
  margin-inline: auto;
}

.narrow {
  width: min(790px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 254, 250, 0.94);
  border-bottom: 1px solid rgba(41, 36, 45, 0.09);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 128px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 2vw, 1.7rem);
}

.primary-nav a,
.footer-nav a {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"],
.footer-nav a:hover {
  color: var(--forest);
}

.primary-nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--leaf);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.45rem;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  color: var(--white);
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 999px;
  font-weight: 720;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--forest);
  background: transparent;
  border-color: rgba(41, 71, 61, 0.34);
}

.button-secondary:hover {
  color: var(--white);
}

.button-light {
  color: var(--forest-deep);
  background: var(--white);
  border-color: var(--white);
}

.button-light:hover {
  color: var(--white);
  background: transparent;
}

.button-outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.48);
}

.button-outline-light:hover {
  color: var(--forest-deep);
  background: var(--white);
  border-color: var(--white);
}

.button-small {
  min-height: 44px;
  padding: 0.65rem 1.05rem;
  font-size: 0.9rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: var(--leaf);
}

.lead {
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.7;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 7rem) 0 4.5rem;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -210px;
  left: -140px;
  width: 440px;
  height: 440px;
  content: "";
  border: 1px solid rgba(104, 79, 109, 0.18);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(390px, 0.97fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.hero-copy h1 {
  max-width: 760px;
  margin-top: 1.15rem;
}

.hero-copy .lead {
  max-width: 650px;
  margin-top: 1.5rem;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-booking-note {
  margin-top: 0.9rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.page-hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.8rem;
}

.page-hero-actions p {
  max-width: 460px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  margin-top: 2rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 650;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-meta span::before {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--leaf);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  min-height: 570px;
  margin: 0;
}

.hero-visual::before {
  position: absolute;
  right: -26px;
  bottom: 24px;
  width: 76%;
  height: 70%;
  content: "";
  background: var(--lilac);
  border-radius: 48% 48% 22px 22px;
  opacity: 0.5;
}

.hero-visual img {
  position: absolute;
  z-index: 1;
  inset: 0 0 34px 0;
  width: 100%;
  height: calc(100% - 34px);
  object-fit: cover;
  border-radius: 48% 48% 24px 24px;
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  z-index: 2;
  right: -20px;
  bottom: 0;
  width: min(285px, 76%);
  padding: 1.15rem 1.25rem;
  color: var(--white);
  background: var(--plum-deep);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(41, 36, 45, 0.22);
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card strong {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 400;
}

.hero-card span {
  margin-top: 0.25rem;
  color: rgba(255, 254, 250, 0.78);
  font-size: 0.86rem;
}

.trust-strip {
  color: var(--white);
  background: var(--forest);
}

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

.trust-item {
  padding: 1.35rem 1.5rem;
  text-align: center;
}

.trust-item + .trust-item {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
}

.trust-item span {
  margin-top: 0.1rem;
  color: rgba(255, 254, 250, 0.72);
  font-size: 0.82rem;
}

.section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.section-tint {
  background: var(--mist);
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.55fr);
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.section-heading h2 {
  margin-top: 0.9rem;
}

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

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.68fr);
  align-items: start;
  gap: clamp(2.5rem, 8vw, 7rem);
}

.intro-copy h2 {
  margin-top: 1rem;
}

.intro-copy .lead {
  margin-top: 1.35rem;
}

.statement-card {
  position: relative;
  padding: clamp(2rem, 4vw, 3.25rem);
  color: var(--white);
  background: var(--plum-deep);
  border-radius: var(--radius);
}

.statement-card::before {
  display: block;
  margin-bottom: 1rem;
  color: var(--lilac);
  content: "“";
  font-family: var(--serif);
  font-size: 4.5rem;
  line-height: 0.7;
}

.statement-card p {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.35;
}

.statement-card span {
  display: block;
  margin-top: 1.2rem;
  color: rgba(255, 254, 250, 0.7);
  font-size: 0.88rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card,
.info-card,
.fee-card,
.contact-card {
  padding: clamp(1.6rem, 3vw, 2.25rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card {
  display: flex;
  min-height: 355px;
  flex-direction: column;
}

.card-number {
  color: var(--plum);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.service-card h3,
.info-card h3,
.fee-card h3,
.contact-card h3 {
  margin-top: 1.2rem;
}

.service-card p,
.info-card p,
.fee-card p,
.contact-card p {
  margin-top: 1rem;
  color: var(--ink-soft);
}

.service-card a:not(.button),
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1.5rem;
  color: var(--forest);
  font-weight: 750;
  text-decoration: none;
}

.service-card a:not(.button)::after,
.text-link::after {
  content: "→";
  transition: transform 160ms ease;
}

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

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.step {
  position: relative;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.step-number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--plum);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 800;
}

.step h3 {
  margin-top: 1.2rem;
}

.step p {
  margin-top: 0.8rem;
  color: var(--ink-soft);
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.profile-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.profile-card img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.profile-card img.jonathan {
  object-position: 50% 36%;
}

.profile-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

.profile-card-body .credential {
  margin-top: 0.45rem;
  color: var(--plum);
  font-size: 0.85rem;
  font-weight: 750;
}

.profile-card-body p {
  margin-top: 1rem;
  color: var(--ink-soft);
}

.room-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.65fr);
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
  border-radius: 28px;
}

.room-band img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
}

.room-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.2rem, 5vw, 4.5rem);
}

.room-copy h2,
.cta-band h2 {
  color: var(--white);
}

.room-copy p,
.cta-band p {
  margin-top: 1.2rem;
  color: rgba(255, 254, 250, 0.76);
}

.cta-band {
  padding: clamp(3rem, 6vw, 5rem);
  color: var(--white);
  background: var(--plum-deep);
  border-radius: 28px;
  text-align: center;
}

.cta-band h2,
.cta-band p {
  max-width: 720px;
  margin-inline: auto;
}

.cta-band .section-actions {
  justify-content: center;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7.5rem) 0;
  background: var(--forest-deep);
}

.page-hero::after {
  position: absolute;
  right: -100px;
  bottom: -260px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(201, 180, 213, 0.33);
  border-radius: 50%;
}

.page-hero .eyebrow {
  color: var(--lilac);
}

.page-hero h1 {
  max-width: 900px;
  margin-top: 1rem;
  color: var(--white);
  font-size: clamp(2.8rem, 5.8vw, 5rem);
}

.page-hero .lead {
  max-width: 760px;
  margin-top: 1.35rem;
  color: rgba(255, 254, 250, 0.76);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  align-items: start;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.prose > * + * {
  margin-top: 1.25rem;
}

.prose h2 {
  margin-top: 2.4rem;
  font-size: clamp(1.9rem, 3vw, 2.75rem);
}

.prose h3 {
  margin-top: 2rem;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose ul,
.prose ol {
  display: grid;
  gap: 0.55rem;
}

.aside-card {
  position: sticky;
  top: 112px;
  padding: 2rem;
  color: var(--white);
  background: var(--plum-deep);
  border-radius: var(--radius);
}

.aside-card h2,
.aside-card h3 {
  color: var(--white);
}

.aside-card p,
.aside-card li {
  color: rgba(255, 254, 250, 0.77);
}

.aside-card > * + * {
  margin-top: 1rem;
}

.aside-card ul {
  display: grid;
  gap: 0.45rem;
}

.aside-card .button {
  width: 100%;
  margin-top: 1.4rem;
}

.approach-grid,
.fees-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

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

.info-card,
.fee-card,
.contact-card {
  min-height: 100%;
}

.info-card .eyebrow::before,
.fee-card .eyebrow::before {
  display: none;
}

.bullet-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem 1.5rem;
  padding: 0;
  list-style: none;
}

.bullet-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--ink-soft);
}

.bullet-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--leaf);
  border-radius: 50%;
}

.price {
  margin-top: 1rem;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 2.1rem;
  line-height: 1.1;
}

.fee-card.featured {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.fee-card.featured h3,
.fee-card.featured .price,
.fee-card.featured .eyebrow {
  color: var(--white);
}

.fee-card.featured p {
  color: rgba(255, 254, 250, 0.76);
}

.fee-card .button {
  width: 100%;
  margin-top: 1.5rem;
}

.booking-widget-section {
  scroll-margin-top: 96px;
  background: var(--mist);
}

.booking-widget-heading {
  align-items: end;
}

.booking-widget-shell {
  min-height: 760px;
  padding: clamp(0.35rem, 1.5vw, 1rem);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-widget-shell iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  min-height: 760px;
  border: 0 !important;
}

.booking-widget-fallback {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  text-align: center;
}

.booking-widget-shell .booking-widget-fallback {
  padding: 2rem;
}

.profile-detail {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(2rem, 7vw, 6rem);
}

.profile-detail + .profile-detail {
  margin-top: 6rem;
  padding-top: 6rem;
  border-top: 1px solid var(--line);
}

.profile-photo {
  position: sticky;
  top: 112px;
}

.profile-photo img {
  width: 100%;
  max-height: 650px;
  object-fit: cover;
  border-radius: 46% 46% 20px 20px;
  box-shadow: var(--shadow);
}

.profile-photo img.jonathan {
  object-position: 50% 33%;
}

.profile-copy h2 {
  margin-top: 0.8rem;
}

.credential-line {
  margin-top: 0.7rem;
  color: var(--plum);
  font-weight: 760;
}

.profile-copy .prose {
  margin-top: 1.7rem;
}

.contact-card a {
  display: inline-block;
  margin-top: 1.1rem;
  color: var(--forest);
  font-weight: 750;
}

.contact-links {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.contact-card .contact-links a {
  margin-top: 0;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.contact-form-heading {
  margin-top: 0.9rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 750;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(41, 36, 45, 0.24);
  border-radius: 12px;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note,
.form-status {
  grid-column: 1 / -1;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.form-status {
  min-height: 1.5rem;
  color: var(--forest);
  font-weight: 700;
}

.contact-form .button {
  justify-self: start;
}

.legal-copy {
  padding: clamp(2rem, 5vw, 4.5rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.legal-copy h2 {
  margin-top: 2.8rem;
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
}

.legal-copy h3 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

.legal-copy p,
.legal-copy li {
  color: var(--ink-soft);
}

.legal-copy > * + * {
  margin-top: 1rem;
}

.legal-copy ul {
  display: grid;
  gap: 0.45rem;
}

.crisis-note {
  padding: 1rem 0;
  color: rgba(255, 254, 250, 0.72);
  background: #192d27;
  font-size: 0.86rem;
  text-align: center;
}

.site-footer {
  color: rgba(255, 254, 250, 0.78);
  background: var(--forest-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr) minmax(240px, 0.45fr);
  gap: 3rem;
  padding: 4rem 0 3rem;
}

.footer-brand {
  max-width: 315px;
}

.footer-brand img {
  width: 145px;
  height: auto;
  padding: 0.4rem;
  background: var(--white);
  border-radius: 12px;
}

.footer-brand p,
.footer-contact p {
  margin-top: 1rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  align-content: start;
  gap: 0.7rem 1.5rem;
}

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

.footer-contact strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
}

.footer-contact a {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
}

.footer-bottom a {
  color: inherit;
}

.empty-page {
  display: grid;
  min-height: 62vh;
  place-items: center;
  padding: 4rem 0;
  text-align: center;
}

.empty-page h1 {
  font-size: clamp(3rem, 8vw, 6rem);
}

.empty-page p {
  max-width: 520px;
  margin: 1rem auto 0;
  color: var(--ink-soft);
}

.empty-page .button {
  margin-top: 1.8rem;
}

@media (max-width: 1080px) {
  .nav-wrap {
    gap: 1.2rem;
  }

  .primary-nav {
    gap: 0.9rem;
  }

  .primary-nav a {
    font-size: 0.84rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.8fr);
    gap: 3rem;
  }

  .profile-card {
    grid-template-columns: 1fr;
  }

  .profile-card img {
    min-height: 360px;
    max-height: 430px;
  }
}

@media (max-width: 900px) {
  .nav-wrap {
    grid-template-columns: 1fr auto auto;
    gap: 0.7rem;
    min-height: 76px;
  }

  .brand img {
    width: 104px;
  }

  .nav-toggle {
    display: block;
    grid-column: 3;
    grid-row: 1;
  }

  .header-cta {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
    min-height: 40px;
    padding: 0.55rem 0.85rem;
    font-size: 0.82rem;
  }

  .primary-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: grid;
    gap: 0;
    padding: 1rem;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 35px rgba(41, 36, 45, 0.1);
    transform: translateY(-125%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms ease;
  }

  .menu-open .primary-nav {
    transform: translateY(0);
    visibility: visible;
  }

  .primary-nav a {
    padding: 0.8rem 0.7rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--line);
  }

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

  .hero-grid,
  .intro-grid,
  .section-heading,
  .content-grid,
  .room-band,
  .profile-detail {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 510px;
  }

  .card-grid,
  .fees-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid .service-card:last-child,
  .fees-grid .fee-card:last-child {
    grid-column: 1 / -1;
  }

  .section-heading {
    align-items: start;
  }

  .profile-photo,
  .aside-card {
    position: static;
  }

  .profile-photo img {
    max-height: 560px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 650px) {
  body {
    line-height: 1.65;
  }

  .container,
  .narrow {
    width: min(100% - 1.25rem, 1160px);
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero-actions,
  .section-actions {
    display: grid;
  }

  .page-hero-actions {
    display: grid;
    justify-items: start;
  }

  .hero-actions .button,
  .section-actions .button {
    width: 100%;
  }

  .header-cta {
    padding-inline: 0.7rem;
    font-size: 0.78rem;
  }

  .hero-visual {
    min-height: 410px;
  }

  .hero-card {
    right: 0;
  }

  .trust-grid,
  .card-grid,
  .steps-grid,
  .profiles-grid,
  .approach-grid,
  .fees-grid,
  .contact-grid,
  .bullet-list,
  .footer-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .trust-item + .trust-item {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .card-grid .service-card:last-child,
  .fees-grid .fee-card:last-child,
  .field-full,
  .form-note,
  .form-status {
    grid-column: auto;
  }

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

  .booking-widget-shell {
    min-height: 900px;
    padding: 0;
    border-radius: 14px;
  }

  .booking-widget-shell iframe {
    min-height: 900px;
  }

  .profile-card {
    grid-template-columns: 1fr;
  }

  .profile-card img {
    min-height: 400px;
  }

  .profile-detail + .profile-detail {
    margin-top: 4rem;
    padding-top: 4rem;
  }

  .room-band img {
    min-height: 300px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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