:root {
  --black: #0d0c0a;
  --white: #f8f5f0;
  --text: #1c1a17;
  --muted: #655f58;
  --muted-dark: #4a443d;
  --border: #e2dbd5;
  --panel: #f4efe8;
  --sage: #7d8867;
  --rose: #c4778a;
  --shadow: 0 22px 50px rgba(16, 12, 8, 0.08);
  --font-body: 'Jost', sans-serif;
  --font-display: 'Cormorant Garamond', serif;
  --type-body: 1rem;
  --leading-body: 1.78;
  --type-label: 0.58rem;
  --tracking-label: 0.28em;
  --type-button: 0.62rem;
  --tracking-button: 0.2em;
  --type-hero: clamp(3.2rem, 7vw, 6.6rem);
  --type-section: clamp(2.2rem, 4vw, 3.8rem);
  --type-card-heading: clamp(1.8rem, 2.7vw, 2.35rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a,
button,
input,
select,
textarea {
  font: inherit;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
}

em {
  font-style: italic;
}

.page-shell {
  min-height: 100vh;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(13, 12, 10, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

body.menu-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

.overlay-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.overlay-links li + li {
  margin-top: 10px;
}

.overlay-links a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0.03em;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: max(26px, env(safe-area-inset-top)) 40px 24px;
  transition: background 0.28s ease, border-color 0.28s ease, color 0.28s ease;
}

.site-nav.nav-solid {
  background: rgba(248, 245, 240, 0.96);
  border-bottom: 1px solid var(--border);
}

.nav-back {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  color: rgba(248, 245, 240, 0.88);
  text-decoration: none;
  font-size: 0.54rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-back::before {
  content: '←';
  font-size: 0.9rem;
  line-height: 1;
}

.nav-solid .nav-back,
.page-light .nav-back {
  color: var(--text);
}

.nav-toggle {
  justify-self: start;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  background: rgba(248, 245, 240, 0.86);
  transition: transform 0.28s ease, opacity 0.28s ease, background 0.28s ease;
}

.nav-solid .nav-toggle span,
.page-light .nav-toggle span {
  background: var(--text);
}

body.menu-open .nav-toggle span {
  background: var(--white);
}

body.menu-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

body.menu-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.nav-brand {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  text-decoration: none;
}

.nav-solid .nav-brand,
.page-light .nav-brand {
  color: var(--text);
}

.nav-brand svg {
  display: block;
  width: 26px;
  height: 22px;
}

.nav-brand .logo-gap {
  fill: transparent;
}

.nav-solid .nav-brand .logo-gap,
.page-light .nav-brand .logo-gap {
  fill: var(--white);
}

.nav-wordmark {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(248, 245, 240, 0.18);
  color: rgba(248, 245, 240, 0.88);
  text-decoration: none;
  font-size: 0.54rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  background: rgba(248, 245, 240, 0.04);
  transition: background 0.28s ease, border-color 0.28s ease, color 0.28s ease;
}

.nav-solid .nav-cta,
.page-light .nav-cta {
  color: var(--text);
  border-color: rgba(28, 26, 23, 0.12);
  background: rgba(28, 26, 23, 0.03);
}

.nav-cta:hover {
  background: rgba(248, 245, 240, 0.12);
  border-color: rgba(248, 245, 240, 0.34);
}

.nav-solid .nav-cta:hover,
.page-light .nav-cta:hover {
  background: rgba(28, 26, 23, 0.06);
  border-color: rgba(28, 26, 23, 0.22);
}

.nav-cta.is-current {
  background: rgba(248, 245, 240, 0.16);
  border-color: rgba(248, 245, 240, 0.4);
}

.nav-solid .nav-cta.is-current,
.page-light .nav-cta.is-current {
  background: rgba(28, 26, 23, 0.08);
  border-color: rgba(28, 26, 23, 0.22);
}

.nav-spacer {
  height: 88px;
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid currentColor;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  font-size: var(--type-button);
  font-weight: 400;
  letter-spacing: var(--tracking-button);
  text-transform: uppercase;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-light {
  color: var(--text);
  background: rgba(248, 245, 240, 0.96);
  border-color: rgba(248, 245, 240, 0.96);
}

.btn-dark-outline {
  color: rgba(248, 245, 240, 0.88);
  border-color: rgba(248, 245, 240, 0.42);
}

.btn-dark-outline:hover {
  border-color: rgba(248, 245, 240, 0.82);
}

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

.btn-dark:hover {
  background: var(--text);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

.hero-bg,
.about-hero-bg,
.experiences-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.82) contrast(0.94) brightness(0.92) sepia(0.06);
}

.hero-overlay,
.about-hero-overlay,
.experiences-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 6, 5, 0.74), rgba(7, 6, 5, 0.28));
}

.hero::after,
.about-hero::after,
.experiences-hero::after,
.showcase-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035), rgba(255,255,255,0.015)),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.05), transparent 28%),
    radial-gradient(circle at 80% 0%, rgba(255,255,255,0.04), transparent 22%);
  mix-blend-mode: soft-light;
  opacity: 0.55;
  pointer-events: none;
}

.hero-content,
.about-hero-content,
.experiences-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 820px;
  padding: 0 52px 82px;
  color: var(--white);
}

.hero-eyebrow {
  display: block;
  margin-bottom: 16px;
  color: rgba(248, 245, 240, 0.7);
  font-size: var(--type-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

.hero h1,
.about-hero h1,
.experiences-hero h1 {
  font-size: var(--type-hero);
  line-height: 0.94;
  font-weight: 300;
  margin-bottom: 18px;
}

.hero p,
.about-hero p,
.experiences-hero p {
  max-width: 30ch;
  color: rgba(248, 245, 240, 0.84);
  font-size: var(--type-body);
  line-height: var(--leading-body);
}

.hero .btn-row,
.experiences-hero .btn-row {
  margin-top: 28px;
}

.section {
  padding: 56px 52px;
}

.fade-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.fade-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-meaning {
  padding-top: 30px;
  padding-bottom: 44px;
}

.home-meaning-shell,
.home-trust-shell {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.home-meaning-shell h2 {
  font-size: var(--type-section);
  line-height: 1.02;
  margin-bottom: 14px;
}

.home-meaning-shell p,
.home-trust-shell p {
  margin: 0;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: var(--leading-body);
}

.home-meaning-shell p + p,
.home-trust-shell p + p {
  margin-top: 10px;
}

.home-trust {
  padding-top: 14px;
  padding-bottom: 52px;
}

.home-cta-band {
  padding: 60px 52px 78px;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.about-core-shell {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.about-core-shell {
  max-width: 1180px;
}

.service-nav-shell {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.service-nav-shell p {
  color: var(--muted);
  font-size: var(--type-body);
  line-height: var(--leading-body);
}

.service-nav-shell .btn-row {
  justify-content: center;
  margin-top: 24px;
}

.service-nav-shell .btn.is-current {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}


/* Restore homepage service cards layout */
.service-path-grid {
  max-width: 1120px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.service-path-card {
  display: grid;
  gap: 14px;
  min-height: 250px;
  padding: 28px 24px 26px;
  border-radius: 28px;
  text-decoration: none;
  text-align: left;
  border: 1px solid rgba(32, 24, 17, 0.08);
  box-shadow: 0 24px 50px rgba(20, 12, 8, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-path-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 58px rgba(20, 12, 8, 0.12);
}

.service-path-card,
.home-cta-band .service-path-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(244, 239, 232, 0.12));
  border-color: rgba(255, 255, 255, 0.14);
}

.service-path-card h3 {
  font-size: clamp(1.8rem, 2.8vw, 2.45rem);
  line-height: 1.02;
}

.service-path-card p {
  color: var(--muted);
  font-size: var(--type-body);
  line-height: var(--leading-body);
}

.home-cta-band .service-path-card h3,
.home-cta-band .service-path-card p,
.home-cta-band .service-path-link {
  color: var(--white);
}

.home-cta-band .service-path-grid {
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.home-cta-band .service-path-card-featured {
  min-height: 286px;
  padding: 34px 30px 30px;
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 34px 72px rgba(20, 12, 8, 0.16);
}

.home-cta-band .service-path-card-featured h3 {
  font-size: clamp(2.05rem, 3vw, 2.75rem);
}

.home-cta-band .service-path-card-featured p {
  max-width: 30ch;
}

.service-path-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: var(--type-button);
  letter-spacing: var(--tracking-button);
  text-transform: uppercase;
}

.service-path-link::after {
  content: '→';
  font-size: 0.9rem;
}

.form-row--full {
  grid-column: 1 / -1;
}

.about-story-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.42fr);
  gap: 48px;
  align-items: start;
  padding: clamp(30px, 4vw, 58px);
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 30%),
    linear-gradient(135deg, rgba(255, 253, 249, 0.98), rgba(245, 237, 228, 0.92));
  border: 1px solid rgba(32, 24, 17, 0.07);
  box-shadow: 0 26px 70px rgba(20, 12, 8, 0.07);
  text-align: left;
  overflow: hidden;
}

.about-story-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(176, 141, 103, 0), rgba(176, 141, 103, 0.42), rgba(176, 141, 103, 0));
}

.about-story-intro {
  max-width: 22rem;
  padding-top: 6px;
}

.about-core-shell h2 {
  font-size: var(--type-section);
  line-height: 0.98;
  margin-bottom: 16px;
}

.about-story-copy p {
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: var(--leading-body);
}

.about-story-copy p + p {
  margin-top: 15px;
}

.about-story-copy {
  max-width: 56rem;
}

.about-story-signoff {
  margin-top: 24px;
  color: var(--black);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-statement-shell {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.brand-statement-shell p {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
}

.home-cta-band h2 {
  font-size: var(--type-section);
  line-height: 1.02;
  margin-bottom: 24px;
}

.home-cta-band .btn-row {
  justify-content: center;
}

.about-hero,
.experiences-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

.page-light {
  background: var(--white);
}

.experiences-list {
  padding-top: 64px;
  padding-bottom: 66px;
}

.about-core {
  padding-top: 52px;
  padding-bottom: 62px;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-head h2 {
  font-size: var(--type-section);
  line-height: 1.02;
  margin-bottom: 12px;
}

.section-note {
  max-width: 34ch;
  margin: 0 auto;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: var(--leading-body);
}

.experience-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.residence-positioning-shell {
  max-width: 820px;
}

.experience-form {
  padding-top: 18px;
  padding-bottom: 82px;
}

.experience-form-shell {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.form-aside h2 {
  font-size: var(--type-section);
  line-height: 1.02;
  margin-bottom: 16px;
}

.form-aside p {
  color: var(--muted);
  font-size: var(--type-body);
  line-height: var(--leading-body);
}

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

.form-meta li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: 30px 32px 24px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,239,232,0.92));
  box-shadow: var(--shadow);
}

.form-intro {
  max-width: 34ch;
  margin: 0;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: var(--leading-body);
}

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

.form-row {
  display: grid;
  gap: 10px;
}

.form-row label {
  font-size: var(--type-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--muted);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--border);
  background: transparent;
  padding: 0 0 14px;
  color: var(--text);
  outline: none;
  font-size: 1rem;
  line-height: 1.5;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(101, 95, 88, 0.72);
}

.form-row textarea {
  min-height: 88px;
  resize: vertical;
}

.form-submit {
  margin-top: 10px;
  width: fit-content;
}

.experience-card {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 0;
  border-radius: 26px;
  overflow: hidden;
  border: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(16, 12, 8, 0.09);
  transition: transform 0.55s ease, box-shadow 0.55s ease, border-color 0.55s ease;
}

.experience-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(13, 12, 10, 0.08), rgba(13, 12, 10, 0.46)),
    radial-gradient(circle at top, rgba(248, 245, 240, 0.08), transparent 42%);
  transition: opacity 0.55s ease, background 0.55s ease;
}

.experience-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, rgba(125, 136, 103, 0.05), rgba(196, 119, 138, 0.04));
  mix-blend-mode: screen;
  opacity: 0.22;
  transition: opacity 0.55s ease, background 0.55s ease;
}

.experience-card .experience-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: none;
  opacity: 0;
  mix-blend-mode: soft-light;
  transition: opacity 0.55s ease, transform 0.9s ease;
}

.experience-card-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: saturate(0.72) contrast(0.9) brightness(0.9);
}

.experience-card > *:not(.experience-card-media) {
  position: relative;
  z-index: 2;
}

.experience-card h3,
.experience-card p,
.experience-kicker,
.experience-icon,
.experience-link,
.experience-story {
  transition: transform 0.42s ease, opacity 0.42s ease, color 0.42s ease, border-color 0.42s ease, background 0.42s ease;
}

.experience-card:hover,
.experience-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 34px 68px rgba(16, 12, 8, 0.18);
  border-color: rgba(248, 245, 240, 0.1);
}

.experience-card:focus-visible {
  outline: none;
}

.experience-card:hover::before,
.experience-card:focus-visible::before {
  background:
    linear-gradient(180deg, rgba(67, 42, 17, 0.12), rgba(13, 12, 10, 0.52)),
    radial-gradient(circle at top, rgba(248, 223, 186, 0.26), transparent 46%);
}

.experience-card:hover::after,
.experience-card:focus-visible::after {
  opacity: 1;
  background: linear-gradient(135deg, rgba(196, 155, 80, 0.16), rgba(196, 119, 138, 0.18));
}

.experience-card:hover .experience-card-media,
.experience-card:focus-visible .experience-card-media {
  transform: scale(1.06);
  filter: saturate(0.84) contrast(0.94) brightness(0.9);
}

.experience-card:hover .experience-card-media::after,
.experience-card:focus-visible .experience-card-media::after {
  opacity: 0.46;
  transform: scale(1.02);
}

.experience-kicker {
  position: absolute;
  top: 22px;
  left: 22px;
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.experience-icon {
  position: absolute;
  top: 58px;
  left: 22px;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  border-radius: 50%;
  border: 1px solid rgba(248, 245, 240, 0.24);
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(10px);
}

.experience-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.4s ease, opacity 0.4s ease, stroke-width 0.4s ease;
}

.experience-card h3 {
  color: #fff;
  text-shadow: 0 1px 0 rgba(0,0,0,0.95), 0 4px 14px rgba(0,0,0,0.72);
  font-size: var(--type-card-heading);
  line-height: 1.02;
  margin-top: 112px;
  margin-bottom: 10px;
}

.experience-card p {
  max-width: 20ch;
  min-height: 5.2em;
  text-shadow: 0 1px 0 rgba(0,0,0,0.95), 0 3px 10px rgba(0,0,0,0.65);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.98rem;
  line-height: 1.62;
  opacity: 0.86;
}

.experience-story {
  max-width: 24ch;
  min-height: 4.8em;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 0 rgba(0,0,0,0.95), 0 2px 8px rgba(0,0,0,0.62);
  font-size: 0.82rem;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(10px);
}

.experience-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: auto;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0,0,0,0.95), 0 2px 8px rgba(0,0,0,0.7);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.experience-link::after {
  content: '→';
  font-size: 0.8rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.experience-link::before {
  content: '';
  position: absolute;
  left: 0;
  right: 1.1rem;
  bottom: -4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
}

.experience-card:hover h3,
.experience-card:focus-visible h3,
.experience-card:hover p,
.experience-card:focus-visible p {
  transform: translateY(-4px);
}

.experience-card:hover p,
.experience-card:focus-visible p {
  opacity: 1;
}

.experience-card:hover .experience-story,
.experience-card:focus-visible .experience-story {
  opacity: 1;
  transform: translateY(0);
}

.experience-card:hover .experience-icon,
.experience-card:focus-visible .experience-icon {
  transform: scale(1.05);
  border-color: rgba(248, 245, 240, 0.34);
  background: rgba(13, 12, 10, 0.22);
}

.experience-card:hover .experience-icon svg,
.experience-card:focus-visible .experience-icon svg {
  opacity: 1;
  transform: scale(1.03);
  stroke-width: 1.9;
}

.experience-card:hover .experience-link,
.experience-card:focus-visible .experience-link {
  transform: translateX(4px);
}

.experience-card:hover .experience-link::after,
.experience-card:focus-visible .experience-link::after {
  opacity: 1;
  transform: translateX(0);
}

.experience-card:hover .experience-link::before,
.experience-card:focus-visible .experience-link::before {
  transform: scaleX(1);
}

#italian-table,
#fire-smoke,
#mediterranean-feast,
#roasts-done-right,
#canape-party,
#bespoke {
  grid-column: auto;
  margin-top: 0;
  padding: 22px;
}

.experience-card-bespoke {
  grid-column: auto;
  width: 100%;
  justify-self: stretch;
  padding: 22px;
  margin-top: 0;
  box-shadow: 0 18px 44px rgba(16, 12, 8, 0.09);
}

.showcase-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

.showcase-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.86) contrast(0.95) brightness(0.9);
}

.showcase-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8, 7, 5, 0.82), rgba(8, 7, 5, 0.22)),
    linear-gradient(90deg, rgba(8, 7, 5, 0.3), transparent 45%);
}

.showcase-hero--residence {
  min-height: clamp(360px, 52vw, 620px);
}

.showcase-hero--residence .showcase-hero-content {
  max-width: 980px;
  padding-bottom: 52px;
}

.showcase-hero-bg--residence {
  background-size: cover;
  filter: saturate(0.94) brightness(0.95) contrast(0.99);
}

.showcase-hero--residence .showcase-hero-overlay {
  background:
    linear-gradient(to top, rgba(8, 7, 5, 0.68), rgba(8, 7, 5, 0.14)),
    linear-gradient(90deg, rgba(8, 7, 5, 0.24), transparent 48%);
}

.showcase-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 920px;
  padding: 0 52px 92px;
  color: var(--white);
}

.showcase-hero-content h1 {
  font-size: var(--type-hero);
  line-height: 0.94;
  font-weight: 300;
  margin-bottom: 14px;
}

.showcase-hero-content p {
  max-width: 32ch;
  color: rgba(248, 245, 240, 0.86);
  font-size: var(--type-body);
  line-height: var(--leading-body);
}

.showcase-hero-subline {
  display: block;
  margin-bottom: 16px;
  color: rgba(248, 245, 240, 0.82);
  font-size: 1.05rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.footer {
  background: var(--black);
  color: rgba(248, 245, 240, 0.72);
  padding: 36px 52px 26px;
}

.footer-shell {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 1fr;
  gap: 40px;
}

.footer-brand {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.footer p,
.footer li,
.footer a {
  font-size: 0.9rem;
  line-height: 1.72;
  color: rgba(248, 245, 240, 0.72);
  text-decoration: none;
}

.footer h4 {
  margin-bottom: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248, 245, 240, 0.42);
  font-family: var(--font-body);
}

.showcase-gallery {
  padding-top: 10px;
  padding-bottom: 14px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom {
  max-width: 1200px;
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(248, 245, 240, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.legal-hero {
  padding: 44px 52px 18px;
}

.legal-hero-shell,
.legal-shell {
  max-width: 920px;
  margin: 0 auto;
}

.legal-hero h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.98;
  margin-bottom: 12px;
}

.legal-hero p {
  max-width: 44ch;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: var(--leading-body);
}

.legal-page {
  padding-top: 24px;
  padding-bottom: 88px;
}

.legal-shell {
  display: grid;
  gap: 22px;
}

.legal-card:nth-child(even) {
  margin-left: 34px;
}

.legal-card {
  padding: 28px 30px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,239,232,0.92));
  box-shadow: var(--shadow);
}

.legal-card h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.35rem);
  line-height: 1.02;
  margin-bottom: 14px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: var(--leading-body);
}

.legal-card p + p,
.legal-card ul + p {
  margin-top: 12px;
}

.legal-card ul {
  padding-left: 20px;
  margin: 0;
}

.legal-card li + li {
  margin-top: 8px;
}

.legal-note {
  font-size: 0.92rem;
}

@media (max-width: 960px) {
  .site-nav {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-content,
  .about-hero-content,
  .experiences-hero-content,
  .section,
  .legal-hero,
  .home-cta-band,
  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .experience-grid,
  .experience-form-shell,
  .footer-shell,
  .service-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .experience-form-shell {
    gap: 36px;
  }

  .experience-card {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  #italian-table,
  #fire-smoke,
  #mediterranean-feast,
  #roasts-done-right,
  #canape-party,
  #bespoke {
    grid-column: auto;
    margin-top: 0;
    padding: 22px;
  }

  .experience-card-bespoke {
    grid-column: auto;
    width: 100%;
  }

  .home-cta-band .service-path-card-featured {
    grid-column: 1 / -1;
    min-height: 272px;
  }

  .hero,
  .showcase-hero {
    min-height: 88svh;
  }

  .showcase-hero--residence {
    min-height: clamp(320px, 50vw, 520px);
  }

  .showcase-hero-content {
    padding-left: 24px;
    padding-right: 24px;
  }

  .booking-form {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 820px) {
  .site-nav {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "left brand"
      "actions actions";
    gap: 12px 14px;
    align-items: center;
  }

  .nav-toggle,
  .nav-back {
    grid-area: left;
  }

  .nav-brand {
    grid-area: brand;
    justify-self: start;
    min-width: 0;
  }

  .nav-actions {
    grid-area: actions;
    justify-self: stretch;
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .nav-actions::-webkit-scrollbar {
    display: none;
  }

  .nav-cta {
    flex: 0 0 auto;
  }

  .nav-spacer {
    height: 126px;
  }

  .btn-row {
    gap: 12px;
  }

  .hero .btn-row,
  .experiences-hero .btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero .btn,
  .experiences-hero .btn {
    width: 100%;
  }

  .hero p,
  .about-hero p,
  .experiences-hero p,
  .showcase-hero-content p {
    max-width: 28ch;
  }

  .experience-form-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-cta-band .service-path-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-cta-band .service-path-card-featured {
    grid-column: auto;
    min-height: 250px;
    padding: 28px 24px 26px;
  }

  .form-meta {
    margin-top: 22px;
  }
}

@media (max-width: 640px) {
  .site-nav {
    gap: 12px 12px;
    padding-top: max(18px, env(safe-area-inset-top));
    padding-bottom: 18px;
  }

  .nav-wordmark {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .nav-actions {
    gap: 6px;
  }

  .nav-back {
    gap: 8px;
    font-size: 0.48rem;
    letter-spacing: 0.16em;
  }

  .nav-cta {
    min-height: 32px;
    padding: 0 11px;
    font-size: 0.48rem;
    letter-spacing: 0.16em;
  }

  .nav-spacer {
    height: 134px;
  }

  .hero-content,
  .about-hero-content,
  .experiences-hero-content,
  .section,
  .home-cta-band,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-content,
  .about-hero-content,
  .experiences-hero-content {
    padding-bottom: 48px;
    max-width: 100%;
  }

  .showcase-hero-content {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 48px;
    max-width: 100%;
  }

  .section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .legal-hero {
    padding-top: 32px;
  }

  .home-cta-band {
    padding-top: 52px;
    padding-bottom: 64px;
  }

  .experience-card {
    aspect-ratio: 1 / 1;
    min-height: 0;
    border-radius: 22px;
    padding: 18px;
  }

  #italian-table,
  #fire-smoke,
  #mediterranean-feast,
  #roasts-done-right,
  #canape-party,
  #bespoke {
    grid-column: auto;
    margin-top: 0;
    padding: 18px;
  }

  .experience-card-bespoke {
    grid-column: auto;
    width: 100%;
    padding: 18px;
  }

  .experience-icon {
    top: 52px;
    left: 18px;
    width: 52px;
    height: 52px;
    margin-bottom: 0;
  }

  .experience-icon svg {
    width: 28px;
    height: 28px;
  }

  .experience-kicker {
    top: 18px;
    left: 18px;
  }

  .experience-card h3 {
    margin-top: 104px;
  }

  .experience-card p {
    min-height: 4.8em;
  }

  .experience-story {
    min-height: 4.4em;
  }

  .experience-link {
    margin-top: 14px;
  }

  .showcase-hero-content h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .showcase-hero-subline {
    font-size: 1rem;
  }

  .form-intro,
  .form-aside p,
  .section-note,
  .legal-hero p,
  .legal-card p,
  .legal-card li {
    line-height: 1.65;
  }

  .legal-card {
    padding: 24px 22px;
    border-radius: 24px;
  }

  .booking-form {
    padding: 24px 20px 20px;
    border-radius: 24px;
  }

  .form-submit {
    width: 100%;
  }

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

}

@media (max-width: 520px) {
  .site-nav {
    gap: 10px 10px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-brand {
    gap: 8px;
  }

  .nav-wordmark {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .nav-back {
    min-height: 32px;
    font-size: 0.44rem;
    letter-spacing: 0.12em;
  }

  .nav-spacer {
    height: 130px;
  }

  .nav-back::before {
    font-size: 0.8rem;
  }

  .nav-cta {
    min-height: 32px;
    padding: 0 9px;
    font-size: 0.44rem;
    letter-spacing: 0.12em;
  }

  .hero-content,
  .about-hero-content,
  .experiences-hero-content,
  .showcase-hero-content,
  .section,
  .home-cta-band,
  .footer,
  .legal-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero,
  .showcase-hero {
    min-height: 82svh;
  }

  .showcase-hero--residence {
    min-height: 42svh;
  }

  .hero h1,
  .about-hero h1,
  .experiences-hero h1 {
    font-size: clamp(2.8rem, 16vw, 4.8rem);
  }

  .hero p,
  .about-hero p,
  .experiences-hero p,
  .showcase-hero-content p {
    max-width: 24ch;
    font-size: 0.96rem;
  }

  .about-story-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px 20px 26px;
    border-radius: 26px;
  }

  .legal-card:nth-child(even) {
    margin-top: 0;
    margin-left: 0;
  }

  .about-story-intro {
    max-width: none;
    padding-top: 0;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .footer {
    padding-top: 30px;
    padding-bottom: 22px;
  }

  .footer-shell {
    gap: 26px;
  }
}

.page-residence .residence-positioning-shell {
  max-width: 1020px;
  border-radius: 28px;
  padding: 38px 46px;
  border: 1px solid rgba(38, 30, 20, 0.10);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(248, 243, 236, 0.72));
  box-shadow: 0 14px 34px rgba(33, 26, 17, 0.10);
}

/* In Residence story block */
.page-residence .residence-story {
  padding-top: 34px;
}

.page-residence .residence-story-intro {
  max-width: 760px;
  margin-bottom: 20px;
  text-align: center;
}

.page-residence .residence-story-intro p {
  margin: 0 auto;
  max-width: 46ch;
  color: rgba(33, 26, 17, 0.82);
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  line-height: 1.62;
}

.page-residence .residence-story-intro p + p {
  margin-top: 10px;
}

@media (max-width: 640px) {
  .page-residence .residence-story {
    padding-top: 20px;
  }

  .page-residence .residence-story-intro p {
    font-size: 1rem;
    line-height: 1.58;
  }
}

.page-residence {
  background: #f6f1e9;
}

.page-residence .section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.page-residence .showcase-hero-overlay {
  background:
    linear-gradient(180deg, rgba(9, 8, 7, 0.42), rgba(9, 8, 7, 0.62)),
    radial-gradient(1000px 420px at 68% 6%, rgba(183, 148, 95, 0.14), transparent 62%);
}

.page-residence .showcase-hero-subline {
  color: rgba(248, 245, 240, 0.9);
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
}

.page-residence .showcase-hero-content p {
  max-width: 36ch;
  color: rgba(248, 245, 240, 0.92);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.58;
}

.page-residence .showcase-hero .btn-row {
  gap: 0;
}

.page-residence .showcase-hero .btn-light {
  background: rgba(246, 238, 227, 0.95);
  border-color: rgba(246, 238, 227, 0.95);
  color: #1b140e;
}

.page-residence .showcase-hero .btn-light:hover {
  background: #f8f2e8;
  border-color: #f8f2e8;
}

.page-residence .residence-story {
  padding-top: 54px;
}

.page-residence .residence-story-intro {
  max-width: 980px;
  text-align: left;
}

.page-residence .residence-story-intro .residence-story-lead {
  margin: 0;
  max-width: 38ch;
  color: rgba(26, 19, 13, 0.95);
  font-size: clamp(1.28rem, 2.2vw, 1.7rem);
  line-height: 1.44;
}

.page-residence .residence-story-columns {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.page-residence .residence-story-column {
  padding-top: 14px;
  border-top: 1px solid rgba(80, 59, 35, 0.3);
}

.page-residence .residence-story-column h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.16rem, 1.5vw, 1.36rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(24, 17, 12, 0.94);
}

.page-residence .residence-story-column p {
  margin: 0;
  color: rgba(40, 30, 20, 0.84);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 28ch;
}

@media (max-width: 960px) {
  .page-residence .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .page-residence .residence-story-columns {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .page-residence .showcase-hero-content p {
    font-size: 1rem;
  }

  .page-residence .residence-story-intro .residence-story-lead {
    font-size: 1.08rem;
  }
}

/* In Residence presence boost */
.page-residence .showcase-hero-content p {
  font-weight: 500;
  color: rgba(248, 245, 240, 0.96);
}

.page-residence .residence-story-intro .residence-story-lead {
  font-weight: 500;
  color: rgba(22, 16, 11, 0.98);
}

.page-residence .residence-story-column {
  border-top: 2px solid rgba(80, 59, 35, 0.45);
}

.page-residence .residence-story-column h3 {
  font-weight: 500;
  color: rgba(20, 14, 10, 0.98);
}

.page-residence .residence-story-column p {
  font-weight: 500;
  color: rgba(34, 25, 17, 0.9);
}

/* In Residence presence boost v2 */
.page-residence .showcase-hero-content p {
  font-size: clamp(1.1rem, 1.6vw, 1.28rem);
  font-weight: 560;
  letter-spacing: 0.005em;
  line-height: 1.62;
}

.page-residence .residence-story-intro .residence-story-lead {
  font-size: clamp(1.34rem, 2.3vw, 1.82rem);
  font-weight: 560;
  line-height: 1.4;
  max-width: 34ch;
}

.page-residence .residence-story-columns {
  margin-top: 28px;
  gap: 24px;
}

.page-residence .residence-story-column {
  padding-top: 16px;
  border-top: 2px solid rgba(76, 55, 31, 0.55);
}

.page-residence .residence-story-column h3 {
  margin-bottom: 10px;
  font-size: clamp(1.22rem, 1.55vw, 1.44rem);
  letter-spacing: 0.012em;
}

.page-residence .residence-story-column p {
  font-size: 1.02rem;
  line-height: 1.62;
  color: rgba(30, 22, 15, 0.94);
}

@media (max-width: 640px) {
  .page-residence .showcase-hero-content p {
    font-size: 1.03rem;
    line-height: 1.58;
  }

  .page-residence .residence-story-intro .residence-story-lead {
    font-size: 1.14rem;
    line-height: 1.44;
  }

  .page-residence .residence-story-column p {
    font-size: 0.98rem;
  }
}

/* In Residence negative section */
.page-residence .residence-negative {
  padding-top: 38px;
  padding-bottom: 38px;
}

.page-residence .residence-negative-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 34px 34px 30px;
  border-radius: 20px;
  background: #12100d;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 44px rgba(8, 7, 6, 0.34);
}

.page-residence .residence-negative-lead {
  margin: 0;
  color: rgba(247, 240, 229, 0.96);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  line-height: 1.18;
}

.page-residence .residence-negative-copy {
  margin: 12px 0 0;
  max-width: 54ch;
  color: rgba(241, 232, 218, 0.88);
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .page-residence .residence-negative {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .page-residence .residence-negative-shell {
    padding: 24px 20px 22px;
    border-radius: 16px;
  }

  .page-residence .residence-negative-lead {
    font-size: clamp(1.2rem, 7vw, 1.5rem);
  }
}

/* In Residence negative section full-width */
.page-residence .residence-negative {
  background: #12100d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 16px 28px rgba(0, 0, 0, 0.26), inset 0 -16px 28px rgba(0, 0, 0, 0.24);
  padding-top: 64px;
  padding-bottom: 64px;
}

.page-residence .residence-negative-shell {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
}

@media (max-width: 640px) {
  .page-residence .residence-negative {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .page-residence .residence-negative-shell {
    padding: 0;
  }
}

/* In Residence three-part duotone emphasis */
.page-residence .residence-story-columns {
  gap: 26px;
}

.page-residence .residence-story-column h3,
.page-residence .residence-story-column p {
  font-weight: 700;
  background: linear-gradient(180deg, #ffffff 0%, #ececec 18%, #2a2a2a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-residence .residence-story-column h3 {
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  letter-spacing: 0.01em;
}

.page-residence .residence-story-column p {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.5;
}

@media (max-width: 640px) {
  .page-residence .residence-story-column h3 {
    font-size: clamp(1.25rem, 5.8vw, 1.5rem);
  }

  .page-residence .residence-story-column p {
    font-size: 1rem;
  }
}

/* In Residence three-part readability fix */
.page-residence .residence-story-column h3,
.page-residence .residence-story-column p {
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  color: #17110c;
}

.page-residence .residence-story-column h3 {
  font-weight: 600;
}

.page-residence .residence-story-column p {
  font-weight: 500;
  color: rgba(28, 21, 14, 0.9);
}

/* Placement page black/white bands */
.page-placement .placement-band {
  padding-top: 52px;
  padding-bottom: 52px;
}

.page-placement .placement-band-shell {
  max-width: 980px;
  margin: 0 auto;
}

.page-placement .placement-band-shell p {
  margin: 0;
  max-width: 42ch;
  font-family: var(--font-display);
  font-size: clamp(1.42rem, 2.6vw, 2.06rem);
  line-height: 1.18;
  letter-spacing: 0.01em;
}

.page-placement .placement-band--dark {
  background: #11100d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-placement .placement-band--dark .placement-band-shell p {
  color: rgba(247, 241, 232, 0.96);
}

.page-placement .placement-band--light {
  background: #f7f3ec;
  border-bottom: 1px solid rgba(20, 14, 9, 0.1);
}

.page-placement .placement-band--light .placement-band-shell p {
  color: rgba(25, 18, 12, 0.94);
}

@media (max-width: 640px) {
  .page-placement .placement-band {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .page-placement .placement-band-shell p {
    font-size: clamp(1.16rem, 6.2vw, 1.44rem);
    line-height: 1.24;
  }
}

/* In Residence discreet pricing note */
.page-residence .residence-pricing-note {
  padding-top: 16px;
  padding-bottom: 10px;
}

.page-residence .residence-pricing-note .residence-positioning-shell {
  max-width: 980px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.page-residence .residence-pricing-note p {
  margin: 0;
  color: rgba(44, 33, 22, 0.62);
  font-size: 0.84rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* In Residence width/readability pass */
.page-residence .residence-story-intro {
  max-width: min(1280px, 92vw);
}

.page-residence .residence-story-intro .residence-story-lead {
  max-width: 44ch;
}

.page-residence .residence-story-columns {
  gap: 32px;
}

.page-residence .residence-story-column p {
  max-width: none;
}

@media (max-width: 1100px) {
  .page-residence .residence-story-intro {
    max-width: min(1080px, 94vw);
  }

  .page-residence .residence-story-columns {
    gap: 22px;
  }
}

@media (max-width: 960px) {
  .page-residence .residence-story-columns {
    gap: 14px;
  }
}

/* Placement intro staggered layout */
.page-placement .placement-band--light .placement-band-shell {
  max-width: 1120px;
  display: grid;
  gap: 12px;
}

.page-placement .placement-band--light .placement-intro-line {
  max-width: 56ch;
}

.page-placement .placement-band--light .placement-intro-line--offset {
  justify-self: end;
}

@media (max-width: 900px) {
  .page-placement .placement-band--light .placement-intro-line--offset {
    justify-self: start;
  }
}

/* Placement intro readability lines */
.page-placement .placement-band--light .placement-intro-line {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(33, 24, 16, 0.18);
}

/* Homepage reassurance block: subtle spacing tighten */
.home-meaning {
  padding-top: 26px;
  padding-bottom: 38px;
}

.home-meaning-shell h2 {
  margin-bottom: 12px;
}

.home-meaning-shell p + p {
  margin-top: 8px;
}

/* Homepage differentiator line under service cards */
.home-cta-note {
  margin-top: 24px;
  max-width: 58ch;
}

/* Homepage hero note */
.hero .hero-note {
  margin: 12px 0 0;
  color: rgba(245, 239, 231, 0.82);
  font-size: clamp(0.94rem, 1.2vw, 1.03rem);
  line-height: 1.45;
  max-width: 40ch;
}

/* Homepage services intro line */
.home-cta-band .section-intro {
  margin: 0 auto 20px;
  max-width: 34ch;
  text-align: center;
  color: rgba(248, 245, 240, 0.72);
  font-size: 0.98rem;
  line-height: 1.45;
}

/* Homepage authority proof line */
.home-trust-shell .home-proof {
  margin-top: 14px;
  color: rgba(48, 36, 24, 0.66);
  font-size: 0.92rem;
  line-height: 1.45;
}

/* Homepage testimonial gallery */
.home-testimonials {
  background: #f2ede5;
  padding-top: 46px;
  padding-bottom: 46px;
}

.home-testimonials-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}

.home-testimonials-label {
  margin: 0 0 16px;
  color: rgba(50, 37, 25, 0.62);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.home-testimonial {
  margin: 0;
}

.home-testimonial blockquote {
  margin: 0;
  color: rgba(30, 22, 15, 0.94);
  font-family: var(--font-display);
  font-size: clamp(1.16rem, 1.9vw, 1.45rem);
  line-height: 1.32;
}

.home-testimonial figcaption {
  margin-top: 10px;
  color: rgba(50, 37, 25, 0.64);
  font-size: 0.86rem;
  letter-spacing: 0.03em;
}

@media (max-width: 860px) {
  .home-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-testimonials {
    padding-top: 36px;
    padding-bottom: 36px;
  }
}

/* Experiences pre-booking quote */
.experience-quote {
  padding-top: 26px;
  padding-bottom: 18px;
}

.experience-quote-shell {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.experience-quote-shell p {
  margin: 0;
  color: rgba(30, 22, 15, 0.9);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.1vw, 1.62rem);
  line-height: 1.3;
}

/* In Residence trust quote */
.page-residence .residence-quote {
  padding-top: 18px;
  padding-bottom: 12px;
}

.page-residence .residence-quote-shell {
  max-width: 980px;
  margin: 0 auto;
}

.page-residence .residence-quote-shell p {
  margin: 0;
  color: rgba(28, 20, 13, 0.88);
  font-family: var(--font-display);
  font-size: clamp(1.24rem, 2vw, 1.54rem);
  line-height: 1.32;
}

/* In Residence pricing copy readability */
.page-residence .residence-pricing-note p {
  color: rgba(44, 33, 22, 0.82);
  font-size: 0.98rem;
  line-height: 1.58;
  letter-spacing: 0;
  text-transform: none;
  max-width: 72ch;
}

/* Placement dark band stagger + white contrast lines */
.page-placement .placement-band--dark .placement-band-shell {
  max-width: 1120px;
  display: grid;
  gap: 12px;
}

.page-placement .placement-band--dark .placement-dark-line {
  max-width: 56ch;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.page-placement .placement-band--dark .placement-dark-line--offset {
  justify-self: end;
}

@media (max-width: 900px) {
  .page-placement .placement-band--dark .placement-dark-line--offset {
    justify-self: start;
  }
}
