:root {
  --ink: #211c29;
  --ink-soft: #433a49;
  --plum: #34273d;
  --plum-2: #4d3a56;
  --slate: #7e93a6;
  --slate-deep: #5d7388;
  --mauve: #9c899b;
  --gold: #c5a76f;
  --gold-deep: #8a672f;
  --ivory: #fbf8f2;
  --paper: #fffdf9;
  --mist: #eef1f2;
  --rose-mist: #f2ecef;
  --white: #ffffff;
  --muted: #6d6571;
  --line: rgba(52, 39, 61, 0.14);
  --line-strong: rgba(52, 39, 61, 0.24);
  --shadow-sm: 0 12px 30px rgba(34, 27, 41, 0.08);
  --shadow-md: 0 24px 70px rgba(34, 27, 41, 0.13);
  --shadow-lg: 0 38px 100px rgba(34, 27, 41, 0.18);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --radius-xl: 48px;
  --container: 1220px;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ivory);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 8%, rgba(126, 147, 166, 0.13), transparent 31rem),
    radial-gradient(circle at 10% 33%, rgba(197, 167, 111, 0.10), transparent 26rem),
    var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

a:hover {
  text-decoration-thickness: 2px;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.06;
}

h1 {
  font-size: clamp(3.25rem, 7vw, 6.8rem);
}

h2 {
  font-size: clamp(2.35rem, 4.5vw, 4.7rem);
}

h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

::selection {
  color: var(--white);
  background: var(--plum-2);
}

:focus-visible {
  outline: 3px solid rgba(197, 167, 111, 0.9);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--plum);
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

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

.section {
  padding-block: clamp(4.5rem, 9vw, 8.5rem);
}

.section-tight {
  padding-block: clamp(3.25rem, 6vw, 5.75rem);
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.25rem;
  color: var(--gold-deep);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-kicker::before,
.eyebrow::before {
  width: 1.9rem;
  height: 1px;
  content: "";
  background: currentColor;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 1.2rem;
}

.section-intro {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
}

.label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.button-primary {
  color: var(--white);
  background: var(--plum);
  box-shadow: 0 12px 26px rgba(52, 39, 61, 0.2);
}

.button-primary:hover {
  background: var(--plum-2);
  box-shadow: 0 16px 32px rgba(52, 39, 61, 0.25);
}

.button-light {
  color: var(--plum);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(28, 22, 33, 0.13);
}

.button-light:hover {
  box-shadow: 0 17px 36px rgba(28, 22, 33, 0.18);
}

.button-outline {
  color: var(--plum);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.5);
}

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

.button-ghost-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.button-ghost-light:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.14);
}

.icon {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-chrome {
  position: sticky;
  z-index: 1000;
  top: 0;
}

.utility-bar {
  color: rgba(255, 255, 255, 0.9);
  background: var(--plum);
  font-size: 0.79rem;
}

.utility-inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.utility-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.utility-status::before {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  content: "";
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(197, 167, 111, 0.12);
}

.utility-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.utility-links a {
  text-decoration: none;
}

.utility-links a:hover {
  color: var(--white);
}

.site-header {
  border-bottom: 1px solid rgba(52, 39, 61, 0.10);
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  min-height: 82px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.4rem;
}

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

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: 62px;
  height: 32px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 0.06rem;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.primary-nav {
  justify-self: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  display: block;
  padding: 0.75rem 0.85rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 750;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--plum);
  background: rgba(126, 147, 166, 0.12);
  text-decoration: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--plum);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-toggle-lines::before {
  top: -6px;
}

.menu-toggle-lines::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.8rem, 8vw, 7.4rem) clamp(3.5rem, 7vw, 6rem);
}

.hero::before {
  position: absolute;
  top: 6rem;
  left: -12rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(126, 147, 166, 0.18);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(370px, 0.93fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 880px;
  margin-bottom: 1.45rem;
}

.hero-copy h1 em {
  color: var(--slate-deep);
  font-style: italic;
  font-weight: 400;
}

.hero-copy .lead {
  max-width: 690px;
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 2vw, 1.32rem);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.35rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-note .icon-wrap {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--plum);
  background: rgba(197, 167, 111, 0.17);
}

.hero-art {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(155deg, rgba(255,255,255,0.35), transparent 42%),
    linear-gradient(145deg, #e7ecec 0%, #cbd5dc 43%, #a892a2 100%);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.hero-art::before,
.hero-art::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  content: "";
}

.hero-art::before {
  top: -14%;
  right: -24%;
  width: 72%;
  aspect-ratio: 1;
}

.hero-art::after {
  right: -9%;
  bottom: -17%;
  width: 82%;
  aspect-ratio: 1;
  box-shadow: 0 0 0 38px rgba(255, 255, 255, 0.07), 0 0 0 92px rgba(255, 255, 255, 0.045);
}

.hero-mark-large {
  position: absolute;
  z-index: -1;
  top: 11%;
  left: 8%;
  width: 83%;
  filter: brightness(0) invert(1);
  opacity: 0.18;
}

.water-drop {
  position: absolute;
  z-index: -1;
  top: 22%;
  right: 18%;
  width: 44%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 68% 32% 66% 34% / 67% 33% 67% 33%;
  background: linear-gradient(135deg, rgba(255,255,255,.62), rgba(255,255,255,.10));
  box-shadow: inset 18px 18px 60px rgba(255,255,255,.25), 0 38px 90px rgba(52,39,61,.22);
  transform: rotate(45deg);
}

.hero-quote {
  position: absolute;
  top: 2rem;
  right: 2rem;
  max-width: 240px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 20px;
  color: rgba(33, 28, 41, 0.82);
  background: rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(14px);
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.35;
}

.hero-quote span {
  display: block;
  margin-top: 0.55rem;
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.booking-card {
  position: absolute;
  z-index: 2;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 24px;
  color: var(--white);
  background: rgba(52, 39, 61, 0.88);
  box-shadow: 0 24px 60px rgba(52, 39, 61, 0.26);
  backdrop-filter: blur(16px);
}

.booking-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2rem;
}

.booking-card h2,
.booking-card h3 {
  margin-bottom: 0.5rem;
  font-family: var(--sans);
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
}

.booking-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
}

.booking-card .phone-pill {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.9rem;
  border-radius: 999px;
  color: var(--plum);
  background: var(--white);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 850;
}

.booking-card .phone-pill:hover {
  text-decoration: none;
}

.info-strip {
  position: relative;
  z-index: 5;
  margin-top: -0.9rem;
}

.info-strip-inner {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.93);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.info-strip-item {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 0.95rem;
  padding: 1.3rem 1.5rem;
}

.info-strip-item + .info-strip-item {
  border-left: 1px solid var(--line);
}

.info-strip-icon,
.feature-icon,
.step-icon,
.contact-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: var(--plum);
  background: rgba(126, 147, 166, 0.13);
}

.info-strip-item strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.98rem;
}

.info-strip-item span,
.info-strip-item a {
  color: var(--muted);
  font-size: 0.87rem;
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-header-row .section-heading {
  margin-bottom: 0;
}

.steps-grid,
.feature-grid,
.values-grid,
.support-grid,
.contact-grid,
.project-grid {
  display: grid;
  gap: 1rem;
}

.steps-grid {
  grid-template-columns: repeat(3, 1fr);
  counter-reset: visit-step;
}

.step-card {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 249, 0.78);
  box-shadow: 0 10px 26px rgba(34, 27, 41, 0.04);
  counter-increment: visit-step;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(52, 39, 61, 0.22);
  box-shadow: var(--shadow-sm);
}

.step-card::after {
  position: absolute;
  right: 1rem;
  bottom: -2.2rem;
  color: rgba(126, 147, 166, 0.11);
  content: "0" counter(visit-step);
  font-family: var(--serif);
  font-size: 8rem;
  line-height: 1;
}

.step-card .step-icon {
  margin-bottom: 2rem;
}

.step-card h3 {
  margin-bottom: 0.65rem;
  font-family: var(--sans);
  font-size: 1.14rem;
  font-weight: 800;
  letter-spacing: 0;
}

.step-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 0.95rem;
}

.care-section {
  position: relative;
}

.care-panel {
  display: grid;
  overflow: hidden;
  grid-template-columns: 0.9fr 1.1fr;
  border: 1px solid rgba(52, 39, 61, 0.10);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-md);
}

.care-visual {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  background:
    radial-gradient(circle at 33% 26%, rgba(255,255,255,.55), transparent 18%),
    linear-gradient(155deg, #a991a1 0%, #748ca1 55%, #374555 100%);
}

.care-visual::before {
  position: absolute;
  top: 13%;
  left: 16%;
  width: 68%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 34px rgba(255,255,255,.07), 0 0 0 78px rgba(255,255,255,.04);
}

.care-visual-mark {
  position: absolute;
  top: 18%;
  left: 18%;
  width: 64%;
  filter: brightness(0) invert(1);
  opacity: 0.26;
}

.care-quote {
  position: absolute;
  right: 1.6rem;
  bottom: 1.6rem;
  left: 1.6rem;
  padding: 1.6rem;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 22px;
  color: var(--white);
  background: rgba(33,28,41,.43);
  backdrop-filter: blur(15px);
}

.care-quote blockquote {
  margin-bottom: 0.85rem;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  line-height: 1.16;
}

.care-quote cite {
  color: rgba(255,255,255,.7);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.care-copy h2 {
  margin-bottom: 1.2rem;
}

.care-copy > p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.care-list {
  display: grid;
  gap: 1.1rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.care-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
}

.care-list .check {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--plum);
  background: rgba(197, 167, 111, 0.22);
}

.care-list strong {
  display: block;
  margin-bottom: 0.12rem;
}

.care-list span {
  color: var(--muted);
  font-size: 0.9rem;
}

.dark-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(126,147,166,.23), transparent 28rem),
    radial-gradient(circle at 10% 95%, rgba(197,167,111,.17), transparent 28rem),
    var(--plum);
}

.dark-section::after {
  position: absolute;
  top: -14rem;
  right: -12rem;
  width: 38rem;
  height: 38rem;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 58px rgba(255,255,255,.025), 0 0 0 132px rgba(255,255,255,.018);
}

.dark-section .section-kicker {
  color: var(--gold);
}

.dark-section .section-intro {
  color: rgba(255,255,255,.68);
}

.project-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3.5rem;
}

.project-card {
  min-height: 255px;
  padding: 1.6rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(12px);
}

.project-card .feature-icon {
  margin-bottom: 1.5rem;
  color: var(--white);
  background: rgba(255,255,255,.10);
}

.project-card h3 {
  margin-bottom: 0.65rem;
  font-family: var(--sans);
  font-size: 1.07rem;
  font-weight: 800;
  letter-spacing: 0;
}

.project-card p {
  color: rgba(255,255,255,.67);
  font-size: 0.92rem;
}

.dark-cta-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}

.dark-cta-row p {
  max-width: 650px;
  color: rgba(255,255,255,.72);
}

.support-band {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-md);
}

.support-copy {
  padding: clamp(2.2rem, 5vw, 5rem);
}

.support-copy h2 {
  margin-bottom: 1.15rem;
}

.support-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.07rem;
}

.support-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin: 2rem 0;
}

.mini-price {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--ivory);
}

.mini-price strong {
  display: block;
  margin-bottom: 0.15rem;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
}

.mini-price span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.25;
}

.support-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: linear-gradient(155deg, #edf0f1 0%, #d7cbd3 100%);
}

.support-visual::before,
.support-visual::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.support-visual::before {
  top: 9%;
  left: 12%;
  width: 73%;
  aspect-ratio: 1;
  border: 1px solid rgba(52,39,61,.16);
  box-shadow: 0 0 0 34px rgba(255,255,255,.22), 0 0 0 76px rgba(255,255,255,.14);
}

.support-visual::after {
  right: -9%;
  bottom: -14%;
  width: 54%;
  aspect-ratio: 1;
  background: rgba(126,147,166,.28);
  filter: blur(1px);
}

.support-visual-mark {
  position: absolute;
  top: 18%;
  left: 15%;
  width: 70%;
  opacity: 0.58;
}

.support-visual-card {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  padding: 1.4rem;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 20px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(15px);
}

.support-visual-card strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.support-visual-card span {
  color: var(--muted);
  font-size: 0.85rem;
}

.faq-list {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  padding: 1.35rem 3.2rem 1.35rem 0;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

summary::before,
summary::after {
  position: absolute;
  top: 50%;
  right: 0.6rem;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  content: "";
  background: var(--plum);
  transition: transform 180ms ease;
}

summary::after {
  transform: rotate(90deg);
}

details[open] summary::after {
  transform: rotate(0deg);
}

.details-body {
  max-width: 760px;
  padding: 0 3rem 1.4rem 0;
  color: var(--muted);
}

.site-footer {
  color: rgba(255,255,255,.82);
  background: #251d2c;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: clamp(2.2rem, 6vw, 6rem);
  padding-block: 4.8rem 3.7rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
  color: var(--white);
  text-decoration: none;
}

.footer-brand img {
  width: 72px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand strong {
  max-width: 230px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.05;
}

.footer-about {
  max-width: 500px;
  color: rgba(255,255,255,.62);
  font-size: 0.92rem;
}

.footer-column h2,
.footer-column h3 {
  margin-bottom: 1rem;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list a {
  color: rgba(255,255,255,.68);
  text-decoration: none;
  font-size: 0.9rem;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.35rem;
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.48);
  font-size: 0.76rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1rem;
}

.footer-bottom a {
  text-decoration: none;
}

.mobile-action-bar {
  display: none;
}

/* Interior pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  top: -12rem;
  right: -9rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(126,147,166,.18);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 48px rgba(126,147,166,.035), 0 0 0 110px rgba(126,147,166,.022);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 1.2rem;
  font-size: clamp(3.2rem, 6vw, 6rem);
}

.page-hero .lead {
  max-width: 700px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.25rem);
}

.page-hero-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 2rem;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 5%, rgba(197,167,111,.22), transparent 18rem),
    linear-gradient(145deg, var(--plum), #5d5063);
  box-shadow: var(--shadow-md);
}

.page-hero-card::after {
  position: absolute;
  right: -17%;
  bottom: -28%;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 34px rgba(255,255,255,.04), 0 0 0 78px rgba(255,255,255,.025);
}

.page-hero-card .label {
  color: var(--gold);
}

.page-hero-card h2,
.page-hero-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.page-hero-card p {
  position: relative;
  z-index: 1;
  max-width: 460px;
  color: rgba(255,255,255,.7);
}

.page-hero-card .button-row {
  position: relative;
  z-index: 1;
  margin-top: 1.5rem;
}

.page-hero-mark {
  position: absolute;
  right: -4%;
  bottom: 6%;
  width: 52%;
  filter: brightness(0) invert(1);
  opacity: 0.12;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(2.6rem, 7vw, 7rem);
  align-items: start;
}

.prose h2 {
  margin-bottom: 1.2rem;
}

.prose h3 {
  margin-top: 2.3rem;
  margin-bottom: 0.75rem;
  font-family: var(--sans);
  font-size: 1.18rem;
  font-weight: 850;
  letter-spacing: 0;
}

.prose p,
.prose li {
  color: var(--muted);
  font-size: 1.02rem;
}

.prose a {
  color: var(--plum);
  font-weight: 750;
}

.sticky-card {
  position: sticky;
  top: 140px;
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.sticky-card h2,
.sticky-card h3 {
  margin-bottom: 0.7rem;
  font-family: var(--sans);
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: 0;
}

.sticky-card p {
  color: var(--muted);
  font-size: 0.91rem;
}

.sticky-card .button {
  width: 100%;
}

.meta-list {
  display: grid;
  gap: 1rem;
  margin: 1.4rem 0;
  padding: 0;
  list-style: none;
}

.meta-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
}

.meta-list .contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.meta-list strong {
  display: block;
  margin-bottom: 0.1rem;
  font-size: 0.9rem;
}

.meta-list span,
.meta-list a {
  color: var(--muted);
  font-size: 0.86rem;
}

.notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  margin: 1.6rem 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(197,167,111,.35);
  border-radius: 16px;
  background: rgba(197,167,111,.11);
}

.notice strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.91rem;
}

.notice p {
  color: var(--muted);
  font-size: 0.86rem;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.4rem;
}

.price-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 10px 24px rgba(34,27,41,.04);
}

.price-card.featured {
  color: var(--white);
  border-color: transparent;
  background: var(--plum);
  box-shadow: var(--shadow-md);
}

.price-card .pill {
  display: inline-flex;
  margin-bottom: 1.5rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  color: var(--plum);
  background: rgba(126,147,166,.13);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-card.featured .pill {
  color: var(--white);
  background: rgba(255,255,255,.12);
}

.price-card .amount {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--serif);
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1;
}

.price-card h3 {
  margin-bottom: 0.75rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0;
}

.price-card p {
  color: var(--muted);
  font-size: 0.88rem;
}

.price-card.featured p {
  color: rgba(255,255,255,.67);
}

.price-card .button {
  position: absolute;
  right: 1.7rem;
  bottom: 1.7rem;
  left: 1.7rem;
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin-top: 2.5rem;
}

.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 1px;
  content: "";
  background: var(--line-strong);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 1.1rem;
  padding-bottom: 2.3rem;
}

.timeline-dot {
  position: relative;
  z-index: 1;
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--plum);
  background: var(--paper);
  font-family: var(--serif);
  font-size: 0.78rem;
  box-shadow: 0 4px 12px rgba(34,27,41,.06);
}

.timeline-copy {
  padding-top: 0.3rem;
}

.timeline-copy h3 {
  margin-bottom: 0.4rem;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: 0;
}

.timeline-copy p {
  color: var(--muted);
  font-size: 0.92rem;
}

.values-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.5rem;
}

.value-card {
  min-height: 270px;
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
}

.value-card .feature-icon {
  margin-bottom: 1.4rem;
}

.value-card h3 {
  margin-bottom: 0.55rem;
  font-family: var(--sans);
  font-size: 1.04rem;
  font-weight: 850;
  letter-spacing: 0;
}

.value-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
  margin-top: 2.8rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
}

.metric {
  padding: 1.5rem;
}

.metric + .metric {
  border-left: 1px solid var(--line);
}

.metric strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.contact-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.5rem;
}

.contact-card {
  min-height: 270px;
  padding: 1.65rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 8px 20px rgba(34,27,41,.035);
}

.contact-card .contact-icon {
  margin-bottom: 1.4rem;
}

.contact-card h2,
.contact-card h3 {
  margin-bottom: 0.6rem;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: 0;
}

.contact-card p,
.contact-card address {
  margin-bottom: 1.3rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-style: normal;
}

.contact-card a:not(.button) {
  color: var(--plum);
  font-weight: 800;
}

.map-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(255,255,255,.35), rgba(255,255,255,.35)),
    repeating-linear-gradient(90deg, rgba(126,147,166,.17) 0 1px, transparent 1px 52px),
    repeating-linear-gradient(0deg, rgba(126,147,166,.14) 0 1px, transparent 1px 52px),
    linear-gradient(145deg, #e9edec, #d8dde0);
  box-shadow: var(--shadow-md);
}

.map-road {
  position: absolute;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 0 0 1px rgba(52,39,61,.07);
}

.map-road.one {
  top: 12%;
  left: -10%;
  width: 125%;
  height: 28px;
  transform: rotate(18deg);
}

.map-road.two {
  top: -15%;
  left: 42%;
  width: 30px;
  height: 140%;
  transform: rotate(-11deg);
}

.map-road.three {
  right: -8%;
  bottom: 12%;
  width: 100%;
  height: 19px;
  transform: rotate(-28deg);
}

.map-pin {
  position: absolute;
  top: 49%;
  left: 53%;
  display: flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border: 8px solid rgba(255,255,255,.9);
  border-radius: 50% 50% 50% 0;
  color: var(--white);
  background: var(--plum);
  box-shadow: var(--shadow-md);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.map-pin .icon {
  width: 24px;
  height: 24px;
  transform: rotate(45deg);
}

.map-label {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.2rem;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.map-label strong {
  display: block;
  margin-bottom: 0.1rem;
}

.map-label span {
  color: var(--muted);
  font-size: 0.83rem;
}

.quote-band {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 6rem);
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0%, rgba(197,167,111,.24), transparent 24rem),
    linear-gradient(145deg, var(--plum), #5b4c61);
  box-shadow: var(--shadow-md);
}

.quote-band::after {
  position: absolute;
  right: -7%;
  bottom: -39%;
  width: 48%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 44px rgba(255,255,255,.035), 0 0 0 94px rgba(255,255,255,.02);
}

.quote-band blockquote {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin-bottom: 1.2rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.2vw, 4.3rem);
  line-height: 1.08;
}

.quote-band cite {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.65);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--plum);
  font-weight: 850;
  text-decoration: none;
}

.inline-link:hover {
  text-decoration: underline;
}

.soft-section {
  background: rgba(238,241,242,.52);
}

.divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin-block: 2.4rem;
}

.small-note {
  color: var(--muted);
  font-size: 0.78rem;
}

@media (max-width: 1050px) {
  .header-actions .button {
    display: none;
  }

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

  .hero-art {
    min-height: 530px;
  }

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

  .support-pricing .mini-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
}

@media (max-width: 900px) {
  .site-chrome {
    position: sticky;
  }

  .utility-inner {
    justify-content: center;
  }

  .utility-links {
    display: none;
  }

  .header-inner {
    min-height: 72px;
    grid-template-columns: 1fr auto;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: fixed;
    z-index: 999;
    top: 106px;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 1.4rem 1rem 7rem;
    visibility: hidden;
    opacity: 0;
    background: rgba(251,248,242,.98);
    backdrop-filter: blur(18px);
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .primary-nav[data-open="true"] {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-list {
    display: grid;
    gap: 0.4rem;
  }

  .nav-list a {
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,.55);
    font-size: 1rem;
  }

  .hero-grid,
  .page-hero-grid,
  .care-panel,
  .support-band,
  .two-column {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 760px;
  }

  .hero-art {
    min-height: 520px;
  }

  .info-strip-inner,
  .steps-grid,
  .values-grid,
  .contact-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .info-strip-item {
    min-height: auto;
  }

  .info-strip-item + .info-strip-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .support-visual {
    min-height: 420px;
  }

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

  .footer-main > :first-child {
    grid-column: 1 / -1;
  }

  .sticky-card {
    position: relative;
    top: auto;
  }

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

  .metric:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .metric:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 1200;
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    padding: 0.55rem;
    border: 1px solid rgba(255,255,255,.65);
    border-radius: 999px;
    background: rgba(52,39,61,.93);
    box-shadow: 0 18px 50px rgba(34,27,41,.30);
    backdrop-filter: blur(16px);
  }

  .mobile-action-bar a {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 999px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.83rem;
    font-weight: 850;
  }

  .mobile-action-bar a:first-child {
    color: var(--plum);
    background: var(--white);
  }

  body {
    padding-bottom: 80px;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(calc(100% - 1.2rem), var(--container));
  }

  .utility-bar {
    font-size: 0.69rem;
  }

  .brand-mark {
    width: 52px;
  }

  .brand-copy strong {
    font-size: 0.93rem;
  }

  .brand-copy span {
    font-size: 0.58rem;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero-art {
    min-height: 440px;
    border-radius: 30px;
  }

  .hero-quote {
    top: 1rem;
    right: 1rem;
    max-width: 200px;
    font-size: 0.95rem;
  }

  .booking-card {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }

  .booking-card-top {
    display: grid;
  }

  .booking-card .phone-pill {
    justify-content: center;
  }

  .info-strip {
    margin-top: 0.7rem;
  }

  .section-header-row,
  .dark-cta-row,
  .map-label,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-header-row {
    display: flex;
  }

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

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

  .care-visual {
    min-height: 430px;
  }

  .support-copy {
    padding: 2rem 1.3rem;
  }

  .support-visual {
    min-height: 350px;
  }

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

  .footer-main > :first-child {
    grid-column: auto;
  }

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

  .metric + .metric,
  .metric:nth-child(3),
  .metric:nth-child(4) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .page-hero-card {
    min-height: 330px;
    padding: 1.5rem;
  }

  .quote-band {
    padding: 2.2rem 1.4rem;
  }

  .map-card {
    min-height: 390px;
  }

  .map-label .button {
    width: 100%;
  }
}

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

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


/* High-specificity copy loaded after Elementor Site Settings. */
:root{
  --ink: #211c29;
  --ink-soft: #433a49;
  --plum: #34273d;
  --plum-2: #4d3a56;
  --slate: #7e93a6;
  --slate-deep: #5d7388;
  --mauve: #9c899b;
  --gold: #c5a76f;
  --gold-deep: #8a672f;
  --ivory: #fbf8f2;
  --paper: #fffdf9;
  --mist: #eef1f2;
  --rose-mist: #f2ecef;
  --white: #ffffff;
  --muted: #6d6571;
  --line: rgba(52, 39, 61, 0.14);
  --line-strong: rgba(52, 39, 61, 0.24);
  --shadow-sm: 0 12px 30px rgba(34, 27, 41, 0.08);
  --shadow-md: 0 24px 70px rgba(34, 27, 41, 0.13);
  --shadow-lg: 0 38px 100px rgba(34, 27, 41, 0.18);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --radius-xl: 48px;
  --container: 1220px;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

body.nemikvah-theme *{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
  background: var(--ivory);
}

body.nemikvah-theme{
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 8%, rgba(126, 147, 166, 0.13), transparent 31rem),
    radial-gradient(circle at 10% 33%, rgba(197, 167, 111, 0.10), transparent 26rem),
    var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nemikvah-theme.menu-open{
  overflow: hidden;
}

body.nemikvah-theme img,
body.nemikvah-theme svg{
  display: block;
  max-width: 100%;
}

body.nemikvah-theme button,
body.nemikvah-theme input,
body.nemikvah-theme textarea,
body.nemikvah-theme select{
  font: inherit;
}

body.nemikvah-theme button,
body.nemikvah-theme a{
  -webkit-tap-highlight-color: transparent;
}

body.nemikvah-theme a{
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

body.nemikvah-theme a:hover{
  text-decoration-thickness: 2px;
}

body.nemikvah-theme h1,
body.nemikvah-theme h2,
body.nemikvah-theme h3,
body.nemikvah-theme h4,
body.nemikvah-theme p,
body.nemikvah-theme ul,
body.nemikvah-theme ol,
body.nemikvah-theme blockquote{
  margin-top: 0;
}

body.nemikvah-theme h1,
body.nemikvah-theme h2,
body.nemikvah-theme h3,
body.nemikvah-theme h4{
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.06;
}

body.nemikvah-theme h1{
  font-size: clamp(3.25rem, 7vw, 6.8rem);
}

body.nemikvah-theme h2{
  font-size: clamp(2.35rem, 4.5vw, 4.7rem);
}

body.nemikvah-theme h3{
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
}

body.nemikvah-theme p:last-child,
body.nemikvah-theme ul:last-child,
body.nemikvah-theme ol:last-child{
  margin-bottom: 0;
}

body.nemikvah-theme ::selection{
  color: var(--white);
  background: var(--plum-2);
}

body.nemikvah-theme :focus-visible{
  outline: 3px solid rgba(197, 167, 111, 0.9);
  outline-offset: 4px;
}

body.nemikvah-theme .skip-link{
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--plum);
  font-weight: 700;
  transition: transform 180ms ease;
}

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

body.nemikvah-theme .container{
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

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

body.nemikvah-theme .section{
  padding-block: clamp(4.5rem, 9vw, 8.5rem);
}

body.nemikvah-theme .section-tight{
  padding-block: clamp(3.25rem, 6vw, 5.75rem);
}

body.nemikvah-theme .section-kicker,
body.nemikvah-theme .eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.25rem;
  color: var(--gold-deep);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

body.nemikvah-theme .section-kicker::before,
body.nemikvah-theme .eyebrow::before{
  width: 1.9rem;
  height: 1px;
  content: "";
  background: currentColor;
}

body.nemikvah-theme .section-heading{
  max-width: 850px;
  margin-bottom: 1.2rem;
}

body.nemikvah-theme .section-intro{
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
}

body.nemikvah-theme .label{
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

body.nemikvah-theme .button-row{
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

body.nemikvah-theme .button{
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

body.nemikvah-theme .button:hover{
  transform: translateY(-2px);
  text-decoration: none;
}

body.nemikvah-theme .button-primary{
  color: var(--white);
  background: var(--plum);
  box-shadow: 0 12px 26px rgba(52, 39, 61, 0.2);
}

body.nemikvah-theme .button-primary:hover{
  background: var(--plum-2);
  box-shadow: 0 16px 32px rgba(52, 39, 61, 0.25);
}

body.nemikvah-theme .button-light{
  color: var(--plum);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(28, 22, 33, 0.13);
}

body.nemikvah-theme .button-light:hover{
  box-shadow: 0 17px 36px rgba(28, 22, 33, 0.18);
}

body.nemikvah-theme .button-outline{
  color: var(--plum);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.5);
}

body.nemikvah-theme .button-outline:hover{
  border-color: var(--plum);
  background: var(--white);
}

body.nemikvah-theme .button-ghost-light{
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

body.nemikvah-theme .button-ghost-light:hover{
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.14);
}

body.nemikvah-theme .icon{
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.nemikvah-theme .site-chrome{
  position: sticky;
  z-index: 1000;
  top: 0;
}

body.nemikvah-theme .utility-bar{
  color: rgba(255, 255, 255, 0.9);
  background: var(--plum);
  font-size: 0.79rem;
}

body.nemikvah-theme .utility-inner{
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

body.nemikvah-theme .utility-status{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

body.nemikvah-theme .utility-status::before{
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  content: "";
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(197, 167, 111, 0.12);
}

body.nemikvah-theme .utility-links{
  display: flex;
  align-items: center;
  gap: 1rem;
}

body.nemikvah-theme .utility-links a{
  text-decoration: none;
}

body.nemikvah-theme .utility-links a:hover{
  color: var(--white);
}

body.nemikvah-theme .site-header{
  border-bottom: 1px solid rgba(52, 39, 61, 0.10);
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: blur(18px);
}

body.nemikvah-theme .header-inner{
  display: grid;
  min-height: 82px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.4rem;
}

body.nemikvah-theme .brand{
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

body.nemikvah-theme .brand:hover{
  text-decoration: none;
}

body.nemikvah-theme .brand-mark{
  width: 62px;
  height: 32px;
  object-fit: contain;
}

body.nemikvah-theme .brand-copy{
  display: grid;
  gap: 0.06rem;
}

body.nemikvah-theme .brand-copy strong{
  font-family: var(--serif);
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

body.nemikvah-theme .brand-copy span{
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

body.nemikvah-theme .primary-nav{
  justify-self: center;
}

body.nemikvah-theme .nav-list{
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.nemikvah-theme .nav-list a{
  display: block;
  padding: 0.75rem 0.85rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 750;
}

body.nemikvah-theme .nav-list a:hover,
body.nemikvah-theme .nav-list a[aria-current="page"]{
  color: var(--plum);
  background: rgba(126, 147, 166, 0.12);
  text-decoration: none;
}

body.nemikvah-theme .header-actions{
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

body.nemikvah-theme .menu-toggle{
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--plum);
  background: var(--white);
  cursor: pointer;
}

body.nemikvah-theme .menu-toggle-lines,
body.nemikvah-theme .menu-toggle-lines::before,
body.nemikvah-theme .menu-toggle-lines::after{
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

body.nemikvah-theme .menu-toggle-lines{
  position: relative;
}

body.nemikvah-theme .menu-toggle-lines::before,
body.nemikvah-theme .menu-toggle-lines::after{
  position: absolute;
  left: 0;
  content: "";
}

body.nemikvah-theme .menu-toggle-lines::before{
  top: -6px;
}

body.nemikvah-theme .menu-toggle-lines::after{
  top: 6px;
}

body.nemikvah-theme .menu-toggle[aria-expanded="true"] .menu-toggle-lines{
  background: transparent;
}

body.nemikvah-theme .menu-toggle[aria-expanded="true"] .menu-toggle-lines::before{
  top: 0;
  transform: rotate(45deg);
}

body.nemikvah-theme .menu-toggle[aria-expanded="true"] .menu-toggle-lines::after{
  top: 0;
  transform: rotate(-45deg);
}

body.nemikvah-theme .hero{
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.8rem, 8vw, 7.4rem) clamp(3.5rem, 7vw, 6rem);
}

body.nemikvah-theme .hero::before{
  position: absolute;
  top: 6rem;
  left: -12rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(126, 147, 166, 0.18);
  border-radius: 50%;
  content: "";
}

body.nemikvah-theme .hero-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(370px, 0.93fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

body.nemikvah-theme .hero-copy{
  position: relative;
  z-index: 2;
}

body.nemikvah-theme .hero-copy h1{
  max-width: 880px;
  margin-bottom: 1.45rem;
}

body.nemikvah-theme .hero-copy h1 em{
  color: var(--slate-deep);
  font-style: italic;
  font-weight: 400;
}

body.nemikvah-theme .hero-copy .lead{
  max-width: 690px;
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 2vw, 1.32rem);
}

body.nemikvah-theme .hero-note{
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.35rem;
  color: var(--muted);
  font-size: 0.88rem;
}

body.nemikvah-theme .hero-note .icon-wrap{
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--plum);
  background: rgba(197, 167, 111, 0.17);
}

body.nemikvah-theme .hero-art{
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(155deg, rgba(255,255,255,0.35), transparent 42%),
    linear-gradient(145deg, #e7ecec 0%, #cbd5dc 43%, #a892a2 100%);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

body.nemikvah-theme .hero-art::before,
body.nemikvah-theme .hero-art::after{
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  content: "";
}

body.nemikvah-theme .hero-art::before{
  top: -14%;
  right: -24%;
  width: 72%;
  aspect-ratio: 1;
}

body.nemikvah-theme .hero-art::after{
  right: -9%;
  bottom: -17%;
  width: 82%;
  aspect-ratio: 1;
  box-shadow: 0 0 0 38px rgba(255, 255, 255, 0.07), 0 0 0 92px rgba(255, 255, 255, 0.045);
}

body.nemikvah-theme .hero-mark-large{
  position: absolute;
  z-index: -1;
  top: 11%;
  left: 8%;
  width: 83%;
  filter: brightness(0) invert(1);
  opacity: 0.18;
}

body.nemikvah-theme .water-drop{
  position: absolute;
  z-index: -1;
  top: 22%;
  right: 18%;
  width: 44%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 68% 32% 66% 34% / 67% 33% 67% 33%;
  background: linear-gradient(135deg, rgba(255,255,255,.62), rgba(255,255,255,.10));
  box-shadow: inset 18px 18px 60px rgba(255,255,255,.25), 0 38px 90px rgba(52,39,61,.22);
  transform: rotate(45deg);
}

body.nemikvah-theme .hero-quote{
  position: absolute;
  top: 2rem;
  right: 2rem;
  max-width: 240px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 20px;
  color: rgba(33, 28, 41, 0.82);
  background: rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(14px);
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.35;
}

body.nemikvah-theme .hero-quote span{
  display: block;
  margin-top: 0.55rem;
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

body.nemikvah-theme .booking-card{
  position: absolute;
  z-index: 2;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 24px;
  color: var(--white);
  background: rgba(52, 39, 61, 0.88);
  box-shadow: 0 24px 60px rgba(52, 39, 61, 0.26);
  backdrop-filter: blur(16px);
}

body.nemikvah-theme .booking-card-top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2rem;
}

body.nemikvah-theme .booking-card h2,
body.nemikvah-theme .booking-card h3{
  margin-bottom: 0.5rem;
  font-family: var(--sans);
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
}

body.nemikvah-theme .booking-card p{
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
}

body.nemikvah-theme .booking-card .phone-pill{
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.9rem;
  border-radius: 999px;
  color: var(--plum);
  background: var(--white);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 850;
}

body.nemikvah-theme .booking-card .phone-pill:hover{
  text-decoration: none;
}

body.nemikvah-theme .info-strip{
  position: relative;
  z-index: 5;
  margin-top: -0.9rem;
}

body.nemikvah-theme .info-strip-inner{
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.93);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

body.nemikvah-theme .info-strip-item{
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 0.95rem;
  padding: 1.3rem 1.5rem;
}

body.nemikvah-theme .info-strip-item + .info-strip-item{
  border-left: 1px solid var(--line);
}

body.nemikvah-theme .info-strip-icon,
body.nemikvah-theme .feature-icon,
body.nemikvah-theme .step-icon,
body.nemikvah-theme .contact-icon{
  display: inline-flex;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: var(--plum);
  background: rgba(126, 147, 166, 0.13);
}

body.nemikvah-theme .info-strip-item strong{
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.98rem;
}

body.nemikvah-theme .info-strip-item span,
body.nemikvah-theme .info-strip-item a{
  color: var(--muted);
  font-size: 0.87rem;
}

body.nemikvah-theme .section-header-row{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

body.nemikvah-theme .section-header-row .section-heading{
  margin-bottom: 0;
}

body.nemikvah-theme .steps-grid,
body.nemikvah-theme .feature-grid,
body.nemikvah-theme .values-grid,
body.nemikvah-theme .support-grid,
body.nemikvah-theme .contact-grid,
body.nemikvah-theme .project-grid{
  display: grid;
  gap: 1rem;
}

body.nemikvah-theme .steps-grid{
  grid-template-columns: repeat(3, 1fr);
  counter-reset: visit-step;
}

body.nemikvah-theme .step-card{
  position: relative;
  min-height: 285px;
  overflow: hidden;
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 249, 0.78);
  box-shadow: 0 10px 26px rgba(34, 27, 41, 0.04);
  counter-increment: visit-step;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

body.nemikvah-theme .step-card:hover{
  transform: translateY(-4px);
  border-color: rgba(52, 39, 61, 0.22);
  box-shadow: var(--shadow-sm);
}

body.nemikvah-theme .step-card::after{
  position: absolute;
  right: 1rem;
  bottom: -2.2rem;
  color: rgba(126, 147, 166, 0.11);
  content: "0" counter(visit-step);
  font-family: var(--serif);
  font-size: 8rem;
  line-height: 1;
}

body.nemikvah-theme .step-card .step-icon{
  margin-bottom: 2rem;
}

body.nemikvah-theme .step-card h3{
  margin-bottom: 0.65rem;
  font-family: var(--sans);
  font-size: 1.14rem;
  font-weight: 800;
  letter-spacing: 0;
}

body.nemikvah-theme .step-card p{
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 0.95rem;
}

body.nemikvah-theme .care-section{
  position: relative;
}

body.nemikvah-theme .care-panel{
  display: grid;
  overflow: hidden;
  grid-template-columns: 0.9fr 1.1fr;
  border: 1px solid rgba(52, 39, 61, 0.10);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-md);
}

body.nemikvah-theme .care-visual{
  position: relative;
  min-height: 530px;
  overflow: hidden;
  background:
    radial-gradient(circle at 33% 26%, rgba(255,255,255,.55), transparent 18%),
    linear-gradient(155deg, #a991a1 0%, #748ca1 55%, #374555 100%);
}

body.nemikvah-theme .care-visual::before{
  position: absolute;
  top: 13%;
  left: 16%;
  width: 68%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 34px rgba(255,255,255,.07), 0 0 0 78px rgba(255,255,255,.04);
}

body.nemikvah-theme .care-visual-mark{
  position: absolute;
  top: 18%;
  left: 18%;
  width: 64%;
  filter: brightness(0) invert(1);
  opacity: 0.26;
}

body.nemikvah-theme .care-quote{
  position: absolute;
  right: 1.6rem;
  bottom: 1.6rem;
  left: 1.6rem;
  padding: 1.6rem;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 22px;
  color: var(--white);
  background: rgba(33,28,41,.43);
  backdrop-filter: blur(15px);
}

body.nemikvah-theme .care-quote blockquote{
  margin-bottom: 0.85rem;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  line-height: 1.16;
}

body.nemikvah-theme .care-quote cite{
  color: rgba(255,255,255,.7);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

body.nemikvah-theme .care-copy{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.2rem, 5vw, 5rem);
}

body.nemikvah-theme .care-copy h2{
  margin-bottom: 1.2rem;
}

body.nemikvah-theme .care-copy > p{
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

body.nemikvah-theme .care-list{
  display: grid;
  gap: 1.1rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

body.nemikvah-theme .care-list li{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
}

body.nemikvah-theme .care-list .check{
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--plum);
  background: rgba(197, 167, 111, 0.22);
}

body.nemikvah-theme .care-list strong{
  display: block;
  margin-bottom: 0.12rem;
}

body.nemikvah-theme .care-list span{
  color: var(--muted);
  font-size: 0.9rem;
}

body.nemikvah-theme .dark-section{
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(126,147,166,.23), transparent 28rem),
    radial-gradient(circle at 10% 95%, rgba(197,167,111,.17), transparent 28rem),
    var(--plum);
}

body.nemikvah-theme .dark-section::after{
  position: absolute;
  top: -14rem;
  right: -12rem;
  width: 38rem;
  height: 38rem;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 58px rgba(255,255,255,.025), 0 0 0 132px rgba(255,255,255,.018);
}

body.nemikvah-theme .dark-section .section-kicker{
  color: var(--gold);
}

body.nemikvah-theme .dark-section .section-intro{
  color: rgba(255,255,255,.68);
}

body.nemikvah-theme .project-grid{
  position: relative;
  z-index: 2;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3.5rem;
}

body.nemikvah-theme .project-card{
  min-height: 255px;
  padding: 1.6rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(12px);
}

body.nemikvah-theme .project-card .feature-icon{
  margin-bottom: 1.5rem;
  color: var(--white);
  background: rgba(255,255,255,.10);
}

body.nemikvah-theme .project-card h3{
  margin-bottom: 0.65rem;
  font-family: var(--sans);
  font-size: 1.07rem;
  font-weight: 800;
  letter-spacing: 0;
}

body.nemikvah-theme .project-card p{
  color: rgba(255,255,255,.67);
  font-size: 0.92rem;
}

body.nemikvah-theme .dark-cta-row{
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}

body.nemikvah-theme .dark-cta-row p{
  max-width: 650px;
  color: rgba(255,255,255,.72);
}

body.nemikvah-theme .support-band{
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-md);
}

body.nemikvah-theme .support-copy{
  padding: clamp(2.2rem, 5vw, 5rem);
}

body.nemikvah-theme .support-copy h2{
  margin-bottom: 1.15rem;
}

body.nemikvah-theme .support-copy p{
  max-width: 650px;
  color: var(--muted);
  font-size: 1.07rem;
}

body.nemikvah-theme .support-pricing{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin: 2rem 0;
}

body.nemikvah-theme .mini-price{
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--ivory);
}

body.nemikvah-theme .mini-price strong{
  display: block;
  margin-bottom: 0.15rem;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
}

body.nemikvah-theme .mini-price span{
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.25;
}

body.nemikvah-theme .support-visual{
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: linear-gradient(155deg, #edf0f1 0%, #d7cbd3 100%);
}

body.nemikvah-theme .support-visual::before,
body.nemikvah-theme .support-visual::after{
  position: absolute;
  border-radius: 50%;
  content: "";
}

body.nemikvah-theme .support-visual::before{
  top: 9%;
  left: 12%;
  width: 73%;
  aspect-ratio: 1;
  border: 1px solid rgba(52,39,61,.16);
  box-shadow: 0 0 0 34px rgba(255,255,255,.22), 0 0 0 76px rgba(255,255,255,.14);
}

body.nemikvah-theme .support-visual::after{
  right: -9%;
  bottom: -14%;
  width: 54%;
  aspect-ratio: 1;
  background: rgba(126,147,166,.28);
  filter: blur(1px);
}

body.nemikvah-theme .support-visual-mark{
  position: absolute;
  top: 18%;
  left: 15%;
  width: 70%;
  opacity: 0.58;
}

body.nemikvah-theme .support-visual-card{
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  padding: 1.4rem;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 20px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(15px);
}

body.nemikvah-theme .support-visual-card strong{
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

body.nemikvah-theme .support-visual-card span{
  color: var(--muted);
  font-size: 0.85rem;
}

body.nemikvah-theme .faq-list{
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
}

body.nemikvah-theme details{
  border-bottom: 1px solid var(--line);
}

body.nemikvah-theme summary{
  position: relative;
  padding: 1.35rem 3.2rem 1.35rem 0;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

body.nemikvah-theme summary::-webkit-details-marker{
  display: none;
}

body.nemikvah-theme summary::before,
body.nemikvah-theme summary::after{
  position: absolute;
  top: 50%;
  right: 0.6rem;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  content: "";
  background: var(--plum);
  transition: transform 180ms ease;
}

body.nemikvah-theme summary::after{
  transform: rotate(90deg);
}

body.nemikvah-theme details[open] summary::after{
  transform: rotate(0deg);
}

body.nemikvah-theme .details-body{
  max-width: 760px;
  padding: 0 3rem 1.4rem 0;
  color: var(--muted);
}

body.nemikvah-theme .site-footer{
  color: rgba(255,255,255,.82);
  background: #251d2c;
}

body.nemikvah-theme .footer-main{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: clamp(2.2rem, 6vw, 6rem);
  padding-block: 4.8rem 3.7rem;
}

body.nemikvah-theme .footer-brand{
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
  color: var(--white);
  text-decoration: none;
}

body.nemikvah-theme .footer-brand img{
  width: 72px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

body.nemikvah-theme .footer-brand strong{
  max-width: 230px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.05;
}

body.nemikvah-theme .footer-about{
  max-width: 500px;
  color: rgba(255,255,255,.62);
  font-size: 0.92rem;
}

body.nemikvah-theme .footer-column h2,
body.nemikvah-theme .footer-column h3{
  margin-bottom: 1rem;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

body.nemikvah-theme .footer-list{
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.nemikvah-theme .footer-list a{
  color: rgba(255,255,255,.68);
  text-decoration: none;
  font-size: 0.9rem;
}

body.nemikvah-theme .footer-list a:hover{
  color: var(--white);
}

body.nemikvah-theme .footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.35rem;
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.48);
  font-size: 0.76rem;
}

body.nemikvah-theme .footer-bottom-links{
  display: flex;
  gap: 1rem;
}

body.nemikvah-theme .footer-bottom a{
  text-decoration: none;
}

body.nemikvah-theme .mobile-action-bar{
  display: none;
}

/* Interior pages */
body.nemikvah-theme .page-hero{
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 7rem);
}

body.nemikvah-theme .page-hero::after{
  position: absolute;
  z-index: -1;
  top: -12rem;
  right: -9rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(126,147,166,.18);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 48px rgba(126,147,166,.035), 0 0 0 110px rgba(126,147,166,.022);
}

body.nemikvah-theme .page-hero-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

body.nemikvah-theme .page-hero h1{
  max-width: 900px;
  margin-bottom: 1.2rem;
  font-size: clamp(3.2rem, 6vw, 6rem);
}

body.nemikvah-theme .page-hero .lead{
  max-width: 700px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.25rem);
}

body.nemikvah-theme .page-hero-card{
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 2rem;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 5%, rgba(197,167,111,.22), transparent 18rem),
    linear-gradient(145deg, var(--plum), #5d5063);
  box-shadow: var(--shadow-md);
}

body.nemikvah-theme .page-hero-card::after{
  position: absolute;
  right: -17%;
  bottom: -28%;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 34px rgba(255,255,255,.04), 0 0 0 78px rgba(255,255,255,.025);
}

body.nemikvah-theme .page-hero-card .label{
  color: var(--gold);
}

body.nemikvah-theme .page-hero-card h2,
body.nemikvah-theme .page-hero-card h3{
  position: relative;
  z-index: 1;
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

body.nemikvah-theme .page-hero-card p{
  position: relative;
  z-index: 1;
  max-width: 460px;
  color: rgba(255,255,255,.7);
}

body.nemikvah-theme .page-hero-card .button-row{
  position: relative;
  z-index: 1;
  margin-top: 1.5rem;
}

body.nemikvah-theme .page-hero-mark{
  position: absolute;
  right: -4%;
  bottom: 6%;
  width: 52%;
  filter: brightness(0) invert(1);
  opacity: 0.12;
}

body.nemikvah-theme .two-column{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(2.6rem, 7vw, 7rem);
  align-items: start;
}

body.nemikvah-theme .prose h2{
  margin-bottom: 1.2rem;
}

body.nemikvah-theme .prose h3{
  margin-top: 2.3rem;
  margin-bottom: 0.75rem;
  font-family: var(--sans);
  font-size: 1.18rem;
  font-weight: 850;
  letter-spacing: 0;
}

body.nemikvah-theme .prose p,
body.nemikvah-theme .prose li{
  color: var(--muted);
  font-size: 1.02rem;
}

body.nemikvah-theme .prose a{
  color: var(--plum);
  font-weight: 750;
}

body.nemikvah-theme .sticky-card{
  position: sticky;
  top: 140px;
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

body.nemikvah-theme .sticky-card h2,
body.nemikvah-theme .sticky-card h3{
  margin-bottom: 0.7rem;
  font-family: var(--sans);
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: 0;
}

body.nemikvah-theme .sticky-card p{
  color: var(--muted);
  font-size: 0.91rem;
}

body.nemikvah-theme .sticky-card .button{
  width: 100%;
}

body.nemikvah-theme .meta-list{
  display: grid;
  gap: 1rem;
  margin: 1.4rem 0;
  padding: 0;
  list-style: none;
}

body.nemikvah-theme .meta-list li{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
}

body.nemikvah-theme .meta-list .contact-icon{
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

body.nemikvah-theme .meta-list strong{
  display: block;
  margin-bottom: 0.1rem;
  font-size: 0.9rem;
}

body.nemikvah-theme .meta-list span,
body.nemikvah-theme .meta-list a{
  color: var(--muted);
  font-size: 0.86rem;
}

body.nemikvah-theme .notice{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  margin: 1.6rem 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(197,167,111,.35);
  border-radius: 16px;
  background: rgba(197,167,111,.11);
}

body.nemikvah-theme .notice strong{
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.91rem;
}

body.nemikvah-theme .notice p{
  color: var(--muted);
  font-size: 0.86rem;
}

body.nemikvah-theme .price-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.4rem;
}

body.nemikvah-theme .price-card{
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 10px 24px rgba(34,27,41,.04);
}

body.nemikvah-theme .price-card.featured{
  color: var(--white);
  border-color: transparent;
  background: var(--plum);
  box-shadow: var(--shadow-md);
}

body.nemikvah-theme .price-card .pill{
  display: inline-flex;
  margin-bottom: 1.5rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  color: var(--plum);
  background: rgba(126,147,166,.13);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.nemikvah-theme .price-card.featured .pill{
  color: var(--white);
  background: rgba(255,255,255,.12);
}

body.nemikvah-theme .price-card .amount{
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--serif);
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1;
}

body.nemikvah-theme .price-card h3{
  margin-bottom: 0.75rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0;
}

body.nemikvah-theme .price-card p{
  color: var(--muted);
  font-size: 0.88rem;
}

body.nemikvah-theme .price-card.featured p{
  color: rgba(255,255,255,.67);
}

body.nemikvah-theme .price-card .button{
  position: absolute;
  right: 1.7rem;
  bottom: 1.7rem;
  left: 1.7rem;
}

body.nemikvah-theme .timeline{
  position: relative;
  display: grid;
  gap: 0;
  margin-top: 2.5rem;
}

body.nemikvah-theme .timeline::before{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 1px;
  content: "";
  background: var(--line-strong);
}

body.nemikvah-theme .timeline-item{
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 1.1rem;
  padding-bottom: 2.3rem;
}

body.nemikvah-theme .timeline-dot{
  position: relative;
  z-index: 1;
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--plum);
  background: var(--paper);
  font-family: var(--serif);
  font-size: 0.78rem;
  box-shadow: 0 4px 12px rgba(34,27,41,.06);
}

body.nemikvah-theme .timeline-copy{
  padding-top: 0.3rem;
}

body.nemikvah-theme .timeline-copy h3{
  margin-bottom: 0.4rem;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: 0;
}

body.nemikvah-theme .timeline-copy p{
  color: var(--muted);
  font-size: 0.92rem;
}

body.nemikvah-theme .values-grid{
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.5rem;
}

body.nemikvah-theme .value-card{
  min-height: 270px;
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
}

body.nemikvah-theme .value-card .feature-icon{
  margin-bottom: 1.4rem;
}

body.nemikvah-theme .value-card h3{
  margin-bottom: 0.55rem;
  font-family: var(--sans);
  font-size: 1.04rem;
  font-weight: 850;
  letter-spacing: 0;
}

body.nemikvah-theme .value-card p{
  color: var(--muted);
  font-size: 0.9rem;
}

body.nemikvah-theme .metric-row{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
  margin-top: 2.8rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
}

body.nemikvah-theme .metric{
  padding: 1.5rem;
}

body.nemikvah-theme .metric + .metric{
  border-left: 1px solid var(--line);
}

body.nemikvah-theme .metric strong{
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
}

body.nemikvah-theme .metric span{
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

body.nemikvah-theme .contact-grid{
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.5rem;
}

body.nemikvah-theme .contact-card{
  min-height: 270px;
  padding: 1.65rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 8px 20px rgba(34,27,41,.035);
}

body.nemikvah-theme .contact-card .contact-icon{
  margin-bottom: 1.4rem;
}

body.nemikvah-theme .contact-card h2,
body.nemikvah-theme .contact-card h3{
  margin-bottom: 0.6rem;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: 0;
}

body.nemikvah-theme .contact-card p,
body.nemikvah-theme .contact-card address{
  margin-bottom: 1.3rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-style: normal;
}

body.nemikvah-theme .contact-card a:not(.button){
  color: var(--plum);
  font-weight: 800;
}

body.nemikvah-theme .map-card{
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(255,255,255,.35), rgba(255,255,255,.35)),
    repeating-linear-gradient(90deg, rgba(126,147,166,.17) 0 1px, transparent 1px 52px),
    repeating-linear-gradient(0deg, rgba(126,147,166,.14) 0 1px, transparent 1px 52px),
    linear-gradient(145deg, #e9edec, #d8dde0);
  box-shadow: var(--shadow-md);
}

body.nemikvah-theme .map-road{
  position: absolute;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 0 0 1px rgba(52,39,61,.07);
}

body.nemikvah-theme .map-road.one{
  top: 12%;
  left: -10%;
  width: 125%;
  height: 28px;
  transform: rotate(18deg);
}

body.nemikvah-theme .map-road.two{
  top: -15%;
  left: 42%;
  width: 30px;
  height: 140%;
  transform: rotate(-11deg);
}

body.nemikvah-theme .map-road.three{
  right: -8%;
  bottom: 12%;
  width: 100%;
  height: 19px;
  transform: rotate(-28deg);
}

body.nemikvah-theme .map-pin{
  position: absolute;
  top: 49%;
  left: 53%;
  display: flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border: 8px solid rgba(255,255,255,.9);
  border-radius: 50% 50% 50% 0;
  color: var(--white);
  background: var(--plum);
  box-shadow: var(--shadow-md);
  transform: translate(-50%, -50%) rotate(-45deg);
}

body.nemikvah-theme .map-pin .icon{
  width: 24px;
  height: 24px;
  transform: rotate(45deg);
}

body.nemikvah-theme .map-label{
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.2rem;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

body.nemikvah-theme .map-label strong{
  display: block;
  margin-bottom: 0.1rem;
}

body.nemikvah-theme .map-label span{
  color: var(--muted);
  font-size: 0.83rem;
}

body.nemikvah-theme .quote-band{
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 6rem);
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0%, rgba(197,167,111,.24), transparent 24rem),
    linear-gradient(145deg, var(--plum), #5b4c61);
  box-shadow: var(--shadow-md);
}

body.nemikvah-theme .quote-band::after{
  position: absolute;
  right: -7%;
  bottom: -39%;
  width: 48%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 44px rgba(255,255,255,.035), 0 0 0 94px rgba(255,255,255,.02);
}

body.nemikvah-theme .quote-band blockquote{
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin-bottom: 1.2rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.2vw, 4.3rem);
  line-height: 1.08;
}

body.nemikvah-theme .quote-band cite{
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.65);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.nemikvah-theme .inline-link{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--plum);
  font-weight: 850;
  text-decoration: none;
}

body.nemikvah-theme .inline-link:hover{
  text-decoration: underline;
}

body.nemikvah-theme .soft-section{
  background: rgba(238,241,242,.52);
}

body.nemikvah-theme .divider{
  border: 0;
  border-top: 1px solid var(--line);
  margin-block: 2.4rem;
}

body.nemikvah-theme .small-note{
  color: var(--muted);
  font-size: 0.78rem;
}

@media (max-width: 1050px) {
  body.nemikvah-theme .header-actions .button{
    display: none;
  }

  body.nemikvah-theme .hero-grid,
body.nemikvah-theme .page-hero-grid{
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
    gap: 2.5rem;
  }

  body.nemikvah-theme .hero-art{
    min-height: 530px;
  }

  body.nemikvah-theme .support-pricing{
    grid-template-columns: 1fr;
  }

  body.nemikvah-theme .support-pricing .mini-price{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
}

@media (max-width: 900px) {
  body.nemikvah-theme .site-chrome{
    position: sticky;
  }

  body.nemikvah-theme .utility-inner{
    justify-content: center;
  }

  body.nemikvah-theme .utility-links{
    display: none;
  }

  body.nemikvah-theme .header-inner{
    min-height: 72px;
    grid-template-columns: 1fr auto;
  }

  body.nemikvah-theme .header-actions{
    display: none;
  }

  body.nemikvah-theme .menu-toggle{
    display: inline-flex;
  }

  body.nemikvah-theme .primary-nav{
    position: fixed;
    z-index: 999;
    top: 106px;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 1.4rem 1rem 7rem;
    visibility: hidden;
    opacity: 0;
    background: rgba(251,248,242,.98);
    backdrop-filter: blur(18px);
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  body.nemikvah-theme .primary-nav[data-open="true"]{
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  body.nemikvah-theme .nav-list{
    display: grid;
    gap: 0.4rem;
  }

  body.nemikvah-theme .nav-list a{
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,.55);
    font-size: 1rem;
  }

  body.nemikvah-theme .hero-grid,
body.nemikvah-theme .page-hero-grid,
body.nemikvah-theme .care-panel,
body.nemikvah-theme .support-band,
body.nemikvah-theme .two-column{
    grid-template-columns: 1fr;
  }

  body.nemikvah-theme .hero-copy h1{
    max-width: 760px;
  }

  body.nemikvah-theme .hero-art{
    min-height: 520px;
  }

  body.nemikvah-theme .info-strip-inner,
body.nemikvah-theme .steps-grid,
body.nemikvah-theme .values-grid,
body.nemikvah-theme .contact-grid,
body.nemikvah-theme .price-grid{
    grid-template-columns: 1fr;
  }

  body.nemikvah-theme .info-strip-item{
    min-height: auto;
  }

  body.nemikvah-theme .info-strip-item + .info-strip-item{
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  body.nemikvah-theme .project-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  body.nemikvah-theme .support-visual{
    min-height: 420px;
  }

  body.nemikvah-theme .footer-main{
    grid-template-columns: 1fr 1fr;
  }

  body.nemikvah-theme .footer-main > :first-child{
    grid-column: 1 / -1;
  }

  body.nemikvah-theme .sticky-card{
    position: relative;
    top: auto;
  }

  body.nemikvah-theme .metric-row{
    grid-template-columns: repeat(2, 1fr);
  }

  body.nemikvah-theme .metric:nth-child(3){
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  body.nemikvah-theme .metric:nth-child(4){
    border-top: 1px solid var(--line);
  }

  body.nemikvah-theme .mobile-action-bar{
    position: fixed;
    z-index: 1200;
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    padding: 0.55rem;
    border: 1px solid rgba(255,255,255,.65);
    border-radius: 999px;
    background: rgba(52,39,61,.93);
    box-shadow: 0 18px 50px rgba(34,27,41,.30);
    backdrop-filter: blur(16px);
  }

  body.nemikvah-theme .mobile-action-bar a{
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 999px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.83rem;
    font-weight: 850;
  }

  body.nemikvah-theme .mobile-action-bar a:first-child{
    color: var(--plum);
    background: var(--white);
  }

  body.nemikvah-theme{
    padding-bottom: 80px;
  }
}

@media (max-width: 640px) {
  body.nemikvah-theme .container,
body.nemikvah-theme .narrow{
    width: min(calc(100% - 1.2rem), var(--container));
  }

  body.nemikvah-theme .utility-bar{
    font-size: 0.69rem;
  }

  body.nemikvah-theme .brand-mark{
    width: 52px;
  }

  body.nemikvah-theme .brand-copy strong{
    font-size: 0.93rem;
  }

  body.nemikvah-theme .brand-copy span{
    font-size: 0.58rem;
  }

  body.nemikvah-theme .hero{
    padding-top: 3.2rem;
  }

  body.nemikvah-theme .hero-art{
    min-height: 440px;
    border-radius: 30px;
  }

  body.nemikvah-theme .hero-quote{
    top: 1rem;
    right: 1rem;
    max-width: 200px;
    font-size: 0.95rem;
  }

  body.nemikvah-theme .booking-card{
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }

  body.nemikvah-theme .booking-card-top{
    display: grid;
  }

  body.nemikvah-theme .booking-card .phone-pill{
    justify-content: center;
  }

  body.nemikvah-theme .info-strip{
    margin-top: 0.7rem;
  }

  body.nemikvah-theme .section-header-row,
body.nemikvah-theme .dark-cta-row,
body.nemikvah-theme .map-label,
body.nemikvah-theme .footer-bottom{
    align-items: flex-start;
    flex-direction: column;
  }

  body.nemikvah-theme .section-header-row{
    display: flex;
  }

  body.nemikvah-theme .project-grid{
    grid-template-columns: 1fr;
  }

  body.nemikvah-theme .project-card{
    min-height: auto;
  }

  body.nemikvah-theme .care-visual{
    min-height: 430px;
  }

  body.nemikvah-theme .support-copy{
    padding: 2rem 1.3rem;
  }

  body.nemikvah-theme .support-visual{
    min-height: 350px;
  }

  body.nemikvah-theme .footer-main{
    grid-template-columns: 1fr;
  }

  body.nemikvah-theme .footer-main > :first-child{
    grid-column: auto;
  }

  body.nemikvah-theme .metric-row{
    grid-template-columns: 1fr;
  }

  body.nemikvah-theme .metric + .metric,
body.nemikvah-theme .metric:nth-child(3),
body.nemikvah-theme .metric:nth-child(4){
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  body.nemikvah-theme .page-hero-card{
    min-height: 330px;
    padding: 1.5rem;
  }

  body.nemikvah-theme .quote-band{
    padding: 2.2rem 1.4rem;
  }

  body.nemikvah-theme .map-card{
    min-height: 390px;
  }

  body.nemikvah-theme .map-label .button{
    width: 100%;
  }
}

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

  body.nemikvah-theme *,
body.nemikvah-theme *::before,
body.nemikvah-theme *::after{
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* ========================================================================
   Exact Elementor rendering layer — v3.0
   The five pages and the global header/footer use the prototype's original
   HTML inside section-level Elementor HTML widgets. These rules neutralize
   Elementor's wrapper sizing and keep the original design pixel-faithful.
   ======================================================================== */
body.nemikvah-theme .elementor-location-header,
body.nemikvah-theme .elementor-location-footer,
body.nemikvah-theme .elementor-location-single,
body.nemikvah-theme .elementor-location-archive,
body.nemikvah-theme .elementor-location-header > .elementor,
body.nemikvah-theme .elementor-location-footer > .elementor,
body.nemikvah-theme .elementor-location-single > .elementor,
body.nemikvah-theme .elementor-location-archive > .elementor,
body.nemikvah-theme .site-main,
body.nemikvah-theme .site-main > .elementor {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.nemikvah-theme .nm-exact-page.e-con,
body.nemikvah-theme .nm-exact-site-part.e-con {
  --width: 100%;
  --content-width: 100%;
  --gap: 0px;
  --row-gap: 0px;
  --column-gap: 0px;
  display: flex;
  width: 100%;
  max-width: none;
  min-height: 0;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
}

body.nemikvah-theme .nm-exact-page > .elementor-element,
body.nemikvah-theme .nm-exact-site-part > .elementor-element,
body.nemikvah-theme .nm-exact-fragment,
body.nemikvah-theme .nm-exact-site-part-html,
body.nemikvah-theme .nm-exact-fragment > .elementor-widget-container,
body.nemikvah-theme .nm-exact-site-part-html > .elementor-widget-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.nemikvah-theme .nm-exact-page .elementor-widget-html,
body.nemikvah-theme .nm-exact-site-part .elementor-widget-html {
  margin: 0;
}

/* Elementor Site Settings often assign an explicit heading color. The
   prototype intentionally inherits heading colors from each section. */
body.nemikvah-theme .nm-exact-page h1,
body.nemikvah-theme .nm-exact-page h2,
body.nemikvah-theme .nm-exact-page h3,
body.nemikvah-theme .nm-exact-page h4,
body.nemikvah-theme .nm-exact-site-part h1,
body.nemikvah-theme .nm-exact-site-part h2,
body.nemikvah-theme .nm-exact-site-part h3,
body.nemikvah-theme .nm-exact-site-part h4 {
  color: inherit;
}

/* New supplied logo symbol: preserve its aspect ratio in every prototype slot. */
body.nemikvah-theme .brand-mark {
  width: 68px;
  height: 35px;
  object-fit: contain;
}

body.nemikvah-theme .brand-copy strong {
  max-width: 275px;
  font-size: 1.02rem;
}

body.nemikvah-theme .footer-brand img {
  width: 76px;
  filter: none;
  opacity: 1;
}

/* Keep the editor usable without changing the public design. */
body.elementor-editor-active.nemikvah-theme .nm-exact-fragment:hover > .elementor-widget-container,
body.elementor-editor-active.nemikvah-theme .nm-exact-site-part-html:hover > .elementor-widget-container {
  outline: 1px dashed rgba(138, 103, 47, 0.38);
  outline-offset: -1px;
}

@media (max-width: 640px) {
  body.nemikvah-theme .brand-mark {
    width: 58px;
    height: 31px;
  }
  body.nemikvah-theme .brand-copy strong {
    max-width: 190px;
    font-size: 0.92rem;
  }
}


/* Supplied Abraham & Betty Offen Mikvah logo lockup. */
body.nemikvah-theme .brand .header-logo {
  display: block;
  width: clamp(275px, 22vw, 350px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

body.nemikvah-theme .footer-brand {
  display: inline-flex;
  width: min(100%, 390px);
}

body.nemikvah-theme .footer-brand img.footer-logo {
  display: block;
  width: min(100%, 390px);
  max-width: 100%;
  height: auto;
  filter: none;
  opacity: 1;
  object-fit: contain;
}

@media (max-width: 1180px) {
  body.nemikvah-theme .brand .header-logo {
    width: 285px;
  }
  body.nemikvah-theme .nav-list a {
    padding-inline: 0.68rem;
  }
}

@media (max-width: 900px) {
  body.nemikvah-theme .brand .header-logo {
    width: 280px;
  }
}

@media (max-width: 640px) {
  body.nemikvah-theme .brand .header-logo {
    width: min(68vw, 245px);
  }
  body.nemikvah-theme .footer-brand img.footer-logo {
    width: min(100%, 320px);
  }
}

/* Elementor-ready form areas added in 3.2.0 */
.form-shell {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.form-shell-intro .section-intro { margin-left: 0; }
.form-placeholder {
  min-height: 320px;
  border: 1px dashed rgba(25, 89, 112, .38);
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 55px rgba(25, 65, 78, .08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
  color: var(--color-ink);
}
.form-placeholder strong { font-family: var(--font-display); font-size: clamp(1.45rem, 2.2vw, 2rem); }
.form-placeholder span { max-width: 32rem; color: var(--color-muted); }
@media (max-width: 820px) { .form-shell { grid-template-columns: 1fr; } .form-placeholder { min-height: 240px; } }

/* Version 3.3.0: approved homepage visual relocation. */
.hero-care-visual,
body.nemikvah-theme .hero-care-visual {
  min-height: 590px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.care-panel-copy-only,
body.nemikvah-theme .care-panel-copy-only {
  grid-template-columns: minmax(0, 1fr);
}

.care-panel-copy-only .care-copy,
body.nemikvah-theme .care-panel-copy-only .care-copy {
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
}

@media (max-width: 760px) {
  .hero-care-visual,
  body.nemikvah-theme .hero-care-visual {
    min-height: 500px;
  }
}
