/* =========================================================================
   Mission 301 — html_v2 (layout preview)
   Bootstrap 5 base + custom theme matching the reference screenshots
   ========================================================================= */

:root {
  --gold: #d9a13b;
  --gold-bright: #b88f35;
  --gold-soft: #edbd5b;
  --gold-muted: #a9792d;
  --gold-deep: #7a561f;
  --text: #f1eadc;
  --body-text: #d8ccb6;
  --body-dim: #b7a888;
  --dark: #060707;
  --dark-2: #0c0d0c;
  --panel: #0a0b0a;
  --line: rgba(169, 121, 45, .45);
  --line-soft: rgba(169, 121, 45, .22);
  --header-h: 168px;
  --header-h-compact: 74px;
  --maxw: 1390px;
  --gutter: clamp(20px, 4vw, 56px);
  --font-head: "Cormorant Garamond", Georgia, serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-body: "Aptos", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---- Global fixed temple background (behind every section) ---- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: #050606 url("../img/temple-background.jpg") right -90px top -120px / auto 120% no-repeat;
  opacity: 0.25;
}
/* Reference-matched veil: dense on the left (under text), fully clear on the
   right so the temple shows at full brightness like the section 1 mockup. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(5, 6, 6, .97) 0%,
      rgba(5, 6, 6, .93) 24%,
      rgba(5, 6, 6, .55) 55%,
      rgba(5, 6, 6, .15) 74%,
      transparent 90%),
    linear-gradient(180deg, transparent 80%, rgba(5, 6, 6, .45) 100%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: fixed; z-index: 200; top: 10px; left: 10px;
  padding: 10px 16px; background: var(--gold); color: #111;
  transform: translateY(-160%); transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }

.container-x { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.text-center { text-align: center; }

/* ---------- shared type ---------- */
.display-serif {
  margin: 0;
  color: #b88f35;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(38px, 4.6vw, 54px);
  line-height: 1.05;
  letter-spacing: .01em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .5);
}

.eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin: 0 0 18px;
  color: #b88f35;
  font-family: var(--font-head);
  font-size: 13px; font-weight: 500; letter-spacing: .28em; text-transform: uppercase;
}
.eyebrow--center { justify-content: center; text-align: center; }
.eyebrow--muted { color: var(--body-dim); letter-spacing: .22em; }
.eyebrow__line { display: block; width: clamp(28px, 6vw, 70px); height: 1px; background: linear-gradient(90deg, transparent, var(--gold-muted), transparent); flex: 0 0 auto; }
.eyebrow:not(.eyebrow--center) .eyebrow__line:first-child { background: var(--gold-muted); }
.eyebrow:not(.eyebrow--center) .eyebrow__line:last-child { background: linear-gradient(90deg, var(--gold-muted), transparent); }

.body-copy { color: var(--body-text); font-size: 18px; line-height: 1.5; }
.body-copy p { margin: 0 0 14px; }
.body-copy--sm { font-size: 16px; line-height: 1.5; }
.body-copy--center { text-align: center; margin-inline: auto; max-width: 720px; }

.gold-em { color: #b88f35; font-weight: 600; }

/* diamond rule */
.rule-diamond { display: flex; align-items: center; gap: 10px; width: 300px; max-width: 100%; margin: 18px 0 20px; }
.rule-diamond span { height: 1px; flex: 1; background: linear-gradient(90deg, transparent, var(--gold-muted), transparent); }
.rule-diamond i { width: 7px; height: 7px; transform: rotate(45deg); background: var(--gold); flex: 0 0 auto; }
.rule-diamond--sm { width: 200px; margin: 12px auto 14px; }
.rule-diamond--center { margin-inline: auto; }


/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn-m {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 46px; padding: 12px 30px;
  border: 1px solid var(--gold-muted);
  color: var(--text);
  font-family: var(--font-head); font-size: 12px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer; transition: all .22s ease; background: transparent;
}
.btn-m em { font-style: normal; font-size: 15px; }
.btn-m--primary {
  border-color: transparent;
  background: linear-gradient(100deg, #c98f26, #e6b652);
  color: #1a1206; box-shadow: 0 6px 26px rgba(184, 117, 22, .28);
}
.btn-m--primary:hover { box-shadow: 0 8px 32px rgba(226, 171, 68, .45); transform: translateY(-1px); }
.btn-m--ghost:hover { border-color: var(--gold); background: rgba(217, 161, 59, .1); color: #b88f35; box-shadow: 0 0 20px rgba(217, 161, 59, .15); }
.btn-m--wide { min-width: 300px; }
.btn-m--block { width: 100%; }

.btn-play {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 13px 26px 13px 14px;
  border: 1px solid var(--gold-muted);
  color: #b88f35;
  font-family: var(--font-head); font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  transition: all .22s ease;
}
.btn-play:hover { border-color: var(--gold); color: #b88f35; box-shadow: 0 0 20px rgba(217, 161, 59, .15); }
.btn-play__icon { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--gold-muted); flex: 0 0 auto; }
.btn-play__icon svg { width: 16px; height: 16px; fill: var(--gold-soft); }

.link-underline {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 16px;
  color: var(--body-dim); font-family: var(--font-head); font-size: 12px; letter-spacing: .08em;
  border-bottom: 1px solid var(--line-soft); padding-bottom: 3px; transition: color .2s;
}
.link-underline svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.link-underline:hover { color: #b88f35; }

/* =========================================================================
   PLACEHOLDERS (stand-in for real imagery)
   ========================================================================= */
.ph {
  position: relative; display: block; overflow: hidden;
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(231, 201, 134, .10), transparent 60%),
    linear-gradient(135deg, #14110c 0%, #1d1710 45%, #0c0a07 100%);
  border: 1px solid var(--line-soft);
}
.ph__frame {
  position: absolute; inset: 12px; border: 1px solid rgba(217, 161, 59, .18);
}
.ph__frame::after {
  content: ""; position: absolute; inset: 0; margin: auto; width: 34px; height: 34px;
  background:
    linear-gradient(var(--gold-muted), var(--gold-muted)) center/100% 1.2px no-repeat,
    linear-gradient(var(--gold-muted), var(--gold-muted)) center/1.2px 100% no-repeat;
  opacity: .5; transform: rotate(45deg);
}
.ph[data-ph]::before {
  content: attr(data-ph);
  position: absolute; inset: auto 0 16px; text-align: center; z-index: 2;
  font-family: var(--font-head); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: rgba(231, 201, 134, .5);
}
.ph__play {
  position: absolute; inset: 0; margin: auto; width: 70px; height: 70px; z-index: 2;
  display: grid; place-items: center; border-radius: 50%;
  border: 1.5px solid var(--gold-soft); background: rgba(10, 8, 5, .35);
}
.ph__play svg { width: 26px; height: 26px; fill: var(--gold-soft); margin-left: 3px; }

/* =========================================================================
   HEADER / NAVBAR (tall -> compact on scroll)
   ========================================================================= */
.site-header {
  position: fixed; z-index: 100; top: 0; left: 0; right: 0;
  height: var(--header-h);
  transition: height .3s ease, background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header__inner {
  position: relative; height: 100%;
  max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
  display: flex; align-items: center; gap: 22px;
}
.brand { flex: 0 0 auto; display: block; transition: width .3s ease; }
.brand__logo { width: 172px; height: auto; transition: width .3s ease; }

.site-header__divider {
  width: 1px; height: 116px; flex: 0 0 auto;
  background: linear-gradient(180deg, transparent, var(--gold) 12%, var(--gold) 88%, transparent);
  box-shadow: 0 0 8px rgba(221, 162, 50, .25);
  transition: height .3s ease, opacity .3s ease;
}
.primary-nav {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: clamp(14px, 2.4vw, 40px);
}
.primary-nav a {
  color: #b88f35; font-family: var(--font-head); font-size: 15px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; white-space: nowrap;
  transition: color .2s, text-shadow .2s;
}
.primary-nav a:hover { color: #b88f35; text-shadow: 0 0 12px rgba(225, 174, 76, .4); }
/* current page: .active comes from pdoMenu hereClass, .is-current from the static build */
.primary-nav a.active,
.primary-nav a.is-current { color: #FBAB04; }
.primary-nav__contact { transition: all .25s ease; }

.lang { flex: 0 0 auto; position: relative; }
.lang__toggle {
  display: inline-flex; align-items: center; gap: 9px; cursor: pointer;
  padding: 9px 14px; border: 0; background: none;
  color: #b88f35; font-family: var(--font-head); font-size: 15px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  transition: border-color .2s, color .2s, background .2s;
}
.lang__toggle:hover,
.lang__toggle[aria-expanded="true"] { border-color: var(--gold-muted); color: #b88f35; }
.lang__chevron {
  width: 9px; height: 6px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round; transition: transform .25s ease;
}
.lang__toggle[aria-expanded="true"] .lang__chevron { transform: rotate(180deg); }

.lang__menu {
  position: absolute; top: calc(100% + 8px); right: 0; z-index: 60;
  min-width: 148px; margin: 0; padding: 6px; list-style: none;
  background: rgba(9, 10, 9, .97); border: 1px solid var(--line-soft);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .55); backdrop-filter: blur(12px);
  opacity: 0; visibility: hidden; transform: translateY(-6px); pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.lang.is-open .lang__menu { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.lang__menu li { margin: 0; }
.lang__menu button {
  display: flex; align-items: center; gap: 10px; width: 100%; text-align: left;
  padding: 9px 16px 9px 12px; background: none; border: 0; cursor: pointer;
  color: var(--body-dim); font-family: var(--font-head); font-size: 12px; letter-spacing: .06em;
  transition: color .18s, background .18s;
}
.lang__menu button::before {
  content: attr(data-lang); flex: 0 0 26px;
  color: var(--gold-deep); font-size: 10px; letter-spacing: .08em;
  transition: color .18s;
}
.lang__menu button:hover { color: #b88f35; background: rgba(217, 161, 59, .08); }
.lang__menu button:hover::before { color: var(--gold-muted); }
.lang__menu button.is-active { color: #b88f35; }
.lang__menu button.is-active::before { color: #b88f35; }

.menu-toggle { display: none; }

/* --- compact state --- 
.site-header.is-compact {
  height: var(--header-h-compact);
  background: rgb(6 7 7 / 38%);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
}*/

.site-header.is-compact {
    height: var(--header-h-compact);
    background: rgb(6 7 7);
    /* backdrop-filter: blur(12px); */
    border-bottom-color: rgb(169 121 45 / 51%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
}

/*.site-header.is-compact .brand__logo { width: 116px; }*/
.site-header.is-compact .brand__logo { width: 150px; }
.site-header.is-compact .site-header__divider { height: 40px; }
.site-header.is-compact .primary-nav__contact {
  padding: 8px 20px; border: 0; color: #b88f35;
}
.site-header.is-compact .primary-nav__contact:hover { background: rgba(217, 161, 59, .12); }

/* =========================================================================
   SECTION 1 — HERO
   ========================================================================= */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: 100svh; padding-top: var(--header-h);
  display: flex; flex-direction: column; justify-content: center;
}
.hero__bg { display: none; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
}
.hero__inner { width: 100%; max-width: var(--maxw); margin-inline: auto; padding: 20px var(--gutter) 40px; }
.hero__content { width: min(620px, 60%); }
.hero__title {
  margin: 0; color: #b88f35;
  font-family: var(--font-head); font-weight: 500;
  font-size: clamp(40px, 4.6vw, 62px); line-height: 1.03; letter-spacing: .045em; text-transform: uppercase;
  text-shadow: 0 2px 3px rgba(0,0,0,.5), 0 0 22px rgba(173,114,31,.2);
}
.hero__title sup { font-size: .48em; top: -.16em; }
.hero__rule { width: min(460px, 100%); margin: 22px 0 16px; }
.hero__lead {
  width: fit-content; margin: 0 0 20px;
  color: #b88f35; font-family: var(--font-head); font-size: 15px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
}
.hero__copy { width: min(520px, 100%); color: var(--body-text); font-size: 17px; line-height: 1.42; text-shadow: 0 1px 4px rgba(0,0,0,.7); }
.hero__copy p { margin: 0 0 12px; }
.hero__copy sup { font-size: .6em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 26px; }

.hero__stats {
  width: 100%; margin-top: 56px;
  display: grid; grid-template-columns: repeat(7, 1fr);
}
.hstat {
  position: relative; display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 0 8px; color: var(--text); font-family: var(--font-head); text-transform: uppercase;
}
.hstat + .hstat::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 1px; height: 92px;
  background: linear-gradient(180deg, var(--gold-muted), rgba(169,121,45,.08));
}
.hstat__icon { width: 40px; height: 40px; margin-bottom: 8px; fill: none; stroke: #b88f35; stroke-width: 1.2; stroke-linejoin: round; stroke-linecap: round; }
.hstat__icon--star { fill: rgba(209,152,53,.12); }
.hstat strong { font-size: 22px; font-weight: 400; line-height: 1.05; letter-spacing: .04em; color: #b88f35; }
.hstat span { margin-top: 5px; font-size: 11px; letter-spacing: .05em; }
.hstat small { margin-top: 4px; font-size: 8.5px; line-height: 1.35; letter-spacing: .03em; color: var(--body-dim); }
.hstat__word { font-size: 10px !important; letter-spacing: .06em; color: var(--body-dim); }

/* =========================================================================
   GENERIC SECTION
   ========================================================================= */
.section { position: relative; padding: clamp(60px, 8vw, 110px) 0; }
.row-x { display: flex; gap: clamp(30px, 5vw, 70px); align-items: center; }
.row-x--top { align-items: flex-start; }

/* =========================================================================
   SECTION 2 — PERSPECTIVES
   ========================================================================= */
.perspectives { background: transparent; }
.perspectives__text { flex: 0 1 35%; }
.perspectives__text .display-serif { margin-top: 16px; }
.perspectives__text .body-copy { margin-bottom: 26px; }
.perspectives__slider { flex: 1 1 65%; min-width: 0; }

/* Section 2 arrows: pulled outside the slides so the viewport (and slides)
   use the full column width, matching the reference. */
.perspectives__slider .art-slider__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
}
.perspectives__slider .art-slider__arrow--prev { left: -25px; }
.perspectives__slider .art-slider__arrow--next { right: -25px; }

/* Reusable "line with diamond": solid line on the left, diamond centered,
   gradient line on the right. The standard divider used across the site. */
.rule-diamond--split span:first-child {
  flex: 1; background: var(--gold-muted);
}
.rule-diamond--split span:last-child {
  flex: 1;
  background: linear-gradient(90deg, var(--gold-muted), transparent);
}

/* art slider (3 tall paintings) */
.art-slider { position: relative; display: flex; align-items: center; gap: 6px; }
.art-slider__viewport { overflow: hidden; flex: 1; min-width: 0; }
.art-slider__track { display: flex; gap: 0; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.ph--art { flex: 0 0 calc(100% / 3); aspect-ratio: 230 / 388; }
.art-slide { flex: 0 0 calc(100% / 3); margin: 0; overflow: hidden; border: 1px solid #b88f35; }
.art-slide:not(:nth-child(3n+1)) { border-left: 0; }
.art-slide img { width: 100%; aspect-ratio: 230 / 388; object-fit: cover; display: block; }
.art-slider__arrow {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; background: rgb(8 8 7);
  border: 1px solid var(--gold-muted); transition: all .2s;
}
.art-slider__arrow svg { width: 20px; height: 20px; fill: none; stroke: var(--gold-soft); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.art-slider__arrow:hover { background: rgb(8 8 7); border-color: var(--gold); }
.art-slider__arrow:hover svg { stroke: #b88f35; }

.art-slider__dots { display: flex; justify-content: center; gap: 12px; margin-top: 22px; }
.art-slider__dots button { width: 26px; height: 3px; border: 0; padding: 0; cursor: pointer; background: var(--gold-deep); transition: background .2s; }
.art-slider__dots button.is-active { background: var(--gold-bright); }
.art-slider__dots--round button { width: 9px; height: 9px; border-radius: 50%; }

/* journey timeline */
.journey { margin-top: clamp(40px, 6vw, 70px); border-radius: 8px; padding: 34px clamp(20px, 4vw, 50px) 40px; }
.journey__title { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 0 0 34px; color: #b88f35; font-family: var(--font-head); font-size: 20px; letter-spacing: .22em; text-transform: uppercase; }
.journey__title .eyebrow__line { width: clamp(40px, 12vw, 150px); }
.journey__title .eyebrow__line:first-child { background: linear-gradient(90deg, transparent, var(--gold-muted)); }
.journey__title .eyebrow__line:last-child { background: linear-gradient(90deg, var(--gold-muted), transparent); }
.journey__track { position: relative; display: flex; justify-content: space-between; gap: 12px; }
.journey__line { position: absolute; top: 38px; left: 6%; right: 2%; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-bright) 50%, var(--gold)); box-shadow: 0 0 6px rgba(217, 161, 59, .45); }
.journey__line::after { content: ""; position: absolute; right: -5px; top: -3px; width: 0; height: 0; border-left: 8px solid var(--gold-bright); border-top: 4px solid transparent; border-bottom: 4px solid transparent; }
/* glowing dot markers between the circles */
.journey__track::before {
  content: ""; position: absolute; z-index: 1; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle 10px at 25% 39px, #fff3d2 0 10%, var(--gold-bright) 24%, rgba(237, 189, 91, .38) 46%, transparent 72%),
    radial-gradient(circle 10px at 50% 39px, #fff3d2 0 10%, var(--gold-bright) 24%, rgba(237, 189, 91, .38) 46%, transparent 72%),
    radial-gradient(circle 10px at 75% 39px, #fff3d2 0 10%, var(--gold-bright) 24%, rgba(237, 189, 91, .38) 46%, transparent 72%),
    radial-gradient(circle 10px at 93% 39px, #fff3d2 0 10%, var(--gold-bright) 24%, rgba(237, 189, 91, .38) 46%, transparent 72%);
  background-repeat: no-repeat;
}
.journey__node { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; }
.journey__circle { width: 78px; height: 78px; border-radius: 50%; border: 2px solid var(--gold-muted); box-shadow: 0 0 0 5px rgba(6,7,7,1); overflow: hidden; }
.journey__circle img { width: 100%; height: 100%; object-fit: cover; display: block; }
.journey__node strong { margin-top: 16px; color: #b88f35; font-family: var(--font-head); font-size: 15px; letter-spacing: .1em; text-transform: uppercase; }
.journey__node small { margin-top: 5px; color: var(--body-dim); font-family: var(--font-head); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }

/* =========================================================================
   SECTION 3 — GUSTAVE DORÉ
   ========================================================================= */
.dore { background: transparent; }
.dore__eyebrow { margin-bottom: 12px; font-size: 16px; }
.dore__rule { width: min(300px, 70%); margin: 0 auto 22px; }
.dore__rule span:first-child { background: linear-gradient(90deg, transparent, var(--gold-muted)); }
.dore__title { margin: 8px auto 44px; max-width: 900px; }
.dore__grid { display: grid; grid-template-columns: 1fr 1fr 1.15fr; gap: clamp(16px, 4vw, 16px); }
.dore__col--copy {
  border-left: 1px solid var(--gold-muted);
  border-right: 1px solid var(--gold-muted);
  border-image: linear-gradient(180deg, transparent, rgba(169, 121, 45, .55) 18%, rgba(169, 121, 45, .55) 82%, transparent) 1;
  padding: 0 clamp(20px, 3vw, 16px);
}
.dore__col--portrait { text-align: center; }
.dore__portrait { display: block; width: 200px; height: 250px; border-radius: 50%; margin: 0 auto 20px; border: 2px solid var(--gold-muted); box-shadow: 0 0 30px rgba(0,0,0,.5); overflow: hidden; }
.dore__portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dore__name { color: #b88f35; font-family: var(--font-serif); font-weight: 600; font-size: 22px; margin: 0; }
.dore__subhead { color: #b88f35; font-family: var(--font-serif); font-weight: 600; font-size: clamp(22px, 2.2vw, 28px); margin: 0 0 18px; }
.dore__col--copy .dore__subhead { text-align: center; }
.dore__subhead--sm { font-size: 21px; margin: 26px 0 14px; }
.dore__closing { margin-top: 6px; }
.dore__compare { display: flex; align-items: flex-start; justify-content: center; gap: 8px; }
.dore__compare-item { margin: 0; flex: 1; text-align: center; }
.dore__compare-item figcaption { margin-top: 12px; color: #b88f35; font-family: var(--font-head); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; line-height: 1.5; }
.ph--compare { aspect-ratio: 3 / 3.6; }
.dore__compare-img { display: block; aspect-ratio: 3 / 3.6; overflow: hidden; border: 1px solid var(--gold-muted); }
.dore__compare-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dore__compare-img--bw img { filter: grayscale(1); }
.dore__arrow { flex: 0 0 auto; align-self: center; margin-top: -24px; }
.dore__arrow svg { width: 46px; height: auto; display: block; filter: drop-shadow(0 0 5px rgba(217, 161, 59, .4)); }
.dore__quote-wrap { margin-top: 56px; text-align: center; }
.dore__quote-line { display: block; width: 100%; height: 1px; background: var(--gold-muted); margin-bottom: 30px; }
.dore__quote { margin: 0; color: #b88f35; font-family: var(--font-serif); font-style: italic; font-weight: 500; font-size: clamp(22px, 2.6vw, 34px); text-align: center; }

/* =========================================================================
   SECTION 3.1 — FOR ARTISTS (CALL)
   ========================================================================= */
.acall__row { align-items: flex-start; gap: clamp(30px, 5vw, 34px); }
.acall__media { flex: 1 1 50%; min-width: 0; }
.acall__text { flex: 1 1 50%; min-width: 0; }
.acall__art { margin: 0; border: 1px solid rgb(217 161 59); border-radius: 4px; overflow: hidden; }
.acall__art img { width: 100%; height: auto; display: block; margin-top: -45px; }
.acall__title { margin: 14px 0 0; }
.acall__rule { width: 100%; margin: 20px 0 22px; }
.acall__rule span:first-child { background: linear-gradient(90deg, transparent, var(--gold-muted)); }
.acall__rule span:last-child { background: linear-gradient(90deg, var(--gold-muted), transparent); }
.acall__features { display: grid; grid-template-columns: repeat(4, 1fr); margin: 30px 0 28px; }
.acall__features .ifeature { position: relative; padding: 0 14px; }
.acall__features .ifeature + .ifeature::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 1px; background: linear-gradient(180deg, transparent, var(--gold-muted), transparent); }
.acall__subcta { margin: 16px 0 0; color: #b88f35; font-family: var(--font-head); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.acall__stats { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: clamp(46px, 6vw, 12px); padding-top: 40px; border-top: 1px solid var(--line-soft); }
.acall__stats .cstat { position: relative; justify-content: center; padding: 0 18px; }
.acall__stats .cstat + .cstat::before { content: ""; position: absolute; left: 0; top: 2px; bottom: 2px; width: 1px; background: linear-gradient(180deg, transparent, var(--gold-muted), transparent); }

/* =========================================================================
   SECTION 4 — INVESTORS
   ========================================================================= */
.invest { background: transparent; }
.invest__text { flex: 0 0 33.3333%; }
.invest__title { margin-top: 12px; }
.invest__media { flex: 1 1 auto; min-width: 0; }
.invest__features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 30px 0 30px; }
.ifeature { text-align: center; display: flex; flex-direction: column; align-items: center; }
.ifeature svg, .ifeature img { width: 38px; height: 38px; fill: none; stroke: #b88f35; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 12px; }
.ifeature strong { color: #b88f35; font-family: var(--font-head); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; line-height: 1.4; }
.ifeature small { margin-top: 8px; color: var(--body-dim); font-size: 13px; line-height: 1.35; }
.btn-m--wide em { margin-left: 4px; }
.invest__text .btn-m { margin-top: 6px; }
.ph--wide { aspect-ratio: 16 / 8.4; width: 100%; border: 1px solid rgb(217 161 59); }
.art-slider--video .ph--wide { flex: 0 0 100%; }
.art-slider--video .art-slider__track { gap: 0; }
.art-slider--video .art-slider__arrow { position: absolute; z-index: 3; top: 50%; transform: translateY(-50%); }
.art-slider--video .art-slider__arrow--prev { left: 14px; }
.art-slider--video .art-slider__arrow--next { right: 14px; }
.invest__statement { margin: 26px auto 0; max-width: 640px; text-align: center; color: var(--body-text); font-size: 21px; line-height: 1.45; }
.invest__statement em { color: #b88f35; font-style: italic; }
.invest__statement-rule { width: min(360px, 80%); margin: 22px auto 0; }
.invest__statement-rule span:first-child { background: linear-gradient(90deg, transparent, var(--gold-muted)); }

/* timeline (investors) */
.timeline { position: relative; display: flex; justify-content: space-between; gap: 14px; margin-top: calc(clamp(48px, 7vw, 84px) - 50px); }
.timeline__line { position: absolute; top: 26px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-bright) 50%, var(--gold)); box-shadow: 0 0 6px rgba(217, 161, 59, .45); }
/* glowing dot markers between the circles */
.timeline::before {
  content: ""; position: absolute; z-index: 1; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle 10px at 20% 27px, #fff3d2 0 10%, var(--gold-bright) 24%, rgba(237, 189, 91, .38) 46%, transparent 72%),
    radial-gradient(circle 10px at 40% 27px, #fff3d2 0 10%, var(--gold-bright) 24%, rgba(237, 189, 91, .38) 46%, transparent 72%),
    radial-gradient(circle 10px at 60% 27px, #fff3d2 0 10%, var(--gold-bright) 24%, rgba(237, 189, 91, .38) 46%, transparent 72%),
    radial-gradient(circle 10px at 80% 27px, #fff3d2 0 10%, var(--gold-bright) 24%, rgba(237, 189, 91, .38) 46%, transparent 72%);
  background-repeat: no-repeat;
}
.timeline__step { position: relative; z-index: 2; flex: 1; text-align: center; display: flex; flex-direction: column; align-items: center; }
.timeline__dot { width: 54px; height: 54px; border-radius: 50%; border: 1px solid var(--gold-muted); background: var(--dark); display: grid; place-items: center; box-shadow: 0 0 0 4px var(--dark); }
.timeline__dot svg, .timeline__dot img { width: 24px; height: 24px; fill: none; stroke: #b88f35; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.timeline__step strong { margin-top: 16px; color: #b88f35; font-family: var(--font-head); font-size: 22px; font-weight: 500; letter-spacing: .04em; }
.timeline__step b { margin-top: 4px; color: #b88f35; font-family: var(--font-head); font-size: 11px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.timeline__step small { margin-top: 8px; max-width: 190px; color: var(--body-dim); font-size: 13px; line-height: 1.35; }

/* =========================================================================
   SECTION 5 — THREE WAYS
   ========================================================================= */
.ways { background: transparent; overflow: hidden; }
.ways__bg { display: none; }
.ways .container-x { position: relative; z-index: 1; }
.ways__title { margin: 8px auto 0; max-width: 820px; }
.ways__intro { margin-top: 8px; margin-bottom: 46px; }
.ways__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 32px); }
.waycard { position: relative; border: 1px solid rgb(217 161 59); background: rgba(10,9,7,.6); padding-bottom: 34px; display: flex; flex-direction: column; align-items: center; text-align: center; transition: box-shadow .25s, transform .25s; border-radius: 7px; overflow: hidden; }
.waycard:hover { box-shadow: 0 16px 44px rgba(0,0,0,.5); transform: translateY(-4px); }
.waycard__img { width: 100%; aspect-ratio: 16 / 9.4; border: 0; border-bottom: 1px solid rgb(217 161 59); overflow: hidden; }
.waycard__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.waycard__icon { width: 64px; height: 64px; margin: -32px 0 18px; border-radius: 50%; background: var(--dark); border: 1px solid var(--gold-muted); display: grid; place-items: center; box-shadow: 0 8px 22px rgba(0,0,0,.5); }
.waycard__icon svg, .waycard__icon img { width: 30px; height: 30px; fill: none; stroke: #b88f35; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.waycard__title { color: #b88f35; font-family: var(--font-head); font-size: 17px; letter-spacing: .06em; text-transform: uppercase; margin: 0 0 14px; }
.waycard__text { color: var(--body-text); font-size: 16px; line-height: 1.45; max-width: 300px; margin: 0 auto 22px; padding: 0 18px; }
.waycard .btn-m { width: calc(100% - 44px); margin-top: auto; }
.ways__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: clamp(44px, 6vw, 70px); padding-top: 40px; border-top: 1px solid var(--line-soft); }
.waystat { display: flex; align-items: center; justify-content: center; gap: 18px; }
.waystat svg, .waystat img { width: 46px; height: 46px; flex: 0 0 auto; fill: none; stroke: #b88f35; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }
.waystat strong { display: block; color: #b88f35; font-family: var(--font-serif); font-weight: 700; font-size: 40px; line-height: 1; }
.waystat__word { font-size: 22px !important; }
.waystat b { display: block; margin-top: 3px; color: #b88f35; font-family: var(--font-head); font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.waystat small { display: block; margin-top: 4px; color: var(--body-dim); font-size: 13px; }

/* =========================================================================
   SECTION 6 — CATALOG
   ========================================================================= */
.catalog { background: transparent; overflow: hidden; }
.catalog__bg { display: none; }
.catalog .container-x { position: relative; z-index: 1; }
.catalog__eyebrow { margin-bottom: 12px; }
.catalog__rule { width: min(300px, 70%); margin: 0 auto 22px; }
.catalog__rule span:first-child { background: linear-gradient(90deg, transparent, var(--gold-muted)); }
.catalog__title { margin: 8px auto 20px; }
.catalog__intro { margin: 0 auto 40px; }
.catalog__slider-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 30px; }
.catalog__viewport { overflow: hidden; flex: 1; min-width: 0; }
.catalog__track { display: flex; gap: 20px; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.artcard { flex: 0 0 calc((100% - 100px) / 6); min-width: 0; border: 1px solid rgb(217 161 59); padding-bottom: 18px; background: #060707; border-radius: 7px; overflow: hidden; }
.artcard__img { display: block; width: 100%; aspect-ratio: 3 / 4.2; overflow: hidden; }
.artcard__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.artcard__num { display: block; margin: 16px 0 6px; padding: 0 16px; color: #b88f35; font-family: var(--font-serif); font-weight: 600; font-size: 30px; line-height: 1; }
.artcard__title { padding: 0 16px; color: #b88f35; font-family: var(--font-head); font-size: 13px; letter-spacing: .05em; text-transform: uppercase; line-height: 1.35; margin: 0 0 8px; min-height: 2.6em; }
.artcard__ref { padding: 0 16px; color: var(--body-dim); font-size: 14px; font-style: italic; margin: 0; }
.catalog__arrow { flex: 0 0 auto; }
.catalog__dots { display: flex; justify-content: center; gap: 12px; margin: 30px 0 34px; }
.catalog__dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; cursor: pointer; background: var(--gold-deep); transition: background .2s; }
.catalog__dots button.is-active { background: var(--gold-bright); }
.catalog__stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: clamp(46px, 6vw, 72px); padding-top: 40px; border-top: 1px solid var(--line-soft); }
.cstat { display: flex; align-items: center; gap: 14px; }
.cstat svg, .cstat img { width: 42px; height: 42px; flex: 0 0 auto; fill: none; stroke: #b88f35; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }
.cstat strong { display: block; color: #b88f35; font-family: var(--font-serif); font-weight: 700; font-size: 30px; line-height: 1; }
.cstat__word { font-size: 16px !important; line-height: 1.2; }
.cstat b { display: block; margin-top: 3px; color: #b88f35; font-family: var(--font-head); font-size: 11px; font-weight: 500; letter-spacing: .07em; text-transform: uppercase; }
.cstat small { display: block; margin-top: 4px; color: var(--body-dim); font-size: 12px; line-height: 1.3; }

/* =========================================================================
   SECTION — FROM THE AUTHOR
   ========================================================================= */
.author__row { align-items: center; gap: clamp(30px, 5vw, 70px); }
.author__text { flex: 1 1 60%; min-width: 0; }
.author__media { flex: 1 1 40%; min-width: 0; margin: 0; border: 1px solid rgb(217 161 59); border-radius: 6px; overflow: hidden; }
.author__media img { width: 100%; height: auto; display: block; }
.author__quote { margin: 16px 0 0; color: #b88f35; font-family: var(--font-serif); font-style: italic; font-weight: 500; font-size: clamp(26px, 3vw, 40px); line-height: 1.15; }
.author__rule { width: min(380px, 100%); margin: 22px 0; }
.author__rule span:first-child { background: linear-gradient(90deg, transparent, var(--gold-muted)); }
.author__rule span:last-child { background: linear-gradient(90deg, var(--gold-muted), transparent); }
.author__text .btn-m { margin-top: 26px; }

/* --- modal (author letter) --- */
.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.is-open { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(3, 4, 4, .82); backdrop-filter: blur(4px); }
.modal__dialog { position: relative; z-index: 1; width: min(680px, 100%); max-height: 86vh; overflow-y: auto; background: #0a0b0a; border: 1px solid var(--gold-muted); border-radius: 8px; padding: 40px clamp(24px, 4vw, 48px) 44px; box-shadow: 0 30px 80px rgba(0, 0, 0, .6); text-align: center; }
.modal__dialog .eyebrow { justify-content: center; }
.modal__close { position: absolute; top: 12px; right: 16px; width: 40px; height: 40px; background: none; border: 0; cursor: pointer; color: #b88f35; font-size: 28px; line-height: 1; transition: color .2s; }
.modal__close:hover { color: var(--gold-bright); }
.modal__title { margin: 6px 0 0; color: #b88f35; font-family: var(--font-serif); font-weight: 600; font-size: clamp(26px, 3vw, 38px); }
.modal__rule { width: min(300px, 80%); margin: 16px auto 22px; }
.modal__rule span:first-child { background: linear-gradient(90deg, transparent, var(--gold-muted)); }
.modal__rule span:last-child { background: linear-gradient(90deg, var(--gold-muted), transparent); }
.modal__body { text-align: left; }
.modal__body .gold-em { font-size: 20px; font-style: italic; }
.modal__sign { margin-top: 20px; color: #b88f35; font-family: var(--font-serif); font-style: italic; font-size: 20px; }
body.modal-open { overflow: hidden; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { border-top: 1px solid var(--line-soft); padding: 54px 0 60px; text-align: center; background: transparent; }
.site-footer__brand { margin: 0; font-family: var(--font-head); font-size: 20px; letter-spacing: .1em; color: #b88f35; }
.site-footer__brand em { font-family: var(--font-serif); font-style: italic; text-transform: none; letter-spacing: 0; }
.site-footer__sub { margin: 8px 0 0; font-family: var(--font-head); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--body-dim); }
.site-footer__note { margin: 18px 0 0; font-size: 13px; color: var(--gold-deep); }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1100px) {
  .primary-nav { gap: 18px; }
  .primary-nav a { font-size: 10.5px; }
  .perspectives__slider .art-slider__arrow--prev { left: -14px; }
  .perspectives__slider .art-slider__arrow--next { right: -14px; }
  .dore__grid { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; }
  .dore__col { text-align: center; }
  .dore__col--copy { border: 0; border-image: none; padding: 0; }
  .dore__col--copy .rule-diamond { margin-inline: auto; }
  .dore__compare, .dore__col--copy .body-copy { text-align: left; }
  .invest__features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --header-h: 96px; }
  body { font-size: 17px; }
  .primary-nav { display: none; }
  .lang { margin-left: auto; }
  .menu-toggle {
    display: flex; flex-direction: column; gap: 6px; margin-left: 0;
    width: 42px; height: 42px; align-items: center; justify-content: center;
    background: none; border: 0; cursor: pointer;
  }
  .menu-toggle span { width: 26px; height: 1.5px; background: var(--gold-soft); transition: transform .2s, opacity .2s; }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .site-header__divider { display: none; }
  .brand__logo { width: 120px; }
  .site-header.is-compact .brand__logo { width: 96px; }

  .primary-nav.is-open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    padding: 20px; gap: 6px; background: rgba(6,7,7,.97); border-bottom: 1px solid var(--line-soft);
    backdrop-filter: blur(12px);
  }
  .primary-nav.is-open a { padding: 12px; font-size: 13px; }

  .hero__content { width: 100%; }
  .hero__stats { width: 100%; grid-template-columns: repeat(3, 1fr); row-gap: 30px; }
  .hstat:nth-child(3n+1)::before { display: none; }

  .row-x { flex-direction: column; }
  .perspectives__text, .invest__text, .invest__media, .perspectives__slider,
  .acall__media, .acall__text, .author__text, .author__media { flex: 1 1 100%; width: 100%; }
  .acall__features { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .acall__features .ifeature:nth-child(2n+1)::before { display: none; }
  .acall__stats { grid-template-columns: repeat(2, 1fr); row-gap: 26px; }
  .acall__stats .cstat:nth-child(2n+1)::before { display: none; }
  .perspectives__slider .art-slider__arrow--prev { left: 6px; }
  .perspectives__slider .art-slider__arrow--next { right: 6px; }
  .ph--art, .art-slide { flex-basis: calc(100% / 2); }
  .ways__cards { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .ways__stats { grid-template-columns: 1fr; gap: 26px; }
  .artcard { flex-basis: calc((100% - 40px) / 3); }
  .catalog__stats { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .dore__quote-wrap { flex-direction: column; gap: 18px; }
  .timeline { flex-wrap: wrap; gap: 34px 14px; }
  .timeline__line, .timeline::before { display: none; }
  .timeline__step { flex: 1 1 40%; }
  .journey__track { flex-wrap: wrap; gap: 30px 12px; }
  .journey__line { display: none; }
  .journey__node { flex: 1 1 40%; }
}

@media (max-width: 600px) {
  :root { --gutter: 18px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hstat::before { display: none !important; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn-m { width: 100%; }
  .ph--art, .art-slide { flex-basis: 100%; }
  .artcard { flex-basis: calc((100% - 20px) / 2); }
  .invest__features { grid-template-columns: 1fr; }
  .catalog__stats { grid-template-columns: 1fr; }
  .display-serif { font-size: clamp(32px, 9vw, 44px); }
  .dore__quote { font-size: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* =========================================================================
   Шапка страницы (.ahero)
   Общий компонент: используется и на About, и на информационных страницах.
   About-специфичное — ангел в фоне и скрытый .ahero__photo — в about.css.
   ========================================================================= */
/* ---------------- Hero ---------------- */
.ahero { position: relative; min-height: clamp(520px, 62vw, 760px); display: flex; align-items: center; overflow: hidden; }

/* the sculpture sits on the right and dissolves into the dark on every edge */
.ahero__photo { position: absolute; z-index: 0; top: 0; right: 0; width: min(74%, 1080px); height: 100%; pointer-events: none; }
.ahero__photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: 42% 40%;
  -webkit-mask-image:
    linear-gradient(90deg, transparent, #000 34%),
    linear-gradient(180deg, transparent, #000 16%, #000 74%, transparent);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent, #000 34%),
    linear-gradient(180deg, transparent, #000 16%, #000 74%, transparent);
  mask-composite: intersect;
}

.ahero__inner { position: relative; z-index: 1; width: 100%; }
.ahero__text { width: min(560px, 56%); }

.ahero__kicker {
  display: block; font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(24px, 2.6vw, 36px); letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold-bright); line-height: 1;
}
.ahero__title {
  margin: 4px 0 0; font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(52px, 7.6vw, 108px); line-height: .96; letter-spacing: .04em; text-transform: uppercase;
  color: #fbf7ef; text-shadow: 0 4px 30px rgba(0, 0, 0, .6);
}
.ahero__rule { width: min(420px, 100%); margin: 26px 0 24px; }
.ahero__rule span:first-child { background: linear-gradient(90deg, transparent, var(--gold-muted)); }
.ahero__rule span:last-child { background: linear-gradient(90deg, var(--gold-muted), transparent); }

.ahero__claim {
  margin: 0 0 26px; font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(19px, 1.9vw, 26px); letter-spacing: .14em; text-transform: uppercase;
  line-height: 1.5; color: var(--gold-bright);
}
.ahero__lead { margin: 0; color: var(--text); font-family: var(--font-serif); font-size: clamp(17px, 1.5vw, 21px); line-height: 1.6; }

@media (max-width: 1100px) {
  .ahero__text { width: min(560px, 70%); }
}
@media (max-width: 760px) {
  .ahero { min-height: 0; padding: 30px 0 40px; }
  .ahero__photo { position: relative; width: 100%; height: auto; margin-bottom: -8%; }
  .ahero__photo img { height: auto; -webkit-mask-image: linear-gradient(180deg, #000 70%, transparent); mask-image: linear-gradient(180deg, #000 70%, transparent); }
  .ahero__inner { margin-top: 10px; }
  .ahero__text { width: 100%; text-align: center; }
  .ahero__rule { margin-inline: auto; }
}
