/* =====================================================================
   Dr. Shlomo Steve Jackson — site stylesheet (v3)
   Editorial-manuscript meets warm, calm, reassuring.
   Frank Ruhl Libre (display, bilingual EN/HE) + Lora (body) + Assistant
   (ui labels). Cream paper, warm ink, antique gold, sage accents.
   ===================================================================== */

:root {
  --paper:        #f5ecdf;
  --paper-warm:   #f7e9d4;
  --paper-deep:   #ebdfca;
  --paper-darker: #e2d3b9;
  --sage-bg:      #e9ecdf;
  --rose:         #e9d3bd;
  --ink:          #3a2f24;
  --ink-warm:     #2c241b;
  --ink-soft:     #6e5d4e;
  --ink-faint:    #a08f7c;
  --gold:         #b48749;
  --gold-soft:    #cba36a;
  --gold-deep:    #8c6633;
  --sage:         #899680;
  --sage-deep:    #6c7765;
  --line:         rgba(58, 47, 36, 0.13);
  --line-faint:   rgba(58, 47, 36, 0.07);
  --line-light:   rgba(245, 236, 223, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Lora', Georgia, serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Atmosphere & paper grain */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 18% 18%, rgba(180, 135, 73, 0.08), transparent 65%),
    radial-gradient(ellipse 70% 50% at 86% 84%, rgba(137, 150, 128, 0.05), transparent 60%);
  pointer-events: none;
  z-index: 1;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='2' seed='5'/%3E%3CfeColorMatrix values='0 0 0 0 0.22 0 0 0 0 0.18 0 0 0 0 0.13 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}
main { position: relative; z-index: 2; }

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

/* =====================================================================
   TOPBAR
   ===================================================================== */
.topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1380px;
  margin: 0 auto;
  padding: 32px 56px;
}
.brand {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
}
.brand::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  align-self: center;
}
.brand__title {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  font-family: 'Lora', serif;
  font-size: 14px;
}
.topbar nav {
  display: flex;
  gap: 36px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: 'Assistant', sans-serif;
  font-weight: 500;
  justify-content: center;
}
.topbar nav a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.4s ease;
  position: relative;
}
.topbar nav a.is-active { color: var(--ink); }
.topbar nav a.is-active::after {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: -7px;
  height: 1px;
  background: var(--gold);
}
.topbar nav a:not(.is-active)::after {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: -7px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.45s ease;
  transform-origin: left;
}
.topbar nav a:hover { color: var(--ink); }
.topbar nav a:not(.is-active):hover::after { transform: scaleX(1); }

.lang-toggle {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  font-family: 'Assistant', sans-serif;
  font-weight: 500;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.lang-toggle:hover {
  border-color: var(--gold);
  color: var(--ink);
  background: var(--paper-warm);
}
.lang-toggle .he {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 14px;
  letter-spacing: 0;
  color: var(--gold);
  font-weight: 400;
}
.lang-toggle .en {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0;
  color: var(--gold-deep);
  text-transform: none;
}

/* =====================================================================
   COMMON BUILDING BLOCKS
   ===================================================================== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 56px; }
.container--narrow { max-width: 880px; }
.section { padding: 120px 0; position: relative; }
.section--warm { background: var(--paper-warm); }
.section--deep { background: var(--paper-deep); }
.section--sage { background: var(--sage-bg); }
.section--ink  { background: var(--ink-warm); color: var(--paper); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Assistant', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.eyebrow .dot {
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 4px;
  display: inline-block;
}
.eyebrow--centered {
  justify-content: center;
  gap: 18px;
}
.eyebrow--centered::before { display: none; }
.eyebrow--centered .rule {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.section--ink .eyebrow,
.section--ink .eyebrow--centered { color: var(--gold-soft); }
.section--ink .eyebrow::before,
.section--ink .eyebrow--centered .rule { background: var(--gold-soft); }

.section-title {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: inherit;
  margin: 24px 0 32px;
}
.section-title em {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.section--ink .section-title em { color: var(--gold-soft); }

.section-lede {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 600px;
}
.section--ink .section-lede { color: rgba(245, 236, 223, 0.75); }

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn-primary-wrap {
  position: relative;
  display: inline-block;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--ink);
  color: var(--paper);
  font-family: 'Assistant', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 19px 36px;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s, color 0.4s ease;
  cursor: pointer;
  isolation: isolate;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
  border-radius: inherit;
}
.btn-primary:hover { transform: translateY(-2px); color: var(--ink); }
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary > span,
.btn-primary > svg { position: relative; z-index: 1; }
.btn-primary svg { transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); }
.btn-primary:hover svg { transform: translateX(6px); }

.section--ink .btn-primary { background: var(--paper); color: var(--ink); }
.section--ink .btn-primary:hover { color: var(--ink); }

[dir="rtl"] .btn-primary svg { transform: scaleX(-1); }
[dir="rtl"] .btn-primary:hover svg { transform: scaleX(-1) translateX(6px); }
[dir="rtl"] .contact-item__value svg,
[dir="rtl"] .featured__view svg,
[dir="rtl"] .location__map-link svg { transform: scaleX(-1); }
[dir="rtl"] .contact-item__value:hover svg,
[dir="rtl"] .featured__view:hover svg,
[dir="rtl"] .location__map-link:hover svg { transform: scaleX(-1) translateX(4px); }

.btn-primary__caption {
  position: absolute;
  left: 50%;
  top: calc(100% + 14px);
  transform: translateX(-50%) translateY(-4px);
  white-space: nowrap;
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--gold-deep);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease 0.05s, transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1) 0.05s;
  text-transform: none;
}
.btn-primary-wrap:hover .btn-primary__caption {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
@media (max-width: 640px), (hover: none) {
  .btn-primary__caption { display: none; }
}

.btn-secondary {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding-bottom: 5px;
  letter-spacing: 0.005em;
}
.btn-secondary::after {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn-secondary:hover { color: var(--gold-deep); }
.btn-secondary:hover::after { transform-origin: left; transform: scaleX(0.6); }
.section--ink .btn-secondary { color: var(--paper); }
.section--ink .btn-secondary::after { background: var(--gold-soft); }
.section--ink .btn-secondary:hover { color: var(--gold-soft); }

/* =====================================================================
   REVEAL ANIMATIONS
   ===================================================================== */
@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.22s; }
.reveal[data-delay="3"] { transition-delay: 0.34s; }
.reveal[data-delay="4"] { transition-delay: 0.46s; }
.reveal[data-delay="5"] { transition-delay: 0.58s; }

/* =====================================================================
   PAGE HERO (centered editorial header for inner pages)
   ===================================================================== */
.page-hero {
  text-align: center;
  padding: 88px 56px 56px;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}
.page-hero .eyebrow { margin-bottom: 28px; }
.page-hero__title {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 400;
  font-size: clamp(48px, 6.4vw, 92px);
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-bottom: 28px;
}
.page-hero__title em {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--gold);
}
.page-hero__subtitle {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 48px;
}
.page-hero__rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
}
.page-hero .eyebrow,
.page-hero__title,
.page-hero__subtitle,
.page-hero__rule {
  opacity: 0;
  animation: rise 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.page-hero .eyebrow         { animation-delay: 0.20s; }
.page-hero__title           { animation-delay: 0.32s; }
.page-hero__subtitle        { animation-delay: 0.46s; }
.page-hero__rule            { animation-delay: 0.60s; }

.page-hero-image {
  margin: 56px auto 0;
  max-width: 1280px;
  padding: 0 56px;
  opacity: 0;
  animation: rise 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) 0.34s both;
}
.page-hero-image__frame {
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border-radius: 6px;
  background: var(--paper-deep);
  box-shadow:
    0 32px 64px -32px rgba(58, 47, 36, 0.32),
    0 8px 24px -10px rgba(58, 47, 36, 0.16);
  position: relative;
}
.page-hero-image__frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.88) sepia(0.06);
}
.page-hero-image__caption {
  margin-top: 16px;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--ink-faint);
  text-align: center;
  letter-spacing: 0.04em;
}

/* =====================================================================
   HOME HERO (split: text + portrait, with watermark letter)
   ===================================================================== */
.hero {
  max-width: 1380px;
  margin: 0 auto;
  padding: 64px 56px 120px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 96px;
  align-items: center;
  position: relative;
}
.hero__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 300;
  font-size: clamp(360px, 50vw, 620px);
  color: var(--ink);
  opacity: 0.025;
  user-select: none;
  pointer-events: none;
  line-height: 0.9;
  z-index: 0;
}
.hero__text { position: relative; z-index: 2; }
.hero__headline {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 400;
  font-size: clamp(44px, 5.4vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 36px 0 40px;
}
.hero__headline em {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
}
.hero__sub {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 580px;
  margin-bottom: 56px;
}
.hero__sub em { font-style: italic; color: var(--ink); }
.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.hero__image-wrap { position: relative; z-index: 2; }
.hero__image-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper-deep);
  border-radius: 6px;
  box-shadow:
    0 1px 0 rgba(58, 47, 36, 0.1) inset,
    0 32px 60px -28px rgba(58, 47, 36, 0.32),
    0 8px 22px -10px rgba(58, 47, 36, 0.18);
}
.hero__image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.88) sepia(0.06) brightness(0.99);
  transition: transform 14s ease-out;
}
.hero__image-wrap:hover .hero__image-frame img { transform: scale(1.05); }
.hero__image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(58, 47, 36, 0.12) 100%);
  pointer-events: none;
}
.hero__caption {
  margin-top: 28px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 0 4px;
}
.hero__caption-name {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: 0.01em;
  direction: rtl;
}
.hero__caption-meta {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
  text-align: end;
}
.hero__text > *,
.hero__image-wrap {
  opacity: 0;
  animation: rise 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero__text .eyebrow         { animation-delay: 0.18s; }
.hero__text .hero__headline  { animation-delay: 0.30s; }
.hero__text .hero__sub       { animation-delay: 0.46s; }
.hero__text .hero__cta-row   { animation-delay: 0.62s; }
.hero__text .reassure        { animation-delay: 0.78s; }
.hero__image-wrap            { animation-delay: 0.34s; animation-duration: 1.4s; }

.reassure {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  max-width: 600px;
  position: relative;
}
.reassure::before {
  content: '';
  position: absolute;
  top: -1px;
  inset-inline-start: 0;
  width: 56px;
  height: 1px;
  background: var(--gold);
}
.reassure__item { display: flex; flex-direction: column; gap: 8px; }
.reassure__icon { width: 22px; height: 22px; color: var(--gold); margin-bottom: 4px; }
.reassure__title {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
}
.reassure__desc {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* =====================================================================
   FAMILY MOMENTS — sliding marquee
   ===================================================================== */
.moments {
  position: relative;
  z-index: 2;
  margin: 24px 0 0;
  padding: 30px 0;
  border-top: 1px solid var(--line-faint);
  border-bottom: 1px solid var(--line-faint);
}
.moments__label {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--paper);
  padding: 0 24px;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
  z-index: 3;
  white-space: nowrap;
  max-width: calc(100vw - 32px);
  overflow: hidden;
  text-overflow: ellipsis;
}
.moments__viewport { overflow: hidden; width: 100%; }
.moments__track {
  display: flex;
  width: max-content;
  animation: slide 50s linear infinite;
}
.moments:hover .moments__track { animation-play-state: paused; }
.moments__slide {
  flex-shrink: 0;
  width: 240px;
  height: 320px;
  margin-inline-end: 24px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 12px 24px -16px rgba(58, 47, 36, 0.3);
}
.moments__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.92) sepia(0.04);
  transition: transform 1.2s ease, filter 1.2s ease;
}
.moments__slide:hover img {
  transform: scale(1.05);
  filter: contrast(1.02) saturate(1) sepia(0);
}
@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =====================================================================
   ABOUT-PAGE PATTERNS (lead, split, pull-quote, timeline, values)
   ===================================================================== */
.lead {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.lead__intro {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: clamp(20px, 1.9vw, 24px);
  line-height: 1.65;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.lead__intro::first-letter {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 400;
  font-size: 5em;
  float: left;
  line-height: 0.85;
  margin: 0.05em 0.12em 0 0;
  color: var(--gold);
}
[dir="rtl"] .lead__intro::first-letter {
  float: right;
  margin: 0.05em 0 0 0.12em;
}
.lead__intro em { font-style: italic; color: var(--gold-deep); }
.lead__intro + p {
  margin-top: 32px;
  font-family: 'Lora', serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 88px;
  align-items: center;
}
.split__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 6px;
  background: var(--paper-darker);
  box-shadow:
    0 30px 60px -28px rgba(58, 47, 36, 0.3),
    0 8px 20px -10px rgba(58, 47, 36, 0.16);
}
.split__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.86) sepia(0.07);
  transition: transform 14s ease-out;
}
.split__media:hover img { transform: scale(1.04); }
.split__copy h2 { margin-top: 24px; }
.split__copy p {
  font-family: 'Lora', serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.split__copy p em { color: var(--ink); font-style: italic; }

.pull-quote {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}
.pull-quote::before {
  content: '\201C';
  display: block;
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 96px;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 32px;
}
.pull-quote__text {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.pull-quote__attr {
  margin-top: 36px;
  font-family: 'Assistant', sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.pull-quote__attr::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
}

.timeline-head { text-align: center; margin-bottom: 80px; }
.timeline-head .eyebrow { justify-content: center; gap: 18px; margin-bottom: 24px; }
.timeline-head .eyebrow::before { display: none; }
.timeline-head .eyebrow .rule { width: 36px; height: 1px; background: var(--gold); display: inline-block; }
.timeline-head h2 { margin: 0 auto; max-width: 760px; }

.timeline {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 152px;
  width: 1px;
  background: var(--line);
}
.timeline__item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 64px;
  padding: 28px 0;
  position: relative;
  align-items: baseline;
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: 147px;
  top: 38px;
  width: 11px;
  height: 11px;
  background: var(--paper);
  border: 1px solid var(--gold);
  border-radius: 50%;
}
.timeline__year {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--gold-deep);
  letter-spacing: 0.01em;
  text-align: end;
}
.timeline__year em {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--gold);
}
.timeline__body h3 {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 6px;
}
.timeline__body p {
  font-family: 'Lora', serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
.value {
  position: relative;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.value::before {
  content: '';
  position: absolute;
  top: -1px;
  inset-inline-start: 0;
  width: 36px; height: 1px;
  background: var(--gold);
}
.value__num {
  font-family: 'Frank Ruhl Libre', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  display: block;
}
.value h3 {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 500;
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 14px;
}
.value h3 em {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--gold);
}
.value p {
  font-family: 'Lora', serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* =====================================================================
   ABOUT TEASER (used on home)
   ===================================================================== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.about__media { position: relative; }
.about__media-frame {
  aspect-ratio: 5 / 6;
  overflow: hidden;
  border-radius: 6px;
  background: var(--paper-darker);
  box-shadow:
    0 30px 60px -28px rgba(58, 47, 36, 0.3),
    0 8px 20px -10px rgba(58, 47, 36, 0.16);
}
.about__media-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.85) sepia(0.08);
  transition: transform 14s ease-out;
}
.about__media:hover .about__media-frame img { transform: scale(1.04); }
.about__pull {
  position: absolute;
  inset-inline-end: -80px;
  bottom: 60px;
  background: var(--paper);
  padding: 28px 32px;
  border-radius: 4px;
  max-width: 280px;
  box-shadow:
    0 24px 48px -24px rgba(58, 47, 36, 0.3),
    0 8px 16px -8px rgba(58, 47, 36, 0.18);
  border-inline-start: 2px solid var(--gold);
}
.about__pull-text {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}
.about__pull-attr {
  margin-top: 14px;
  font-family: 'Assistant', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
}
.about__copy p {
  font-family: 'Lora', serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.about__copy p:first-of-type::first-line {
  font-weight: 500;
  color: var(--ink);
}
.about__copy p em { color: var(--ink); font-style: italic; }
.about__cta-row { margin-top: 36px; }

/* =====================================================================
   PROCESS (home page)
   ===================================================================== */
.process__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: end;
  margin-bottom: 80px;
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.process__steps::before {
  content: '';
  position: absolute;
  top: -1px;
  inset-inline-start: 0;
  width: 80px;
  height: 1px;
  background: var(--gold);
}
.process__step {
  padding: 48px 32px 56px;
  border-inline-end: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.process__step:last-child { border-inline-end: none; }
.process__step::before {
  content: '';
  position: absolute;
  bottom: -2px;
  inset-inline-start: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.process__step:hover::before { width: 100%; }
.process__step-num {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.16em;
}
.process__step-title {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--ink);
  line-height: 1.2;
}
.process__step-title em {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.process__step-desc {
  font-family: 'Lora', serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* =====================================================================
   LETTERS (home preview cards + standalone page)
   ===================================================================== */
.letters__head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 96px;
  align-items: end;
  margin-bottom: 64px;
}
.letters__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.letter-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  background: var(--paper-deep);
  box-shadow:
    0 18px 32px -22px rgba(58, 47, 36, 0.3),
    0 4px 12px -6px rgba(58, 47, 36, 0.15);
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.7s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.letter-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 32px 48px -24px rgba(58, 47, 36, 0.35),
    0 12px 20px -8px rgba(58, 47, 36, 0.2);
}
.letter-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(0.1) contrast(0.98) brightness(1.02);
  transition: transform 1s ease;
}
.letter-card:hover img { transform: scale(1.03); }
.letter-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px 22px;
  background: linear-gradient(180deg, transparent, rgba(58, 47, 36, 0.85));
  color: var(--paper);
}
.letter-card__caption {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 8px;
}
.letter-card__attr {
  font-family: 'Assistant', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.8;
}
.letters__more { margin-top: 56px; text-align: center; }

.featured {
  display: grid;
  gap: 120px;
}
.featured__item {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 88px;
  align-items: center;
}
.featured__item:nth-child(even) {
  grid-template-columns: 1.05fr 0.95fr;
}
.featured__item:nth-child(even) .featured__media { order: 2; }
.featured__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  background: var(--paper-deep);
  box-shadow:
    0 32px 64px -32px rgba(58, 47, 36, 0.32),
    0 12px 24px -12px rgba(58, 47, 36, 0.18);
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: block;
  text-decoration: none;
}
.featured__media:hover { transform: translateY(-6px); }
.featured__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(0.08) contrast(0.98) brightness(1.02);
  transition: transform 1s ease;
}
.featured__media:hover img { transform: scale(1.03); }
.featured__media-corner {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 14px;
  color: var(--paper);
  background: rgba(58, 47, 36, 0.7);
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  backdrop-filter: blur(6px);
}
.featured__copy { padding: 0 16px; }
.featured__quote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 32px;
  position: relative;
  padding-top: 48px;
}
.featured__quote::before {
  content: '\201C';
  position: absolute;
  top: -12px;
  inset-inline-start: -8px;
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 80px;
  color: var(--gold);
  line-height: 0.5;
}
.featured__attr {
  font-family: 'Assistant', sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.featured__attr::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
}
.featured__view {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--gold-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  transition: color 0.3s;
}
.featured__view svg { transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); }
.featured__view:hover svg { transform: translateX(4px); }
.featured__view:hover { color: var(--ink); }

.archive-head { text-align: center; margin-bottom: 56px; }
.archive-head .eyebrow { margin-bottom: 24px; }
.archive-head h2 { max-width: 760px; margin: 0 auto 16px; }
.archive-head p {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}
.archive-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.archive-item {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 3px;
  background: var(--paper-deep);
  box-shadow: 0 8px 16px -10px rgba(58, 47, 36, 0.22);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.archive-item:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 18px 32px -16px rgba(58, 47, 36, 0.34);
  z-index: 5;
}
.archive-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(0.06) contrast(0.98) brightness(1.01);
  transition: filter 0.5s;
}
.archive-item:hover img { filter: sepia(0) contrast(1) brightness(1); }
.archive-item__num {
  position: absolute;
  bottom: 6px;
  inset-inline-end: 8px;
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 11px;
  color: var(--paper);
  background: rgba(58, 47, 36, 0.6);
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s;
}
.archive-item:hover .archive-item__num { opacity: 1; }

/* =====================================================================
   GALLERY (standalone page)
   ===================================================================== */
.feature-photo {
  max-width: 1280px;
  margin: 0 auto 72px;
  padding: 0 56px;
  opacity: 0;
  animation: rise 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) 0.34s both;
}
.feature-photo__frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 6px;
  background: var(--paper-deep);
  box-shadow:
    0 32px 64px -32px rgba(58, 47, 36, 0.32),
    0 12px 24px -12px rgba(58, 47, 36, 0.18);
  position: relative;
  display: block;
}
.feature-photo__frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.92) sepia(0.04);
  transition: transform 14s ease-out;
}
.feature-photo__frame:hover img { transform: scale(1.04); }
.feature-photo__caption {
  margin-top: 16px;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ink-faint);
  text-align: center;
  letter-spacing: 0.04em;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--paper-deep);
  box-shadow: 0 18px 32px -22px rgba(58, 47, 36, 0.28);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s;
  display: block;
  text-decoration: none;
}
.gallery__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 48px -24px rgba(58, 47, 36, 0.34);
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.92) sepia(0.04);
  transition: transform 1.2s ease, filter 1.2s ease;
}
.gallery__item:hover img {
  transform: scale(1.04);
  filter: contrast(1.02) saturate(1) sepia(0);
}
.gallery__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px 24px 18px;
  background: linear-gradient(180deg, transparent, rgba(58, 47, 36, 0.78));
  color: var(--paper);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s, transform 0.5s;
}
.gallery__item:hover .gallery__caption {
  opacity: 1;
  transform: translateY(0);
}
.gallery__caption-text {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 14px;
}
.gallery__caption-num {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  opacity: 0.7;
}
.gallery__item--lg-tall { grid-column: span 5; grid-row: span 2; aspect-ratio: 4 / 5; }
.gallery__item--md-wide { grid-column: span 7; aspect-ratio: 16 / 10; }
.gallery__item--md-square { grid-column: span 4; aspect-ratio: 1 / 1; }
.gallery__item--md { grid-column: span 4; aspect-ratio: 4 / 5; }

.gallery-note {
  max-width: 760px;
  margin: 96px auto 0;
  text-align: center;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.gallery-note::before, .gallery-note::after {
  content: '';
  position: absolute;
  width: 64px;
  height: 1px;
  background: var(--gold);
}
.gallery-note::before { top: -1px; left: 50%; transform: translateX(-50%); }
.gallery-note::after { bottom: -1px; left: 50%; transform: translateX(-50%); }

/* =====================================================================
   CONTACT PAGE
   ===================================================================== */
.direct {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.direct__card {
  text-align: center;
  padding: 56px 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s, border-color 0.5s;
}
.direct__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -28px rgba(58, 47, 36, 0.22);
  border-color: rgba(180, 135, 73, 0.28);
}
.direct__label {
  font-family: 'Assistant', sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.direct__label::before, .direct__label::after {
  content: '';
  width: 22px; height: 1px;
  background: var(--gold);
}
.direct__value {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: 0.005em;
  color: var(--ink);
  text-decoration: none;
  display: block;
  margin-bottom: 14px;
  transition: color 0.4s;
}
.direct__value:hover { color: var(--gold-deep); }
.direct__note {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ink-faint);
  line-height: 1.55;
}

.form-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 88px;
  align-items: start;
  max-width: 1140px;
  margin: 0 auto;
}
.form-intro h2 { margin-top: 16px; }
.form-intro p {
  font-family: 'Lora', serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.form-intro p em { color: var(--ink); font-style: italic; }
.form-intro .small {
  margin-top: 28px;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ink-faint);
  line-height: 1.6;
  padding: 18px 22px;
  background: var(--paper-deep);
  border-inline-start: 2px solid var(--gold);
  border-radius: 0 4px 4px 0;
}
.form { display: grid; gap: 22px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form__field { display: flex; flex-direction: column; gap: 8px; }
.form__label {
  font-family: 'Assistant', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
}
.form__input,
.form__textarea {
  font-family: 'Lora', serif;
  font-size: 17px;
  color: var(--ink);
  padding: 14px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: border-color 0.4s, background 0.4s, box-shadow 0.4s;
  outline: none;
  width: 100%;
}
.form__input:focus,
.form__textarea:focus {
  border-color: var(--gold);
  background: var(--paper-warm);
  box-shadow: 0 0 0 3px rgba(180, 135, 73, 0.12);
}
.form__textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}
.form__submit-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 12px;
}
.form__note {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--ink-faint);
}

.expect { max-width: 1100px; margin: 0 auto; text-align: center; }
.expect__head { margin-bottom: 56px; }
.expect__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.expect__step {
  padding: 36px 28px 40px;
  text-align: start;
  border-inline-end: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.expect__step:last-child { border-inline-end: none; }
.expect__step::before {
  content: '';
  position: absolute;
  bottom: -2px;
  inset-inline-start: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.expect__step:hover::before { width: 100%; }
.expect__step-num {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.expect__step-title {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 10px;
}
.expect__step-title em {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--gold);
}
.expect__step-desc {
  font-family: 'Lora', serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.location {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.location__map {
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 48px -28px rgba(58, 47, 36, 0.28);
  position: relative;
  background:
    radial-gradient(circle at 50% 42%, rgba(180, 135, 73, 0.12), transparent 30%),
    linear-gradient(135deg, var(--paper-deep), var(--paper-darker));
  text-decoration: none;
  display: block;
}
.location__map::after {
  content: '';
  position: absolute;
  top: 38%;
  left: 50%;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  border: 4px solid var(--paper);
  transform: translate(-50%, -50%);
  box-shadow: 0 6px 14px -4px rgba(58, 47, 36, 0.3);
}
.location__map-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
}
.location__map-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Assistant', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  text-decoration: none;
  font-weight: 600;
  margin-top: 8px;
  transition: color 0.3s;
}
.location__map-link:hover { color: var(--ink); }
.location__details h3 {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 16px;
}
.location__details p {
  font-family: 'Lora', serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.location__details em { color: var(--ink); font-style: italic; }
.location__hours {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.location__hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-family: 'Lora', serif;
  font-size: 15px;
  color: var(--ink-soft);
}
.location__hours-row span:first-child { color: var(--ink); letter-spacing: 0.02em; }

/* =====================================================================
   VOICES (testimonial carousel)
   ===================================================================== */
.voices {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 56px;
  position: relative;
  z-index: 2;
}
.voices__heading {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.voices__heading::before, .voices__heading::after {
  content: '';
  width: 56px;
  height: 1px;
  background: var(--gold);
}
.voices__viewport {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}
.voices__slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
}
.voices__slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.voices__quote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.55;
  color: var(--ink);
  max-width: 760px;
  margin-bottom: 28px;
  position: relative;
}
.voices__quote::before {
  content: '\201C';
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 64px;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
  font-style: normal;
}
.voices__attr {
  font-family: 'Assistant', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
}
.voices__dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
}
.voices__dot {
  width: 30px;
  height: 1px;
  background: var(--line);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.4s, height 0.4s;
}
.voices__dot.is-active {
  background: var(--gold);
  height: 2px;
}

/* =====================================================================
   CONTACT (home section + bottom CTAs)
   ===================================================================== */
.contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 96px;
  align-items: center;
}
.contact__copy h2 { color: var(--paper); }
.contact__copy h2 em { color: var(--gold-soft); }
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-item {
  border-bottom: 1px solid var(--line-light);
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-item__label {
  font-family: 'Assistant', sans-serif;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
}
.contact-item__value {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 400;
  font-size: 26px;
  color: var(--paper);
  letter-spacing: 0.005em;
  text-decoration: none;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.contact-item__value:hover { color: var(--gold-soft); }
.contact-item__value svg { opacity: 0.5; transition: opacity 0.3s, transform 0.3s; }
.contact-item__value:hover svg { opacity: 1; transform: translateX(4px); }
.contact-item__note {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 13px;
  color: rgba(245, 236, 223, 0.55);
  margin-top: 4px;
}

.cta-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-block .eyebrow {
  justify-content: center;
  gap: 18px;
  margin-bottom: 24px;
  color: var(--gold-soft);
}
.cta-block .eyebrow::before { display: none; }
.cta-block .eyebrow .rule {
  width: 36px; height: 1px;
  background: var(--gold-soft);
  display: inline-block;
}
.cta-block h2 { color: var(--paper); }
.cta-block h2 em { color: var(--gold-soft); }
.cta-block p {
  font-family: 'Lora', serif;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(245, 236, 223, 0.75);
  margin-bottom: 48px;
}
.cta-block__row {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer {
  background: var(--ink-warm);
  color: rgba(245, 236, 223, 0.7);
  padding: 64px 0 36px;
  border-top: 1px solid var(--line-light);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-light);
}
.footer__brand {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 22px;
  color: var(--paper);
  font-weight: 400;
  display: block;
  margin-bottom: 14px;
}
.footer__brand-he {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 18px;
  color: var(--gold-soft);
  direction: rtl;
  display: block;
  margin-bottom: 18px;
}
.footer__tagline {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(245, 236, 223, 0.6);
  line-height: 1.6;
  max-width: 320px;
}
.footer__col-title {
  font-family: 'Assistant', sans-serif;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
  margin-bottom: 18px;
}
.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__list a, .footer__list span {
  font-family: 'Lora', serif;
  font-size: 15px;
  color: rgba(245, 236, 223, 0.78);
  text-decoration: none;
  transition: color 0.3s;
}
.footer__list a:hover { color: var(--gold-soft); }
.footer__bottom {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__meta {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 12px;
  color: rgba(245, 236, 223, 0.45);
  letter-spacing: 0.04em;
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 880px) and (min-width: 641px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 980px) {
  .container { padding: 0 28px; }
  .section { padding: 96px 0; }
  .topbar { padding: 22px 28px; grid-template-columns: 1fr auto; }
  .topbar nav { display: none; }

  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 40px 28px 72px;
  }
  .hero__image-wrap { order: -1; max-width: 380px; margin: 0 auto; width: 100%; }
  .reassure { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero__watermark { font-size: 280px; }
  .moments__slide { width: 200px; height: 260px; }

  .about, .contact { grid-template-columns: 1fr; gap: 56px; }
  .about__pull {
    position: relative;
    inset-inline-end: 0;
    bottom: 0;
    margin: -36px 16px 0 auto;
    max-width: 280px;
  }

  .process__head { grid-template-columns: 1fr; gap: 28px; margin-bottom: 56px; }
  .process__steps { grid-template-columns: 1fr 1fr; }
  .process__step:nth-child(2) { border-inline-end: none; }
  .process__step:nth-child(1), .process__step:nth-child(2) { border-bottom: 1px solid var(--line); }

  .letters__head { grid-template-columns: 1fr; gap: 28px; }
  .letters__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .voices { padding: 0 28px; }

  .page-hero { padding: 64px 28px 40px; }
  .page-hero-image { padding: 0 28px; }
  .page-hero-image__frame { aspect-ratio: 4 / 3; }

  .split { grid-template-columns: 1fr; gap: 56px; }
  .timeline::before { left: 110px; }
  [dir="rtl"] .timeline::before { left: auto; right: 110px; }
  .timeline__item { grid-template-columns: 96px 1fr; gap: 40px; }
  .timeline__item::before { left: 105px; }
  [dir="rtl"] .timeline__item::before { left: auto; right: 105px; }
  .values { grid-template-columns: 1fr; gap: 36px; }

  .featured { gap: 80px; }
  .featured__item, .featured__item:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .featured__item:nth-child(even) .featured__media { order: -1; }
  .featured__media { max-width: 480px; margin: 0 auto; }
  .archive-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }

  .feature-photo { padding: 0 28px; }
  .feature-photo__frame { aspect-ratio: 4 / 3; }
  .gallery { grid-template-columns: repeat(6, 1fr); gap: 18px; }
  .gallery__item--lg-tall { grid-column: span 6; aspect-ratio: 4 / 5; }
  .gallery__item--md-wide { grid-column: span 6; }
  .gallery__item--md-square { grid-column: span 3; }
  .gallery__item--md { grid-column: span 3; }

  .direct { grid-template-columns: 1fr; gap: 24px; }
  .form-block { grid-template-columns: 1fr; gap: 48px; }
  .expect__steps { grid-template-columns: 1fr; }
  .expect__step { border-inline-end: none; }
  .location { grid-template-columns: 1fr; gap: 36px; }
  .location__map { max-width: 460px; aspect-ratio: 4 / 5; margin: 0 auto; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .topbar { padding: 18px 20px; }
  .brand { font-size: 15px; gap: 10px; }
  .brand::before { width: 16px; }

  .hero { padding: 28px 20px 60px; gap: 40px; }
  .hero__headline { font-size: 38px; line-height: 1.08; margin: 28px 0 28px; }
  .hero__sub { font-size: 16px; line-height: 1.65; margin-bottom: 40px; }
  .hero__cta-row { flex-direction: column; align-items: stretch; gap: 20px; margin-bottom: 48px; }
  .btn-primary { justify-content: center; padding: 17px 28px; font-size: 12px; }
  .btn-secondary { font-size: 17px; align-self: flex-start; }
  .reassure { grid-template-columns: 1fr; gap: 18px; padding-top: 28px; }
  .hero__watermark { font-size: 220px; }
  .hero__caption-name { font-size: 18px; }
  .hero__caption-meta { font-size: 12px; }

  .section-title { font-size: 32px; line-height: 1.1; margin: 18px 0 24px; }
  .section-lede { font-size: 16px; line-height: 1.65; }

  .moments { padding: 28px 0 24px; }
  .moments__slide { width: 160px; height: 220px; }
  .moments__label { font-size: 12px; padding: 0 14px; }

  .about__pull { margin: -24px 0 0; max-width: 100%; padding: 22px 24px; }
  .about__pull-text { font-size: 14px; }
  .about__copy p { font-size: 16px; line-height: 1.7; }

  .process__steps { grid-template-columns: 1fr; }
  .process__step { border-inline-end: none; border-bottom: 1px solid var(--line); padding: 32px 0; }
  .process__step:nth-child(1), .process__step:nth-child(2) { border-bottom: 1px solid var(--line); }
  .process__step:last-child { border-bottom: none; }
  .process__step-title { font-size: 22px; }
  .process__step-desc { font-size: 14.5px; }

  .letters__grid { grid-template-columns: 1fr; gap: 20px; }
  .letter-card { aspect-ratio: 4 / 3; }
  .letters__more { margin-top: 40px; }

  .voices { padding: 0 20px; }
  .voices__heading { font-size: 12px; gap: 12px; margin-bottom: 36px; }
  .voices__heading::before, .voices__heading::after { width: 28px; }
  .voices__viewport { min-height: 240px; }
  .voices__quote { font-size: 19px; }
  .voices__quote::before { font-size: 48px; top: -22px; }

  .contact { gap: 40px; }
  .contact-item__value { font-size: 22px; }
  .contact-item__note { font-size: 12px; }

  .page-hero { padding: 40px 20px 32px; }
  .page-hero__title { font-size: 44px; }
  .page-hero__subtitle { font-size: 17px; }
  .page-hero-image { padding: 0 20px; margin-top: 36px; }

  .lead { padding: 0 8px; }
  .lead__intro { font-size: 19px; }
  .lead__intro::first-letter { font-size: 4.4em; }
  .lead__intro + p { font-size: 16px; }

  .pull-quote__text { font-size: 22px; }
  .pull-quote::before { font-size: 64px; }

  .timeline { padding: 0 4px; }
  .timeline::before { left: 0; }
  [dir="rtl"] .timeline::before { left: auto; right: 0; }
  .timeline__item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 24px 0 24px 28px;
    border-left: 1px solid var(--line);
    margin-left: 0;
  }
  [dir="rtl"] .timeline__item {
    padding: 24px 28px 24px 0;
    border-left: none;
    border-right: 1px solid var(--line);
  }
  .timeline__item::before { left: -5px; top: 30px; }
  [dir="rtl"] .timeline__item::before { left: auto; right: -5px; }
  .timeline__year { text-align: start; font-size: 16px; margin-bottom: 4px; }
  .timeline__body h3 { font-size: 18px; }
  .value h3 { font-size: 22px; }

  .featured { gap: 64px; }
  .featured__quote { font-size: 19px; padding-top: 36px; }
  .featured__quote::before { font-size: 56px; }
  .archive-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .archive-item__num { font-size: 10px; padding: 1px 6px; opacity: 1; }

  .feature-photo { padding: 0 20px; margin-bottom: 48px; }
  .gallery { grid-template-columns: 1fr; gap: 16px; }
  .gallery__item--lg-tall, .gallery__item--md-wide, .gallery__item--md-square, .gallery__item--md {
    grid-column: span 1; aspect-ratio: 4 / 5;
  }
  .gallery__caption { opacity: 1; transform: none; }
  .gallery-note { font-size: 16px; padding: 36px 0; margin-top: 64px; }

  .direct__card { padding: 40px 24px; }
  .direct__value { font-size: 30px; }
  .form__row { grid-template-columns: 1fr; gap: 22px; }
  .form__submit-row { flex-direction: column; align-items: stretch; gap: 18px; }
  .form__submit-row .btn-primary { justify-content: center; }
  .location__details h3 { font-size: 22px; }

  .cta-block__row { flex-direction: column; gap: 24px; }
  .cta-block p { font-size: 16px; }

  .footer { padding: 48px 0 28px; }
  .footer__top { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .footer__brand { font-size: 18px; }
  .footer__brand-he { font-size: 16px; }
  .footer__tagline { font-size: 13px; max-width: none; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; margin-top: 24px; }
  .footer__meta { font-size: 11px; }
}

@media (max-width: 380px) {
  .hero__headline { font-size: 34px; }
  .section-title { font-size: 28px; }
  .moments__slide { width: 140px; height: 200px; }
  .voices__quote { font-size: 17px; }
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
}
