:root {
  --ink: #14202a;
  --navy: #122333;
  --navy-deep: #0b1722;
  --navy-soft: #1c3548;
  --ivory: #f5efe4;
  --cream: #fbf8f2;
  --paper: #fffdf9;
  --gold: #b99255;
  --gold-light: #d7b77d;
  --gold-pale: #ead8b4;
  --muted: #647079;
  --line: rgba(20, 32, 42, 0.15);
  --white-line: rgba(255, 255, 255, 0.16);
  --shadow-soft: 0 24px 70px rgba(13, 27, 39, 0.12);
  --shadow-deep: 0 35px 90px rgba(3, 11, 17, 0.34);
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --container: 75rem;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --hebrew: "Noto Serif Hebrew", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

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

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

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

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

.section {
  padding: clamp(5.5rem, 9vw, 9rem) 0;
}

.section-dark {
  color: var(--paper);
  background: var(--navy);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--paper);
  background: var(--navy-deep);
  border-radius: var(--radius-sm);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

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

.topline {
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy-deep);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.topline-inner {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  padding-block: 0.55rem;
}

.topline a {
  color: var(--gold-light);
  text-decoration: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(251, 248, 242, 0.94);
  border-bottom: 1px solid rgba(20, 32, 42, 0.1);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 5.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

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

.brand-mark {
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  background: var(--navy);
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--hebrew);
  font-size: 1rem;
  line-height: 1;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.33rem;
  font-weight: 700;
}

.brand-copy small {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.85rem;
}

.primary-nav a {
  position: relative;
  color: #2d3a43;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.primary-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-nav .nav-cta {
  padding: 0.68rem 1.1rem;
  color: var(--paper);
  background: var(--navy);
  border-radius: 999px;
}

.nav-toggle {
  width: 3rem;
  height: 3rem;
  display: none;
  place-content: center;
  gap: 0.27rem;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.nav-toggle > span:not(.sr-only) {
  width: 1rem;
  height: 1px;
  display: block;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.eyebrow {
  margin: 0 0 1.15rem;
  color: #876a3c;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--gold-light);
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.65rem;
  font-size: clamp(3.5rem, 7.2vw, 6.8rem);
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  letter-spacing: -0.025em;
}

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

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 7.4rem);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(4.5rem, 7vw, 7rem) 0;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: -20%;
  right: -13%;
  width: 42rem;
  height: 42rem;
  background: radial-gradient(circle, rgba(185, 146, 85, 0.16), transparent 68%);
}

.hero-pattern {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(30deg, transparent 47%, rgba(215, 183, 125, 0.3) 48%, rgba(215, 183, 125, 0.3) 52%, transparent 53%),
    linear-gradient(150deg, transparent 47%, rgba(215, 183, 125, 0.2) 48%, rgba(215, 183, 125, 0.2) 52%, transparent 53%);
  background-size: 5rem 8.5rem;
  mask-image: linear-gradient(to right, transparent, #000 75%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(24rem, 0.77fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

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

.hero-copy .eyebrow {
  font-family: var(--hebrew);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.hero-intro {
  max-width: 39rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
  line-height: 1.75;
}

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

.button {
  min-height: 3.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease,
    border-color 180ms ease;
}

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

.button-gold {
  color: var(--navy-deep);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.button-gold:hover {
  background: #e5c890;
  border-color: #e5c890;
}

.button-ghost {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.34);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button-ink {
  color: var(--paper);
  background: var(--navy);
  border-color: var(--navy);
}

.button-ink:hover {
  background: var(--navy-soft);
  border-color: var(--navy-soft);
}

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

.hero-trust {
  max-width: 42rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--white-line);
}

.hero-trust div {
  display: grid;
  gap: 0.2rem;
}

.hero-trust strong {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
}

.hero-trust span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  padding: 1.25rem 1.25rem 3.25rem 0;
}

.hero-photo-frame {
  position: relative;
  margin: 0;
  padding: 0.62rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(215, 183, 125, 0.45);
  box-shadow: var(--shadow-deep);
}

.hero-photo-frame::before,
.hero-photo-frame::after {
  content: "";
  position: absolute;
  width: 3.2rem;
  height: 3.2rem;
  pointer-events: none;
}

.hero-photo-frame::before {
  top: -0.45rem;
  left: -0.45rem;
  border-top: 1px solid var(--gold-light);
  border-left: 1px solid var(--gold-light);
}

.hero-photo-frame::after {
  right: -0.45rem;
  bottom: -0.45rem;
  border-right: 1px solid var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
}

.hero-photo-frame img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.03);
}

.hero-quote {
  position: absolute;
  right: -1.1rem;
  bottom: 0;
  width: min(22rem, 84%);
  margin: 0;
  padding: 1.25rem 1.4rem;
  color: var(--ink);
  background: var(--ivory);
  border-left: 3px solid var(--gold);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.hero-quote p {
  margin-bottom: 0.5rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.18;
}

.hero-quote cite {
  color: var(--muted);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.trust-ribbon {
  color: #6b5735;
  background: var(--gold-pale);
  border-bottom: 1px solid rgba(116, 84, 38, 0.16);
}

.trust-ribbon-inner {
  min-height: 4.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.2rem);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.trust-ribbon i {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  background: var(--gold);
  border-radius: 50%;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.66fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(4rem, 9vw, 9rem);
}

.about-images {
  position: relative;
  min-height: 33rem;
  display: grid;
  align-items: center;
  justify-items: center;
}

.about-images::before {
  content: "";
  position: absolute;
  width: 76%;
  aspect-ratio: 1;
  background: var(--ivory);
  border: 1px solid rgba(185, 146, 85, 0.34);
  border-radius: 50%;
}

.portrait-card {
  position: relative;
  width: min(68%, 16rem);
  padding: 0.55rem;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transform: rotate(-1.8deg);
}

.portrait-card img {
  width: 100%;
  aspect-ratio: 3 / 4.3;
  object-fit: cover;
  object-position: 54% center;
  filter: saturate(0.8) contrast(1.02);
}

.about-seal {
  position: absolute;
  right: 0;
  bottom: 2rem;
  width: 9rem;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  gap: 0.25rem;
  color: var(--gold-light);
  background: var(--navy);
  border: 1px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 18px 45px rgba(18, 35, 51, 0.25);
  text-align: center;
}

.about-seal::before {
  content: "";
  position: absolute;
  inset: 0.48rem;
  border: 1px solid rgba(215, 183, 125, 0.46);
  border-radius: inherit;
}

.about-seal span {
  position: relative;
  font-family: var(--hebrew);
  font-size: 1.12rem;
}

.about-seal small {
  position: relative;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-copy {
  max-width: 42rem;
}

.about-copy p:not(.eyebrow) {
  color: #4d5a62;
}

.about-copy .lead,
.contact-copy .lead {
  color: var(--ink);
  font-size: 1.17rem;
  line-height: 1.75;
}

.about-copy .lead a {
  color: #7d6137;
  font-weight: 600;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0;
  color: var(--navy);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--gold);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.section-heading {
  max-width: 50rem;
  margin-bottom: 4rem;
}

.section-heading p:not(.eyebrow) {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.07rem;
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.centered p:not(.eyebrow) {
  margin-inline: auto;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(20, 32, 42, 0.18);
  border-bottom: 1px solid rgba(20, 32, 42, 0.18);
}

.principle-card {
  position: relative;
  min-height: 26rem;
  padding: clamp(2rem, 4vw, 3.1rem);
  background: rgba(255, 255, 255, 0.22);
  border-right: 1px solid rgba(20, 32, 42, 0.18);
  transition: background-color 260ms ease, transform 260ms ease;
}

.principle-card:last-child {
  border-right: 0;
}

.principle-card:hover {
  z-index: 1;
  background: var(--paper);
  transform: translateY(-0.35rem);
}

.principle-number {
  display: inline-block;
  margin-bottom: 6.5rem;
  color: #73552b;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.principle-card h3 {
  margin-bottom: 1.2rem;
}

.principle-card p {
  color: #5b666d;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.7fr);
  align-items: end;
  gap: 5rem;
}

.split-heading > p {
  padding-bottom: 0.7rem;
}

.journey-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.journey-list li {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 3rem;
  padding: 0 2rem 0 0;
}

.journey-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 1.4rem;
  right: 0.9rem;
  left: 4.4rem;
  height: 1px;
  background: linear-gradient(to right, var(--gold), rgba(185, 146, 85, 0.18));
}

.journey-list li > span {
  position: relative;
  z-index: 1;
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--navy);
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.journey-list h3 {
  margin-bottom: 0.8rem;
  font-size: 1.65rem;
  line-height: 1.05;
}

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

.photo-story {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 8vw, 8rem) 0;
  color: var(--paper);
  background: var(--navy-deep);
}

.photo-story::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.19;
  background-image: radial-gradient(rgba(215, 183, 125, 0.35) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, #000, transparent 65%);
}

.light-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
}

.light-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.photo-marquee {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 1rem 0 2rem;
}

.js .photo-marquee {
  overflow: hidden;
}

.photo-marquee::before,
.photo-marquee::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: min(12vw, 9rem);
  pointer-events: none;
}

.photo-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--navy-deep), transparent);
}

.photo-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--navy-deep), transparent);
}

.photo-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-inline: 1rem;
}

.js .photo-track {
  animation: photo-flow 38s linear infinite;
}

.js .photo-marquee:hover .photo-track,
.js .photo-marquee:focus-within .photo-track,
.js .photo-marquee.motion-paused .photo-track {
  animation-play-state: paused;
}

.motion-toggle {
  min-height: 2.35rem;
  padding: 0.45rem 0.85rem;
  color: var(--navy);
  background: transparent;
  border: 1px solid rgba(20, 32, 42, 0.26);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.motion-toggle:hover,
.motion-toggle[aria-pressed="true"] {
  color: var(--paper);
  background: var(--navy);
  border-color: var(--navy);
}

.motion-toggle:disabled {
  cursor: default;
  opacity: 0.72;
}

.light-heading .motion-toggle {
  color: var(--gold-light);
  border-color: rgba(215, 183, 125, 0.48);
}

.light-heading .motion-toggle:hover,
.light-heading .motion-toggle[aria-pressed="true"] {
  color: var(--navy-deep);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.photo-track figure {
  width: 14rem;
  flex: 0 0 auto;
  margin: 0;
  padding: 0.42rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(215, 183, 125, 0.28);
}

.photo-track figure:nth-child(even) {
  transform: translateY(1.8rem);
}

.photo-track figure.photo-wide {
  width: 21rem;
}

.photo-track img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.04);
}

@keyframes photo-flow {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.reviews-grid {
  display: grid;
  grid-template-columns: minmax(17rem, 0.65fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 9rem);
}

.reviews-intro {
  max-width: 31rem;
}

.reviews-intro > p:not(.eyebrow) {
  margin-bottom: 2rem;
  color: var(--muted);
}

.review-carousel {
  min-width: 0;
}

.review-viewport {
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid rgba(185, 146, 85, 0.28);
  box-shadow: var(--shadow-soft);
}

.review-track {
  display: flex;
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.review-card {
  min-width: 100%;
  min-height: 23rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.2rem, 6vw, 5rem);
}

.stars {
  margin-bottom: 1.75rem;
  color: #75501b;
  font-size: 0.9rem;
  letter-spacing: 0.22em;
}

.review-card blockquote {
  margin: 0 0 2rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.08;
}

.review-card > p {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-card > p span {
  margin-left: 0.45rem;
  color: var(--muted);
  font-weight: 500;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1.25rem;
}

.carousel-controls .motion-toggle {
  margin-inline: 0.2rem;
}

.carousel-button {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--navy);
  background: transparent;
  border: 1px solid rgba(20, 32, 42, 0.25);
  border-radius: 50%;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease;
}

.carousel-button:hover {
  color: var(--paper);
  background: var(--navy);
}

.carousel-status {
  min-width: 4.3rem;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1rem;
  text-align: center;
}

.carousel-status span {
  color: var(--ink);
  font-size: 1.35rem;
}

.review-source {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  text-align: right;
}

.certification {
  position: relative;
  overflow: hidden;
}

.certification::after {
  content: "";
  position: absolute;
  top: -14rem;
  right: -10rem;
  width: 35rem;
  height: 35rem;
  border: 1px solid rgba(215, 183, 125, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(215, 183, 125, 0.025),
    0 0 0 8rem rgba(215, 183, 125, 0.018);
}

.certification-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(19rem, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(4rem, 9vw, 9rem);
}

.certificate-frame {
  position: relative;
  padding: 1rem;
  background: #e9ddc7;
  border: 1px solid var(--gold);
  box-shadow: var(--shadow-deep);
}

.certificate-frame::before {
  content: "";
  position: absolute;
  inset: 0.45rem;
  pointer-events: none;
  border: 1px solid rgba(80, 54, 25, 0.38);
}

.certificate-image-button {
  position: relative;
  width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: zoom-in;
}

.certificate-image-button img {
  width: 100%;
  max-height: 43rem;
  object-fit: contain;
  filter: contrast(1.03) brightness(1.015) sepia(0.04);
}

.certificate-image-button span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.8rem;
  color: var(--paper);
  background: rgba(11, 23, 34, 0.88);
  border: 1px solid rgba(215, 183, 125, 0.48);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.certification-copy {
  max-width: 39rem;
}

.certification-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

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

.check-list li {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--gold-light);
  border-radius: 50%;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(17rem, 0.61fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-intro {
  position: sticky;
  top: 8.5rem;
}

.faq-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.medical-note {
  margin-top: 2rem;
  padding: 1.2rem 1.3rem;
  background: var(--ivory);
  border-left: 3px solid var(--gold);
}

.medical-note strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #7c5f34;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.medical-note p {
  margin: 0;
  color: #5a6266;
  font-size: 0.8rem;
}

.accordion {
  border-top: 1px solid var(--line);
}

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

.accordion summary {
  position: relative;
  padding: 1.75rem 3rem 1.75rem 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.3vw, 1.9rem);
  font-weight: 600;
  line-height: 1.15;
  list-style: none;
}

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

.accordion summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0.25rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  color: #7c6038;
  border: 1px solid rgba(124, 96, 56, 0.45);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  transform: translateY(-50%);
}

.accordion details[open] summary::after {
  content: "−";
}

.accordion details p {
  max-width: 43rem;
  margin-bottom: 1.75rem;
  padding-right: 3rem;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(25rem, 0.75fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.contact-copy {
  max-width: 40rem;
}

.contact-options {
  display: grid;
  gap: 0.8rem;
  margin: 2.5rem 0;
}

.contact-options a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(20, 32, 42, 0.18);
  text-decoration: none;
}

.contact-options a span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-options a strong {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
}

.contact-options a:hover strong {
  color: #876b3e;
}

.service-area {
  color: var(--muted);
  font-size: 0.8rem;
}

.contact-form {
  padding: clamp(1.5rem, 4vw, 2.7rem);
  background: var(--paper);
  border: 1px solid rgba(185, 146, 85, 0.28);
  box-shadow: var(--shadow-soft);
}

.form-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.7rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.form-heading p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
}

.form-heading span,
.privacy-line {
  color: var(--muted);
  font-size: 0.67rem;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

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

.form-grid label {
  display: grid;
  gap: 0.45rem;
  color: #4e5a61;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.optional-label {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 0.8rem 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(20, 32, 42, 0.28);
  border-radius: 0;
  outline: 0;
  font-size: 0.94rem;
  text-transform: none;
  transition: border-color 180ms ease;
}

.form-grid textarea {
  min-height: 6rem;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--gold);
}

.form-grid input:focus-visible,
.form-grid select:focus-visible,
.form-grid textarea:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 4px;
}

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

.full-button {
  width: 100%;
  margin-top: 0.4rem;
}

.full-button:disabled {
  cursor: wait;
  opacity: 0.64;
}

.cf-turnstile {
  min-height: 65px;
  margin-top: 1rem;
}

.form-status {
  min-height: 1.45rem;
  margin: 0.9rem 0 0;
  font-size: 0.78rem;
  line-height: 1.65;
}

.form-status.is-sending {
  color: var(--muted);
}

.form-status.is-success {
  color: #285d46;
}

.form-status.is-error {
  color: #8a2f2f;
}

.message-actions {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.message-actions p {
  margin-bottom: 0.8rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.message-actions .button {
  margin: 0.2rem 0.3rem 0.2rem 0;
}

.closing-blessing {
  padding: 4.5rem 0;
  color: var(--paper);
  background: var(--navy);
  text-align: center;
}

.closing-blessing p {
  margin-bottom: 0.55rem;
  color: var(--gold-light);
  font-family: var(--hebrew);
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.5;
}

.closing-blessing span {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
}

.site-footer {
  padding: 4.5rem 0 1.5rem;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand {
  display: grid;
  gap: 0.4rem;
}

.footer-brand strong {
  color: var(--gold-light);
  font-family: var(--hebrew);
  font-size: 1.45rem;
}

.footer-brand span {
  font-family: var(--serif);
  font-size: 1.05rem;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer-links a,
.footer-contact a {
  font-size: 0.75rem;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  color: rgba(255, 255, 255, 0.64);
  border-top: 1px solid var(--white-line);
  font-size: 0.65rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.mobile-contact-bar {
  position: fixed;
  z-index: 90;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  color: var(--paper);
  background: var(--navy-deep);
  border: 1px solid rgba(215, 183, 125, 0.48);
  border-radius: 999px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.32);
}

.mobile-contact-bar a {
  padding: 0.78rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-contact-bar a + a {
  color: var(--navy-deep);
  background: var(--gold-light);
}

.certificate-dialog {
  width: min(56rem, calc(100% - 2rem));
  max-height: 92vh;
  padding: 1.2rem;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--gold);
  box-shadow: var(--shadow-deep);
}

.certificate-dialog::backdrop {
  background: rgba(4, 11, 16, 0.86);
  backdrop-filter: blur(6px);
}

.dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.dialog-header .eyebrow {
  margin-bottom: 0.3rem;
}

.dialog-header h2 {
  margin: 0;
  font-size: 2.3rem;
}

.dialog-close {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--paper);
  background: var(--navy);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.certificate-dialog > img {
  width: 100%;
  max-height: calc(92vh - 7rem);
  object-fit: contain;
  background: #e9ddc7;
  filter: contrast(1.03) brightness(1.015) sepia(0.04);
}

.not-found-page {
  background: var(--navy);
}

.not-found {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 3rem 0;
}

.not-found::before {
  content: "404";
  position: absolute;
  z-index: -1;
  right: -0.04em;
  bottom: -0.26em;
  color: rgba(215, 183, 125, 0.055);
  font-family: var(--serif);
  font-size: min(42vw, 38rem);
  font-weight: 700;
  line-height: 1;
}

.not-found-inner {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  margin-inline: auto;
}

.not-found-brand {
  margin-bottom: clamp(4rem, 10vh, 7rem);
  color: var(--paper);
}

.not-found-brand .brand-copy small {
  color: rgba(255, 255, 255, 0.58);
}

.not-found h1 {
  max-width: 10ch;
}

.not-found > .not-found-inner > p:not(.eyebrow) {
  max-width: 38rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 68rem) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(21rem, 0.72fr);
    gap: 3rem;
  }

  .hero-trust {
    gap: 0.8rem;
  }

  .about-grid,
  .certification-grid,
  .faq-grid,
  .reviews-grid {
    gap: 4rem;
  }

  .journey-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem 1rem;
  }

  .journey-list li:nth-child(2)::after {
    display: none;
  }

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

@media (max-width: 54rem) {
  html {
    scroll-padding-top: 5.5rem;
  }

  .site-header {
    top: 0;
  }

  .topline {
    font-size: 0.66rem;
    letter-spacing: 0.06em;
  }

  .topline-inner {
    flex-wrap: wrap;
    gap: 0.2rem 0.65rem;
    padding-block: 0.4rem;
    text-align: center;
  }

  .header-inner {
    min-height: 4.7rem;
    flex-wrap: wrap;
    padding-block: 0.7rem;
  }

  .primary-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.1rem;
    padding-bottom: 0.35rem;
  }

  .js .header-inner {
    flex-wrap: nowrap;
    padding-block: 0;
  }

  .js .nav-toggle {
    display: grid;
  }

  .js .nav-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(0.34rem) rotate(45deg);
  }

  .js .nav-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .js .nav-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-0.34rem) rotate(-45deg);
  }

  .js .primary-nav {
    position: fixed;
    inset: 4.7rem 0 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 1.4rem;
    color: var(--paper);
    background: rgba(11, 23, 34, 0.98);
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 300ms;
  }

  .js .primary-nav.open {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition-delay: 0s;
  }

  .js .primary-nav a {
    color: var(--paper);
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 600;
  }

  .js .primary-nav .nav-cta {
    margin-top: 0.5rem;
    padding: 0.7rem 1.5rem;
    color: var(--navy-deep);
    background: var(--gold-light);
    font-family: var(--sans);
    font-size: 0.78rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .about-grid,
  .certification-grid,
  .reviews-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
    max-width: 42rem;
    margin-inline: auto;
  }

  .hero-photo-frame img {
    aspect-ratio: 1.25 / 1;
  }

  .about-images {
    width: min(30rem, 100%);
    min-height: 30rem;
    margin-inline: auto;
  }

  .about-copy,
  .reviews-intro,
  .certification-copy,
  .contact-copy {
    max-width: none;
  }

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

  .principle-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(20, 32, 42, 0.18);
  }

  .principle-card:last-child {
    border-bottom: 0;
  }

  .principle-number {
    margin-bottom: 3rem;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .faq-intro {
    position: static;
  }

  .mobile-contact-bar {
    display: grid;
  }

  .site-footer {
    padding-bottom: 6rem;
  }
}

@media (max-width: 38rem) {
  .container {
    width: min(calc(100% - 2rem), var(--container));
  }

  .section {
    padding: 4.7rem 0;
  }

  .brand-mark {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 0.82rem;
  }

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

  .brand-copy small {
    font-size: 0.56rem;
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2.45rem, 13vw, 3.5rem);
  }

  .hero {
    padding: 4rem 0 5rem;
  }

  .hero-intro {
    font-size: 0.98rem;
  }

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

  .hero-trust {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .hero-trust div {
    grid-template-columns: 5.5rem 1fr;
    align-items: baseline;
  }

  .hero-trust strong {
    font-size: 1.35rem;
  }

  .hero-visual {
    padding-right: 0.4rem;
  }

  .hero-quote {
    right: 0;
    width: 92%;
  }

  .trust-ribbon-inner {
    flex-wrap: wrap;
    gap: 0.6rem 0.8rem;
    padding-block: 1rem;
  }

  .trust-ribbon i:nth-of-type(even) {
    display: none;
  }

  .about-images {
    min-height: 25rem;
  }

  .portrait-card {
    width: 72%;
  }

  .about-seal {
    width: 7.7rem;
    right: 0.1rem;
  }

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

  .journey-list {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .journey-list li {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto;
    gap: 1.2rem;
    padding: 0;
  }

  .journey-list li::after {
    display: none;
  }

  .photo-track figure {
    width: 11rem;
  }

  .photo-track figure.photo-wide {
    width: 17rem;
  }

  .photo-track img {
    height: 14rem;
  }

  .review-card {
    min-height: 21rem;
    padding: 2rem 1.5rem;
  }

  .carousel-controls {
    flex-wrap: wrap;
  }

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

  .accordion summary {
    padding-block: 1.4rem;
    font-size: 1.45rem;
  }

  .accordion details p {
    padding-right: 0;
  }

  .form-heading {
    display: grid;
  }

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

  .full-field {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .footer-bottom {
    display: grid;
  }
}

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

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

  .js .photo-marquee {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scrollbar-color: var(--gold) rgba(255, 255, 255, 0.1);
  }

  .photo-marquee::before,
  .photo-marquee::after {
    display: none;
  }

  .photo-track {
    animation: none !important;
    transform: none !important;
  }

  .photo-track figure {
    scroll-snap-align: center;
  }
}
