:root {
  color-scheme: light dark;
  --navy: #071f55;
  --navy-dark: #041432;
  --gold: #c7a15b;
  --gold-dark: #9b7431;
  --ink: #15213a;
  --muted: #657086;
  --line: #ded8cd;
  --paper: #fbfaf7;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(7, 31, 85, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(199, 161, 91, 0.75);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(199, 161, 91, 0.35);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
}

.brand,
.site-footer div {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.5vw, 1.45rem);
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.site-nav {
  display: flex;
  gap: 24px;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a,
.site-footer a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--gold-dark);
}

.site-nav a[aria-current="page"] {
  color: var(--gold-dark);
}

.site-footer a[aria-current="page"] {
  color: var(--gold);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--navy);
  padding: 12px 22px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: var(--navy);
}

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

.button:hover,
.header-cta:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  min-height: 580px;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  padding: 50px clamp(20px, 6vw, 92px);
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.98) 0%, rgba(251, 250, 247, 0.92) 46%, rgba(251, 250, 247, 0.7) 100%),
    linear-gradient(135deg, rgba(199, 161, 91, 0.14), transparent 42%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 6vw, 6rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
}

h3 {
  font-size: 1.45rem;
}

.lead {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: min(54vw, 520px);
  border-left: 1px solid rgba(199, 161, 91, 0.55);
  box-shadow: 0 24px 60px rgba(7, 31, 85, 0.16);
}

.hero-visual img {
  width: 100%;
  height: min(54vw, 520px);
  object-fit: cover;
  object-position: 25% center;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    url("assets/global-reach-overlay.svg") 42% top / 116% auto no-repeat,
    linear-gradient(90deg, rgba(251, 250, 247, 0.78), rgba(251, 250, 247, 0.1) 34%, rgba(7, 31, 85, 0.08)),
    linear-gradient(0deg, rgba(7, 31, 85, 0.28), transparent 42%);
}

.hero-badge {
  position: absolute;
  left: clamp(18px, 4vw, 42px);
  bottom: clamp(18px, 4vw, 42px);
  z-index: 1;
  width: min(260px, 48%);
  padding: 18px;
  border: 1px solid rgba(199, 161, 91, 0.55);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(7, 31, 85, 0.18);
}

.hero-badge img {
  height: auto;
  object-fit: contain;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
  color: var(--white);
}

.trust-strip div {
  display: flex;
  min-height: 116px;
  align-items: center;
  gap: 16px;
  padding: 26px clamp(18px, 3vw, 48px);
  border-right: 1px solid rgba(199, 161, 91, 0.45);
}

.trust-strip div:last-child {
  border-right: 0;
}

.icon,
.service-number,
.process span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
}

.trust-strip p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.promise-bridge {
  position: relative;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 clamp(20px, 6vw, 92px);
  border-block: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
}

.promise-bridge::after {
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 24px;
  height: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.promise-bridge div {
  position: relative;
  min-height: 96px;
  justify-content: center;
  padding: 22px clamp(16px, 3vw, 34px);
  border-right: 0;
}

.promise-bridge div:not(:last-child)::after {
  position: absolute;
  right: 0;
  top: 50%;
  width: 56px;
  border-top: 1px solid rgba(199, 161, 91, 0.75);
  content: "";
  transform: translate(50%, -50%);
}

.promise-bridge .icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 42px;
  border: 1px solid rgba(199, 161, 91, 0.85);
  border-radius: 50%;
  font-size: 0.92rem;
}

.section,
.split-section,
.process,
.contact-section {
  padding: 58px clamp(20px, 6vw, 92px);
}

.section.promise-detail-section {
  padding-top: 46px;
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.promise-detail-section .service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  min-height: 248px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(7, 31, 85, 0.05);
}

.service-number {
  display: block;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.service-card p,
.process p,
.split-copy p,
.contact-copy p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link:hover {
  color: var(--gold-dark);
}

.page-hero {
  padding: 96px clamp(20px, 6vw, 92px) 64px;
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.98), rgba(251, 250, 247, 0.84)),
    url("assets/hero-western-wall-flag.jpg") right center / min(760px, 58vw) auto no-repeat;
  border-bottom: 1px solid var(--line);
}

.page-hero h1,
.page-split h1,
.page-contact h1 {
  max-width: 840px;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
}

.page-hero .lead {
  max-width: 680px;
}

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

.page-split {
  border-top: 0;
}

.feature-list {
  display: grid;
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}

.policy-section {
  display: grid;
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.policy-section article {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.policy-section article:last-child {
  border-bottom: 0;
}

.policy-section p {
  max-width: 820px;
  color: var(--muted);
}

.feature-list article {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.feature-list .approach-intro {
  padding-bottom: 18px;
}

.feature-list .approach-intro p {
  max-width: 860px;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-list h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.55rem);
}

.feature-list p {
  max-width: 760px;
  color: var(--muted);
}

.glance-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 22px;
  max-width: 760px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.glance-list li {
  padding-left: 18px;
  position: relative;
  color: var(--navy);
  font-size: 0.94rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.glance-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

.page-contact {
  min-height: 640px;
  align-items: start;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  display: grid;
  gap: 14px;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(7, 31, 85, 0.05);
}

.featured-post {
  grid-column: span 3;
  padding: clamp(32px, 5vw, 54px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84)),
    url("assets/hero-western-wall-flag.jpg") right center / min(620px, 48vw) auto no-repeat;
}

.post-meta {
  margin: 0;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card h2 {
  max-width: 760px;
  font-size: clamp(1.7rem, 2.5vw, 2.8rem);
}

.blog-card h2 a {
  color: inherit;
  text-decoration: none;
}

.blog-card h2 a:hover,
.blog-card h2 a:focus-visible {
  color: var(--gold-dark);
}

.blog-card p:not(.post-meta) {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 480px);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  background: var(--white);
  border-block: 1px solid var(--line);
}

.proof-points {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.proof-points div {
  display: grid;
  gap: 4px;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
}

.proof-points strong {
  color: var(--navy);
}

.proof-points span {
  color: var(--muted);
}

.brand-panel {
  display: grid;
  place-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.brand-panel img {
  width: min(100%, 420px);
  object-fit: contain;
}

.portrait-panel {
  display: grid;
  position: relative;
  isolation: isolate;
  min-height: 520px;
  place-items: end center;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(251, 250, 247, 0.98)),
    linear-gradient(135deg, rgba(199, 161, 91, 0.13), transparent 44%);
  box-shadow: 0 16px 38px rgba(7, 31, 85, 0.1);
}

.portrait-panel::before {
  content: "";
  position: absolute;
  inset: clamp(14px, 2.2vw, 24px);
  z-index: 0;
  background-image: url("assets/ml-emblem-backdrop-balanced.png");
  background-size: 168px 146px;
  background-repeat: repeat;
  background-position: left top;
  opacity: 0.9;
}

.portrait-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(251, 250, 247, 0.62)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.48), transparent 34%, transparent 66%, rgba(255, 255, 255, 0.48));
}

.portrait-panel img {
  position: relative;
  z-index: 1;
  width: min(92%, 430px);
  max-height: 530px;
  object-fit: contain;
  object-position: bottom center;
}

.portrait-panel-inline {
  display: none;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-row.four-step {
  grid-template-columns: repeat(4, 1fr);
}

.process article {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-top: 1px solid var(--gold);
}

.fee-summary {
  padding-block: 42px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.fee-summary .section-heading {
  max-width: 760px;
  margin: 0 0 22px;
  text-align: left;
}

.fee-summary .section-heading h2 {
  font-size: clamp(1.85rem, 2.4vw, 2.8rem);
}

.fees-row {
  gap: 0;
  border: 1px solid var(--line);
  background: var(--paper);
}

.fees-row article {
  gap: 8px;
  min-height: 0;
  padding: 22px 24px;
  border-top: 0;
  border-right: 1px solid var(--line);
}

.fees-row article:last-child {
  border-right: 0;
}

.fees-row h3 {
  font-size: 1.25rem;
}

.fees-row p {
  margin: 0;
}

.process span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: 1.4rem;
}

.testimonial {
  padding: 48px clamp(20px, 10vw, 180px);
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(rgba(4, 20, 50, 0.86), rgba(4, 20, 50, 0.88)),
    url("assets/night-skyline-web.jpg") center / cover;
}

.testimonials-section {
  padding: 78px clamp(20px, 7vw, 110px);
  text-align: center;
  background: var(--cream);
}

.testimonials-section h2 {
  margin-bottom: 30px;
}

.testimonial-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
}

.testimonial-card,
.testimonial-empty {
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(7, 31, 85, 0.08);
}

a.testimonial-card {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

a.testimonial-card:hover,
a.testimonial-card:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 18px 40px rgba(7, 31, 85, 0.14);
  transform: translateY(-2px);
}

.testimonial-gallery-list {
  max-height: 68vh;
  overflow-y: auto;
  padding: 4px 12px 24px 4px;
  scrollbar-color: var(--gold) var(--cream);
}

.testimonial-gallery-intro {
  max-width: 720px;
  margin: 0 auto 30px;
  color: var(--slate);
}

.testimonial-card blockquote {
  margin: 0 0 18px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  line-height: 1.55;
}

.testimonial-card p {
  margin: 0;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonials-section .closing-actions {
  justify-content: center;
  margin-top: 28px;
}

.testimonial-note {
  margin: 14px 0 0;
  color: var(--slate);
  font-size: 0.86rem;
}

.consent-label {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
}

.consent-label input {
  width: auto;
  margin-top: 4px;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  font-weight: 700;
}

.form-status.success {
  color: #27613f;
}

.form-status.error {
  color: #9d2f2f;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.testimonial p {
  max-width: 980px;
  margin: 0 auto 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  line-height: 1.35;
}

.testimonial span {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  background: var(--white);
}

address {
  display: grid;
  gap: 4px;
  margin-top: 28px;
  color: var(--navy);
  font-style: normal;
}

address a {
  margin-top: 10px;
  color: var(--gold-dark);
  font-weight: 800;
}

abbr[title] {
  cursor: help;
  text-decoration: none;
}

.contact-note {
  margin-top: 18px;
  font-size: 0.9rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-form-column {
  display: grid;
  gap: 18px;
}

.contact-options {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
}

.contact-options h2 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.contact-options p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-option-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-method {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  color: var(--navy);
  background: var(--paper);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.contact-method span {
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-method strong {
  overflow-wrap: anywhere;
  font-size: 0.9rem;
}

.contact-method:hover,
.contact-method:focus-visible {
  border-color: var(--gold);
  color: var(--navy);
  background: var(--white);
  transform: translateY(-1px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbc6bc;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(199, 161, 91, 0.5);
  outline-offset: 2px;
}

.service-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.service-details summary,
.mobile-biography-heading {
  display: none;
}

[data-glance-desktop-slot] {
  display: contents;
}

.form-notice,
.site-footer small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-footer small {
  flex-basis: 100%;
  color: rgba(255, 255, 255, 0.72);
}

.closing-actions {
  justify-content: center;
}

.closing-note {
  margin: 24px auto 0;
  color: var(--muted);
  text-align: center;
}

.website-field {
  position: absolute;
  left: -9999px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 32px clamp(20px, 6vw, 92px);
  color: var(--white);
  background: var(--navy-dark);
}

.footer-mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.site-footer div {
  color: var(--white);
  align-items: flex-start;
  flex-wrap: wrap;
}

.site-footer p {
  margin: 6px 0 0;
}

.site-footer span {
  flex-basis: 100%;
  color: var(--gold);
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.site-footer nav {
  display: flex;
  gap: 22px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.thank-you {
  display: grid;
  min-height: calc(100vh - 83px);
  place-items: center;
  align-content: center;
  padding: 72px 20px;
  text-align: center;
}

.thank-you img {
  width: min(240px, 55vw);
  margin-bottom: 28px;
}

.thank-you .lead {
  margin-inline: auto;
}

.thank-you .button {
  margin-top: 30px;
}

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .home-page .site-header .header-cta {
    display: none;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .hero,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .page-split {
    display: block;
  }

  .page-split .portrait-panel-desktop {
    display: none;
  }

  .page-split .portrait-panel-inline {
    display: grid;
    float: right;
    width: min(38vw, 320px);
    min-height: 360px;
    margin: 8px 0 24px 32px;
  }

  .page-split .portrait-panel-inline::before {
    inset: 14px;
    background-size: 120px 104px;
  }

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

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

  .promise-detail-section .service-grid,
  .process-row.four-step {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .featured-post {
    grid-column: span 1;
    background:
      linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
      url("assets/hero-western-wall-flag.jpg") center bottom / cover no-repeat;
  }

  .page-hero {
    background:
      linear-gradient(rgba(251, 250, 247, 0.96), rgba(251, 250, 247, 0.9)),
      url("assets/hero-western-wall-flag.jpg") center bottom / cover no-repeat;
  }
}

@media (max-width: 680px) {
  .contact-option-links {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
    gap: 16px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .site-nav {
    gap: 14px;
    font-size: 0.7rem;
  }

  .header-cta,
  .button {
    width: 100%;
  }

  .contact-page-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-copy .lead {
    margin-bottom: 14px;
    font-size: 1rem;
    line-height: 1.62;
  }

  .promise-detail-section .service-card {
    padding-block: 20px;
    border-width: 0 0 1px;
    box-shadow: none;
  }

  .page-split .portrait-panel-inline {
    width: min(46vw, 210px);
    min-height: 270px;
    margin: 8px 0 18px 20px;
  }

  .page-split .portrait-panel-inline::before {
    inset: 10px;
    background-size: 140px 122px;
    background-position: center top;
  }

  .page-split .split-copy > p {
    margin-bottom: 16px;
  }

  [data-glance-mobile-slot] .glance-card {
    clear: both;
    margin: 30px 0;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  [data-glance-mobile-slot] .glance-card h2,
  .mobile-biography-heading {
    font-size: 1.35rem;
  }

  .mobile-biography-heading {
    display: block;
    clear: both;
    margin: 34px 0 12px;
  }

  .service-details {
    margin-top: 16px;
  }

  .service-details summary {
    display: list-item;
    color: var(--gold-dark);
    cursor: pointer;
    font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .service-details[open] summary {
    margin-bottom: 10px;
  }

  .service-details ul {
    margin-top: 0;
  }

  .hero-visual img {
    height: 320px;
  }

  .hero-badge {
    width: 220px;
  }

  .hero-badge img {
    height: auto;
  }

  .service-grid,
  .trust-strip,
  .process-row,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .promise-detail-section .service-grid,
  .process-row.four-step {
    grid-template-columns: 1fr;
  }

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

  .fee-summary {
    padding-block: 34px;
  }

  .fees-row article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fees-row article:last-child {
    border-bottom: 0;
  }

  .trust-strip div {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid rgba(199, 161, 91, 0.45);
  }

  .promise-bridge {
    grid-template-columns: 1fr;
    padding-inline: 20px;
  }

  .promise-bridge div {
    justify-content: flex-start;
  }

  .promise-bridge div:not(:last-child)::after {
    display: none;
  }

  .promise-bridge div:last-child {
    border-bottom: 0;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --navy: #b8c9ee;
    --navy-dark: #020916;
    --gold: #d8ba77;
    --gold-dark: #e5c982;
    --ink: #edf2fa;
    --muted: #b3bfd1;
    --line: #2b3d5a;
    --paper: #071224;
    --white: #0d1b30;
    --shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  }

  .site-header {
    border-bottom-color: rgba(216, 186, 119, 0.42);
    background: rgba(5, 15, 32, 0.94);
  }

  .brand-mark {
    content: url("assets/ml-mark-inverse-nav.png");
  }

  .header-cta,
  .button.primary {
    border-color: var(--gold);
    color: #071224;
    background: var(--gold);
  }

  .button.secondary {
    border-color: var(--gold);
    color: var(--gold);
  }

  .button:hover,
  .header-cta:hover {
    border-color: #f0d79c;
    color: #071224;
    background: #f0d79c;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(7, 18, 36, 0.99) 0%, rgba(7, 18, 36, 0.94) 48%, rgba(7, 18, 36, 0.72) 100%),
      linear-gradient(135deg, rgba(216, 186, 119, 0.12), transparent 42%);
  }

  .hero-visual::after {
    background:
      url("assets/global-reach-overlay.svg") 42% top / 116% auto no-repeat,
      linear-gradient(90deg, rgba(7, 18, 36, 0.78), rgba(7, 18, 36, 0.08) 34%, rgba(2, 9, 22, 0.18)),
      linear-gradient(0deg, rgba(2, 9, 22, 0.46), transparent 42%);
  }

  .hero-badge {
    background: rgba(255, 255, 255, 0.94);
  }

  .trust-strip,
  .site-footer {
    color: #f7f9fc;
    background: #020916;
  }

  .testimonial {
    color: #f7f9fc;
  }

  .promise-bridge,
  .promise-bridge::after,
  .service-card,
  .blog-card,
  .split-section,
  .fee-summary,
  .contact-section {
    background: var(--white);
  }

  .page-hero {
    background:
      linear-gradient(90deg, rgba(7, 18, 36, 0.99), rgba(7, 18, 36, 0.84)),
      url("assets/hero-western-wall-flag.jpg") right center / min(760px, 58vw) auto no-repeat;
  }

  .featured-post {
    background:
      linear-gradient(90deg, rgba(13, 27, 48, 0.98), rgba(13, 27, 48, 0.86)),
      url("assets/hero-western-wall-flag.jpg") right center / min(620px, 48vw) auto no-repeat;
  }

  .portrait-panel {
    border-color: #767e88;
    background:
      linear-gradient(135deg, #777f89 0%, #4e5660 28%, #686f78 52%, #343b44 100%);
    box-shadow:
      0 16px 38px rgba(0, 0, 0, 0.3),
      inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  }

  .portrait-panel::before {
    filter: grayscale(1) contrast(0.82);
    opacity: 0.22;
  }

  .portrait-panel::after {
    background:
      linear-gradient(180deg, rgba(220, 223, 226, 0.08), rgba(31, 37, 44, 0.3)),
      linear-gradient(90deg, rgba(171, 177, 184, 0.2), transparent 34%, transparent 66%, rgba(26, 32, 39, 0.28));
  }

  input,
  select,
  textarea {
    border-color: #405170;
    color: var(--ink);
    background: #101f35;
  }

  @media (max-width: 1000px) {
    .featured-post {
      background:
        linear-gradient(rgba(13, 27, 48, 0.97), rgba(13, 27, 48, 0.92)),
        url("assets/hero-western-wall-flag.jpg") center bottom / cover no-repeat;
    }

    .page-hero {
      background:
        linear-gradient(rgba(7, 18, 36, 0.97), rgba(7, 18, 36, 0.92)),
        url("assets/hero-western-wall-flag.jpg") center bottom / cover no-repeat;
    }
  }
}
.blog-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.45fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.blog-tools[hidden] {
  display: none;
}

.blog-search-toggle {
  margin: 0 0 1rem;
  padding: 0.35rem 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
}

.blog-search-toggle:hover,
.blog-search-toggle:focus-visible {
  color: var(--gold-dark);
}

.blog-tools label {
  display: grid;
  gap: 0.45rem;
  color: var(--navy);
  font-weight: 700;
}

.blog-tools input,
.blog-tools select {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(9, 31, 58, 0.25);
  border-radius: 4px;
  background: #fff;
  color: var(--navy);
  font: inherit;
}

.blog-results-status {
  margin: 0 0 1.5rem;
  color: var(--slate);
}

.blog-read-button {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.blog-share-button {
  margin-left: 18px;
  border: 0;
  padding: 0;
  background: transparent;
}

.blog-post-body[hidden] {
  display: none;
}

.blog-post-body p {
  margin-top: 1rem;
}

.blog-media {
  margin: 1.25rem 0;
}

.blog-media img {
  display: block;
  width: 100%;
  max-height: 720px;
  object-fit: contain;
  border: 1px solid var(--line);
  background: var(--paper);
}

.blog-media figcaption {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.blog-tags {
  color: var(--gold-deep);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

@media (max-width: 700px) {
  .blog-tools {
    grid-template-columns: 1fr;
  }
}

.guide-hero { max-width: 940px; }
.guide-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.guide-content { max-width: 780px; }
.guide-content h2 { margin-top: 2.5rem; }
.guide-content h3 { margin-top: 1.7rem; }
.guide-content li + li { margin-top: 0.55rem; }
.guide-nav { position: sticky; top: 110px; padding: 1.25rem; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
.guide-nav strong, .guide-nav a { display: block; }
.guide-nav a { margin-top: 0.75rem; color: var(--navy); line-height: 1.4; }
.guide-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.guide-card { padding: clamp(1.35rem, 3vw, 2rem); border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
.guide-card h2, .guide-card h3 { margin-top: 0; }
.guide-source, .guide-updated { color: var(--muted); font-size: 0.9rem; }
.guide-disclaimer { margin-top: 2.5rem; padding: 1.2rem; border-left: 3px solid var(--gold); background: rgba(181, 139, 67, 0.08); }

@media (max-width: 850px) {
  .guide-layout, .guide-grid { grid-template-columns: 1fr; }
  .guide-nav { position: static; order: -1; }
}
