:root {
  --ink: #24151c;
  --muted: #6d5c64;
  --cream: #f7f0e7;
  --paper: #fffaf4;
  --rose: #ead4d4;
  --rose-soft: #f2e5e2;
  --wine: #4b1730;
  --wine-deep: #2d0d1d;
  --plum: #6e294a;
  --gold: #c9a46b;
  --line: rgba(36, 21, 28, 0.16);
  --white-line: rgba(255, 255, 255, 0.18);
  --shadow: 0 22px 70px rgba(45, 13, 29, 0.12);
  --radius: 28px;
  --shell: min(1180px, calc(100% - 48px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --fa: Tahoma, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 132px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
html[lang="fa"] body { font-family: var(--fa); }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--rose); color: var(--wine-deep); }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 128px 0; }
.section-dark { position: relative; overflow: hidden; color: #fffaf6; background: var(--wine-deep); }
.section-rose { background: var(--rose-soft); }
.section-cream { background: var(--cream); }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--wine);
  transform: translateY(-150%);
  transition: transform 0.2s 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;
}

.crisis-bar {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 6px 24px;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: #f6e9e4;
  background: #1d0913;
}
.crisis-bar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: 78px;
  border-bottom: 1px solid rgba(75, 23, 48, 0.09);
  background: rgba(255, 250, 244, 0.94);
  backdrop-filter: blur(18px);
}
.nav-shell { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  font: italic 24px/1 var(--serif);
  color: var(--cream);
  background: var(--wine);
}
.brand-copy { display: flex; flex-direction: column; gap: 1px; line-height: 1; }
.brand-copy strong { font-size: 16px; letter-spacing: 0.24em; }
.brand-copy small { margin-top: 5px; font-size: 8px; letter-spacing: 0.16em; color: var(--muted); }
.primary-nav { display: flex; align-items: center; gap: clamp(18px, 2.3vw, 34px); }
.primary-nav > a:not(.button) { position: relative; font-size: 13px; font-weight: 600; }
.primary-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--wine);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.primary-nav > a:not(.button):hover::after,
.primary-nav > a:not(.button):focus-visible::after { transform: scaleX(1); }
.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: transparent;
  cursor: pointer;
}
.language-toggle svg { width: 14px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 9px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; width: 23px; height: 1px; margin: 5px auto; background: var(--wine); transition: 0.25s ease; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.015em;
  text-align: center;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .language-toggle:focus-visible, .menu-toggle:focus-visible, .faq-item button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(201, 164, 107, 0.65); outline-offset: 3px; }
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.button-small { min-height: 42px; padding-inline: 18px; font-size: 12px; color: #fff; background: var(--wine); }
.button-light { color: var(--wine-deep); background: var(--cream); }
.button-light:hover { background: #fff; }
.button-dark { color: #fff; background: var(--wine); }
.button-dark:hover { background: var(--wine-deep); }
.button-full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 10px; width: fit-content; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 700; line-height: 1.9; }
.light-link { color: #f8eae5; }

.eyebrow { margin: 0 0 22px; font-size: 10px; font-weight: 800; letter-spacing: 0.22em; color: var(--plum); }
.eyebrow.light { color: #ddbda9; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.045em; }
html[lang="fa"] h1, html[lang="fa"] h2 { font-family: var(--fa); font-weight: 700; letter-spacing: -0.03em; }
h1 { max-width: 760px; margin-bottom: 28px; font-size: clamp(54px, 6.4vw, 92px); line-height: 0.98; }
h2 { margin-bottom: 0; font-size: clamp(43px, 5vw, 70px); line-height: 1.02; }
h3 { font-size: 21px; line-height: 1.25; }

.hero { min-height: calc(100vh - 114px); padding: 94px 0 78px; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr); align-items: center; gap: 65px; }
.hero-copy { padding-top: 22px; }
.hero-lead { max-width: 670px; margin-bottom: 35px; font-size: clamp(17px, 1.6vw, 21px); line-height: 1.65; color: #e5d5d8; }
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 680px; margin-top: 58px; padding-top: 28px; border-top: 1px solid var(--white-line); }
.trust-item { padding-right: 22px; }
.trust-item + .trust-item { padding-left: 22px; border-left: 1px solid var(--white-line); }
.trust-item strong, .trust-item span { display: block; }
.trust-item strong { margin-bottom: 3px; font: 400 20px/1.2 var(--serif); }
.trust-item span { font-size: 11px; color: #cdbbc0; }
.hero-visual { position: relative; display: grid; place-items: center; min-height: 610px; }
.portrait-frame { position: relative; width: min(100%, 465px); aspect-ratio: 0.76; overflow: hidden; border-radius: 240px 240px 28px 28px; box-shadow: 0 35px 100px rgba(0,0,0,0.34); background: #d8b8aa; }
.portrait-frame > img { width: 100%; height: 100%; object-fit: cover; }
.portrait-note { position: absolute; right: 0; bottom: 0; width: 52%; padding: 25px 25px 28px; color: var(--wine-deep); background: rgba(247, 240, 231, 0.93); backdrop-filter: blur(12px); }
.note-kicker { display: block; margin-bottom: 12px; font-size: 8px; font-weight: 800; letter-spacing: 0.2em; }
.portrait-note strong { font: 400 clamp(23px, 2.8vw, 36px)/1.02 var(--serif); }
.floating-quote { position: absolute; left: -58px; bottom: 58px; width: 224px; padding: 22px; border: 1px solid rgba(255,255,255,0.16); border-radius: 20px; color: #fff; background: rgba(69, 19, 42, 0.86); backdrop-filter: blur(14px); box-shadow: 0 18px 50px rgba(0,0,0,0.23); }
.floating-quote > span { display: block; height: 27px; font: 45px/1 var(--serif); color: var(--gold); }
.floating-quote p { margin: 0; font: italic 16px/1.45 var(--serif); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); opacity: 0.48; }
.hero-orb-one { width: 610px; height: 610px; right: -245px; top: -210px; background: radial-gradient(circle at 40% 40%, #a44f70, transparent 68%); }
.hero-orb-two { width: 430px; height: 430px; left: -210px; bottom: -300px; background: radial-gradient(circle at 60% 40%, #866249, transparent 68%); }
.hero-scroll { position: absolute; z-index: 3; left: 50%; bottom: 22px; width: 1px; height: 34px; overflow: hidden; background: rgba(255,255,255,0.15); }
.hero-scroll span { display: block; width: 1px; height: 15px; background: #fff; animation: scrollLine 2s infinite; }
@keyframes scrollLine { 0% { transform: translateY(-16px); } 60%,100% { transform: translateY(35px); } }

.intro-strip { padding: 23px 0; border-bottom: 1px solid var(--line); background: var(--cream); }
.intro-strip-grid { display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.intro-strip-grid > p { margin: 0; font-size: 9px; font-weight: 800; letter-spacing: 0.2em; color: var(--plum); }
.intro-facts { display: flex; align-items: center; justify-content: flex-end; gap: 17px; font-size: 11px; color: var(--muted); }
.intro-facts i { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

.section-heading { display: grid; grid-template-columns: 1fr 0.63fr; align-items: end; gap: 80px; margin-bottom: 65px; }
.section-heading > p { max-width: 530px; margin: 0 0 5px; font-size: 17px; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 345px; padding: 38px 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0s; }
.service-card:hover { z-index: 2; transform: translateY(-7px); box-shadow: var(--shadow); }
.card-number { position: absolute; top: 23px; right: 25px; font: 400 11px/1 var(--serif); color: #917b84; }
.service-icon { display: grid; width: 58px; height: 58px; margin-bottom: 55px; place-items: center; border-radius: 50%; background: var(--rose-soft); }
.service-icon svg { width: 29px; fill: none; stroke: var(--wine); stroke-width: 1.2; }
.service-card h3 { max-width: 235px; margin-bottom: 17px; font-family: var(--serif); font-size: 25px; font-weight: 400; }
html[lang="fa"] .service-card h3 { font-family: var(--fa); font-weight: 700; }
.service-card p { margin: 0; font-size: 14px; color: var(--muted); }
.accent-card { display: flex; flex-direction: column; justify-content: flex-end; color: #fff; background: var(--wine); }
.accent-card .card-number { color: #d7bfbf; }
.accent-card .eyebrow { margin-bottom: 17px; }
.accent-card h3 { max-width: 330px; margin-bottom: 30px; font-size: 34px; line-height: 1.05; }

.approach-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 110px; }
.approach-sticky { align-self: start; position: sticky; top: 145px; }
.approach-sticky > p:not(.eyebrow) { max-width: 475px; margin: 32px 0; font-size: 17px; color: var(--muted); }
.scope-note { display: flex; gap: 14px; max-width: 455px; padding-top: 28px; border-top: 1px solid var(--line); }
.scope-note svg { flex: 0 0 25px; width: 25px; fill: none; stroke: var(--plum); stroke-width: 1.35; }
.scope-note p { margin: 0; font-size: 12px; line-height: 1.55; color: var(--muted); }
.process-list { border-top: 1px solid var(--line); }
.process-step { display: grid; grid-template-columns: 62px 1fr; gap: 28px; padding: 41px 0; border-bottom: 1px solid var(--line); }
.process-step > span { font: 400 14px/1.5 var(--serif); color: var(--plum); }
.process-step h3 { margin-bottom: 13px; font: 400 30px/1.1 var(--serif); }
html[lang="fa"] .process-step h3 { font-family: var(--fa); font-weight: 700; }
.process-step p { max-width: 610px; margin: 0; color: var(--muted); }

.framework { background: var(--paper); }
.framework-head { display: grid; grid-template-columns: 1fr 1fr; column-gap: 70px; align-items: end; margin-bottom: 62px; }
.framework-head .eyebrow { grid-column: 1 / -1; }
.framework-head > p:last-child { max-width: 470px; margin: 0 0 6px auto; color: var(--muted); }
.tm { display: inline-block; margin-left: 2px; font-family: var(--sans); font-size: 15px; vertical-align: top; letter-spacing: 0; }
.framework-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.framework-card { min-height: 390px; padding: 30px 26px; border: 1px solid var(--line); border-radius: 150px 150px 18px 18px; text-align: center; background: linear-gradient(180deg, var(--cream), var(--paper)); }
.framework-card:nth-child(even) { margin-top: 32px; }
.stage-symbol { display: grid; width: 108px; height: 108px; margin: 8px auto 36px; place-items: center; border: 1px solid rgba(75, 23, 48, 0.22); border-radius: 50%; font: italic 31px/1 var(--serif); color: var(--wine); }
.framework-card > span { font-size: 8px; font-weight: 800; letter-spacing: 0.2em; color: var(--plum); }
.framework-card h3 { min-height: 58px; margin: 13px 0 14px; font: 400 23px/1.18 var(--serif); }
html[lang="fa"] .framework-card h3 { font-family: var(--fa); font-weight: 700; }
.framework-card p { margin: 0; font-size: 13px; color: var(--muted); }

.about { padding: 135px 0; }
.about::before { content: ""; position: absolute; inset: auto -200px -350px auto; width: 700px; height: 700px; border: 1px solid rgba(255,255,255,0.06); border-radius: 50%; }
.about-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 100px; align-items: center; }
.about-art { position: relative; min-height: 590px; overflow: hidden; border: 1px solid rgba(255,255,255,0.12); border-radius: 260px 260px 24px 24px; background: linear-gradient(145deg, #5d1f3b, #250b18); }
.about-monogram { position: absolute; top: 38px; left: 0; right: 0; text-align: center; font: italic 62px/1 var(--serif); color: rgba(255,255,255,0.14); }
.about-line { position: absolute; width: 95%; left: 2.5%; bottom: 0; fill: none; stroke: #d6ab84; stroke-width: 1.2; opacity: 0.75; }
.about-art > p { position: absolute; left: 38px; bottom: 35px; margin: 0; font: italic 24px/1.2 var(--serif); color: #f4ddd2; }
.about-copy h2 { margin-bottom: 30px; }
.about-large { margin-bottom: 23px; font: 400 clamp(20px, 2vw, 26px)/1.55 var(--serif); color: #f1dfdf; }
html[lang="fa"] .about-large { font-family: var(--fa); }
.about-copy > p:not(.eyebrow):not(.about-large) { max-width: 650px; color: #cdbfc2; }
.about-principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 38px 0; border-top: 1px solid var(--white-line); border-bottom: 1px solid var(--white-line); }
.about-principles > div { padding: 24px 18px 24px 0; }
.about-principles > div + div { padding-left: 18px; border-left: 1px solid var(--white-line); }
.about-principles span { display: block; margin-bottom: 8px; font: 400 11px/1 var(--serif); color: var(--gold); }
.about-principles p { margin: 0; font-size: 12px; color: #eadbdd; }

.testimonials { background: var(--rose-soft); }
.story-grid { display: grid; grid-template-columns: 1.15fr 0.85fr 0.85fr; gap: 18px; }
.story-card { min-height: 360px; display: flex; flex-direction: column; margin: 0; padding: 35px; border-radius: 22px; background: var(--paper); box-shadow: 0 15px 50px rgba(75, 23, 48, 0.06); }
.story-card.featured { color: #fff; background: var(--wine); }
.quote-mark { height: 52px; font: 74px/1 var(--serif); color: var(--gold); }
.story-card > p { margin: auto 0; font: italic 21px/1.5 var(--serif); }
html[lang="fa"] .story-card > p { font-family: var(--fa); font-style: normal; }
.story-card footer { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); }
.story-card.featured footer { border-color: var(--white-line); }
.story-card footer strong { font: italic 21px/1 var(--serif); }
.story-card footer span { font-size: 9px; letter-spacing: 0.11em; color: var(--muted); }
.story-card.featured footer span { color: #cebcc1; }

.social-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 90px; align-items: center; }
.social-copy > p:not(.eyebrow) { max-width: 480px; margin: 29px 0 33px; color: var(--muted); }
.reel-stack { position: relative; min-height: 560px; }
.reel-card { position: absolute; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; padding: 28px; border-radius: 22px; color: #fff; box-shadow: 0 20px 60px rgba(45,13,29,0.18); transition: transform 0.3s ease; }
.reel-card:hover { transform: translateY(-7px) rotate(0deg); }
.reel-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 20%, rgba(30,8,18,0.88)); }
.reel-card::after { content: ""; position: absolute; width: 190px; height: 190px; top: -55px; right: -55px; border: 1px solid rgba(255,255,255,0.24); border-radius: 50%; box-shadow: 0 0 0 26px rgba(255,255,255,0.04), 0 0 0 55px rgba(255,255,255,0.03); }
.reel-card > * { position: relative; z-index: 1; }
.reel-card p { max-width: 250px; margin: 0 0 14px; font: 400 28px/1.12 var(--serif); }
html[lang="fa"] .reel-card p { font-family: var(--fa); font-weight: 700; }
.reel-card small { font-size: 8px; font-weight: 800; letter-spacing: 0.17em; color: #eed8d0; }
.play-icon { display: grid; width: 48px; height: 48px; margin-bottom: auto; place-items: center; border: 1px solid rgba(255,255,255,0.45); border-radius: 50%; font-size: 11px; }
.reel-one { z-index: 3; width: 44%; height: 420px; left: 3%; top: 48px; transform: rotate(-5deg); background: linear-gradient(145deg, #b45b71, #5a1937); }
.reel-two { z-index: 2; width: 44%; height: 445px; left: 31%; top: 0; transform: rotate(4deg); background: linear-gradient(145deg, #b28b65, #653448); }
.reel-three { z-index: 1; width: 42%; height: 390px; right: 0; top: 96px; transform: rotate(9deg); background: linear-gradient(145deg, #79516c, #2a1830); }

.faq-grid { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 100px; }
.faq-intro { align-self: start; position: sticky; top: 145px; }
.faq-intro > p:not(.eyebrow) { max-width: 440px; margin: 30px 0; color: var(--muted); }
.accordion { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; display: grid; grid-template-columns: 1fr 24px; gap: 20px; align-items: center; padding: 27px 0; border: 0; text-align: left; background: transparent; cursor: pointer; }
html[dir="rtl"] .faq-item button { text-align: right; }
.faq-item button span { font: 400 23px/1.25 var(--serif); }
html[lang="fa"] .faq-item button span { font-family: var(--fa); font-weight: 700; }
.faq-item button i { position: relative; display: block; width: 20px; height: 20px; }
.faq-item button i::before, .faq-item button i::after { content: ""; position: absolute; top: 50%; left: 1px; width: 18px; height: 1px; background: var(--wine); transition: transform 0.25s ease; }
.faq-item button i::after { transform: rotate(90deg); }
.faq-item button[aria-expanded="true"] i::after { transform: rotate(0deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease; }
.faq-answer p { min-height: 0; overflow: hidden; max-width: 680px; margin: 0; color: var(--muted); }
.faq-item button[aria-expanded="true"] + .faq-answer { grid-template-rows: 1fr; }
.faq-item button[aria-expanded="true"] + .faq-answer p { padding-bottom: 27px; }

.contact { padding: 130px 0; }
.contact::before { content: ""; position: absolute; width: 700px; height: 700px; left: -420px; bottom: -420px; border-radius: 50%; background: radial-gradient(circle, rgba(183,101,116,0.25), transparent 68%); }
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 100px; align-items: start; }
.contact-copy h2 { margin-bottom: 28px; }
.contact-copy > p:not(.eyebrow) { max-width: 480px; color: #d4c2c7; }
.contact-details { margin-top: 65px; border-top: 1px solid var(--white-line); }
.contact-details > * { display: grid; grid-template-columns: 115px 1fr; gap: 20px; padding: 19px 0; border-bottom: 1px solid var(--white-line); }
.contact-details span { font-size: 8px; font-weight: 800; letter-spacing: 0.18em; color: var(--gold); }
.contact-details strong { font-size: 13px; font-weight: 600; color: #f4e8e8; }
.inquiry-form { padding: 44px; border: 1px solid rgba(255,255,255,0.15); border-radius: 25px; background: rgba(255,255,255,0.06); backdrop-filter: blur(16px); }
.form-head { display: grid; grid-template-columns: 50px 1fr; gap: 18px; align-items: start; margin-bottom: 35px; }
.form-head > span { font: italic 20px/1.5 var(--serif); color: var(--gold); }
.form-head .eyebrow { margin-bottom: 8px; }
.form-head h3 { margin: 0; font: 400 31px/1.15 var(--serif); }
html[lang="fa"] .form-head h3 { font-family: var(--fa); font-weight: 700; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.inquiry-form label { display: block; margin-bottom: 19px; }
.inquiry-form label > span:first-child { display: block; margin-bottom: 7px; font-size: 11px; color: #e2d2d5; }
.inquiry-form input[type="text"], .inquiry-form select, .inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  color: #fff;
  background: rgba(255,255,255,0.06);
}
.inquiry-form input[type="text"], .inquiry-form select { height: 52px; padding: 0 15px; }
.inquiry-form textarea { padding: 13px 15px; resize: vertical; min-height: 112px; }
.inquiry-form select option { color: var(--ink); background: #fff; }
.inquiry-form ::placeholder { color: #a9979c; opacity: 1; }
.consent-row { display: grid !important; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; }
.consent-row input { width: 17px; height: 17px; margin: 3px 0 0; accent-color: var(--gold); }
.consent-row span { margin: 0 !important; font-size: 10px !important; line-height: 1.55; color: #cbbbc0 !important; }
.form-error { display: none; margin: -5px 0 15px; padding: 10px 12px; border-radius: 8px; font-size: 11px; color: #ffe2e2; background: rgba(193, 64, 85, 0.2); }
.form-error.is-visible { display: block; }
.form-privacy { margin: 14px 0 0; text-align: center; font-size: 9px; color: #a9979c; }

.site-footer { padding: 68px 0 22px; color: #d8c9c6; background: #1d0913; }
.footer-grid { display: grid; grid-template-columns: 1.8fr repeat(3, 1fr); gap: 55px; padding-bottom: 56px; }
.site-footer .brand-mark { color: var(--wine-deep); background: var(--cream); }
.site-footer .brand-copy strong { color: #fff; }
.site-footer .brand-copy small { color: #aa959b; }
.footer-brand > p { max-width: 320px; margin: 22px 0 0; font: italic 18px/1.5 var(--serif); color: #bba9ae; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links p { margin: 0 0 12px; font-size: 8px; font-weight: 800; letter-spacing: 0.18em; color: var(--gold); }
.footer-links a { width: fit-content; font-size: 12px; color: #c4b3b7; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom p { margin: 0; font-size: 9px; color: #8e777e; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-one { transition-delay: 0.1s; }
.delay-two { transition-delay: 0.2s; }
.delay-three { transition-delay: 0.3s; }

/* Legal page */
.legal-hero { padding: 90px 0 75px; color: #fff; background: var(--wine-deep); }
.legal-hero h1 { max-width: 900px; margin-bottom: 22px; font-size: clamp(48px, 6vw, 82px); }
.legal-hero p { max-width: 720px; margin: 0; color: #d4c2c7; }
.legal-layout { display: grid; grid-template-columns: 270px 1fr; gap: 85px; padding: 90px 0 125px; }
.legal-nav { align-self: start; position: sticky; top: 135px; display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.legal-nav a { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 12px; }
.legal-content section { scroll-margin-top: 140px; padding: 0 0 55px; margin-bottom: 55px; border-bottom: 1px solid var(--line); }
.legal-content section:last-child { margin-bottom: 0; }
.legal-content h2 { margin-bottom: 25px; font-size: clamp(34px, 4vw, 53px); }
.legal-content h3 { margin: 31px 0 10px; font: 400 23px/1.2 var(--serif); }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content li + li { margin-top: 9px; }
.legal-callout { padding: 24px; border-left: 3px solid var(--gold); border-radius: 0 12px 12px 0; background: var(--cream); }
.legal-callout p:last-child { margin-bottom: 0; }
.legal-date { margin-top: 30px !important; font-size: 11px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 25px; font-size: 12px; color: #f4e8e8; }

/* RTL adjustments */
html[dir="rtl"] .primary-nav > a:not(.button)::after { left: 0; right: 0; }
html[dir="rtl"] .button svg { transform: scaleX(-1); }
html[dir="rtl"] .trust-item { padding-right: 0; padding-left: 22px; }
html[dir="rtl"] .trust-item + .trust-item { padding-left: 22px; padding-right: 22px; border-left: 0; border-right: 1px solid var(--white-line); }
html[dir="rtl"] .card-number { right: auto; left: 25px; }
html[dir="rtl"] .about-principles > div { padding: 24px 0 24px 18px; }
html[dir="rtl"] .about-principles > div + div { padding-left: 18px; padding-right: 18px; border-left: 0; border-right: 1px solid var(--white-line); }
html[dir="rtl"] .about-art > p { left: auto; right: 38px; }
html[dir="rtl"] .legal-callout { border-left: 0; border-right: 3px solid var(--gold); border-radius: 12px 0 0 12px; }

@media (max-width: 1050px) {
  :root { --shell: min(100% - 38px, 920px); }
  .primary-nav { gap: 18px; }
  .primary-nav > a:not(.button) { display: none; }
  .hero-grid { grid-template-columns: 1fr 0.73fr; gap: 38px; }
  .hero-visual { min-height: 530px; }
  .floating-quote { left: -35px; bottom: 35px; }
  .section-heading { gap: 45px; }
  .approach-grid, .about-grid, .contact-grid, .faq-grid, .social-grid { gap: 60px; }
  .framework-card { padding-inline: 18px; }
  .story-grid { grid-template-columns: 1fr 1fr; }
  .story-card:last-child { grid-column: 1 / -1; min-height: 280px; }
  .footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); gap: 30px; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 120px; }
  :root { --shell: calc(100% - 32px); }
  .section { padding: 90px 0; }
  .crisis-bar { min-height: 42px; font-size: 10px; text-align: center; flex-wrap: wrap; }
  .site-header { height: 70px; }
  .menu-toggle { display: block; }
  .primary-nav {
    position: fixed;
    top: 112px;
    left: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 19px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--paper);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: 0.25s ease;
  }
  .primary-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .primary-nav > a:not(.button) { display: block; padding: 13px 5px; border-bottom: 1px solid var(--line); }
  .primary-nav > a:not(.button)::after { display: none; }
  .language-toggle { align-self: flex-start; margin: 15px 0; }
  .primary-nav .button { width: 100%; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(4) { transform: translateY(-6px) rotate(-45deg); }

  .hero { min-height: auto; padding: 75px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 0; }
  h1 { font-size: clamp(49px, 12vw, 72px); }
  h2 { font-size: clamp(39px, 10vw, 59px); }
  .hero-visual { min-height: auto; margin-top: 22px; }
  .portrait-frame { width: min(100%, 500px); }
  .floating-quote { left: 5px; bottom: 20px; }
  .hero-scroll { display: none; }
  .intro-strip-grid { flex-direction: column; align-items: flex-start; gap: 12px; }
  .intro-facts { justify-content: flex-start; flex-wrap: wrap; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 45px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .approach-grid, .about-grid, .social-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .approach-sticky, .faq-intro { position: static; }
  .approach-grid { gap: 50px; }
  .framework-head { grid-template-columns: 1fr; gap: 24px; }
  .framework-head > p:last-child { margin-left: 0; }
  .framework-track { grid-template-columns: 1fr 1fr; }
  .framework-card:nth-child(even) { margin-top: 0; }
  .about-art { width: min(100%, 530px); margin-inline: auto; }
  .about-grid { gap: 65px; }
  .social-grid { gap: 55px; }
  .reel-stack { max-width: 680px; width: 100%; margin-inline: auto; }
  .faq-grid { gap: 50px; }
  .contact-grid { gap: 55px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-links:last-child { grid-column: 2 / -1; }
  .legal-layout { grid-template-columns: 1fr; gap: 45px; }
  .legal-nav { position: static; display: grid; grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 28px); }
  body { font-size: 15px; }
  .section { padding: 76px 0; }
  .crisis-bar { padding-inline: 12px; }
  .brand-copy small { letter-spacing: 0.11em; }
  .hero { padding-top: 59px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-actions .button { width: 100%; }
  .hero-trust { grid-template-columns: 1fr; gap: 16px; margin-top: 38px; }
  .trust-item { padding: 0 !important; }
  .trust-item + .trust-item { padding-top: 16px !important; border-left: 0 !important; border-right: 0 !important; border-top: 1px solid var(--white-line); }
  .portrait-note { width: 60%; padding: 20px; }
  .floating-quote { display: none; }
  .intro-facts { display: grid; gap: 8px; }
  .intro-facts i { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 310px; }
  .process-step { grid-template-columns: 40px 1fr; gap: 16px; }
  .framework-track { grid-template-columns: 1fr; }
  .framework-card { min-height: 330px; max-width: 340px; width: 100%; margin-inline: auto; }
  .stage-symbol { margin-bottom: 27px; }
  .about-art { min-height: 470px; }
  .about-principles { grid-template-columns: 1fr; }
  .about-principles > div { padding: 18px 0 !important; }
  .about-principles > div + div { border-left: 0 !important; border-right: 0 !important; border-top: 1px solid var(--white-line); }
  .story-grid { grid-template-columns: 1fr; }
  .story-card, .story-card:last-child { grid-column: auto; min-height: 330px; padding: 28px; }
  .reel-stack { min-height: 760px; }
  .reel-card { width: 74%; height: 390px; }
  .reel-one { left: 1%; top: 15px; }
  .reel-two { left: auto; right: 2%; top: 190px; }
  .reel-three { left: 6%; right: auto; top: 360px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .inquiry-form { padding: 28px 20px; }
  .contact-details > * { grid-template-columns: 90px 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-links:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .legal-hero { padding: 65px 0 55px; }
  .legal-layout { padding: 65px 0 90px; }
  .legal-nav { grid-template-columns: 1fr; }
}

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