/* ==========================================================================
   SENARA — Art Deco (Dark) Landing
   Design tokens по Art Deco prompt (DesignPrompts.dev)
   ========================================================================== */

:root {
  /* Colors — Dark Luxury Palette */
  --bg:           #0A0A0A;   /* Obsidian Black */
  --bg-card:      #141414;   /* Rich Charcoal */
  --fg:           #F2F0E4;   /* Champagne Cream */
  --fg-muted:     #888888;   /* Pewter */
  --gold:         #D4AF37;   /* Metallic Gold */
  --gold-light:   #F2E8C4;   /* Bright gold */
  --gold-dim:     rgba(212, 175, 55, 0.3);
  --blue:         #1E3D59;   /* Midnight Blue */
  --border:       rgba(212, 175, 55, 0.3);

  /* Typography */
  --font-display: 'Marcellus', Georgia, 'Times New Roman', serif;
  --font-body:    'Josefin Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-mono:    'Courier New', monospace;

  /* Spacing */
  --section-pad: clamp(5rem, 12vw, 10rem);
  --container:   1280px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1.2rem;            /* было 1.0625rem (17px) → теперь 19.2px */
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Diagonal crosshatch texture overlay (Art Deco signature) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background:
    repeating-linear-gradient(45deg,  transparent 0 22px, var(--gold) 22px 23px),
    repeating-linear-gradient(-45deg, transparent 0 22px, var(--gold) 22px 23px);
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--gold); color: var(--bg); }

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.1;
  font-weight: 400;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.95rem;          /* было 0.75rem → теперь 15.2px */
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  display: inline-block;
}

/* Decorative gold lines around section labels */
.eyebrow--framed::before,
.eyebrow--framed::after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 1rem;
  opacity: 0.6;
}

/* ==========================================================================
   Layout primitives
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
  position: relative;
  z-index: 2;
}

section { position: relative; z-index: 2; }

/* Stepped (ziggurat) corner decoration */
.ziggurat {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid var(--gold);
  opacity: 0.5;
}
.ziggurat--tl { top: 14px; left: 14px;   border-right: 0; border-bottom: 0; }
.ziggurat--tr { top: 14px; right: 14px;  border-left: 0;  border-bottom: 0; }
.ziggurat--bl { bottom: 14px; left: 14px;  border-right: 0; border-top: 0; }
.ziggurat--br { bottom: 14px; right: 14px; border-left: 0;  border-top: 0; }

/* ==========================================================================
   Nav
   ========================================================================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s ease, border-color 0.5s ease, padding 0.5s ease;
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-dim);
  padding-block: 1rem;
}

.nav__brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg);
}

.nav__brand .dot { color: var(--gold); }

.nav__links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.95rem;          /* было 0.8125rem */
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fg-muted);
  transition: color 0.4s ease;
  position: relative;
}

.nav__links a:hover { color: var(--gold); }

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.nav__links a:hover::after { width: 100%; }

@media (max-width: 720px) {
  .nav__links { display: none; }
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  height: 100vh;
  min-height: 640px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  /* contain = показывать ВЁ тело целиком (без обрезки),
     cover обрезал лицо/ноги и оставлял только одежду */
  object-fit: contain;
  object-position: center;
  filter: brightness(0.62) contrast(1.05);
  z-index: 0;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(10,10,10,0.45) 55%, rgba(10,10,10,0.92) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.4) 0%, transparent 25%, transparent 70%, rgba(10,10,10,0.9) 100%);
}

/* Sunburst radial glow behind title */
.hero__veil::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 140vmax; height: 140vmax;
  transform: translate(-50%, -50%);
  background:
    conic-gradient(from 0deg,
      transparent 0deg, rgba(212,175,55,0.04) 4deg, transparent 8deg,
      transparent 22deg, rgba(212,175,55,0.04) 26deg, transparent 30deg,
      transparent 44deg, rgba(212,175,55,0.04) 48deg, transparent 52deg,
      transparent 66deg, rgba(212,175,55,0.04) 70deg, transparent 74deg,
      transparent 88deg, rgba(212,175,55,0.04) 92deg, transparent 96deg);
  opacity: 0.7;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding-inline: 2rem;
}

.hero__eyebrow {
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: rise 1s ease 0.2s forwards;
}

.hero__title {
  font-size: clamp(3.5rem, 14vw, 11rem);
  letter-spacing: 0.08em;
  line-height: 0.92;
  color: var(--fg);
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
  opacity: 0;
  animation: rise 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.hero__subtitle {
  margin-top: 2rem;
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);   /* было 0.875–1.05 */
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--gold);
  opacity: 0;
  animation: rise 1.2s ease 0.9s forwards;
}

.hero__tagline {
  margin-top: 2.5rem;
  font-family: var(--font-display);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);    /* было 1–1.35 */
  color: var(--fg);
  max-width: 32ch;
  margin-inline: auto;
  opacity: 0;
  animation: rise 1.2s ease 1.3s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 0.9rem;          /* было 0.6875rem */
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--gold);
  opacity: 0;
  animation: rise 1s ease 1.8s forwards, bob 2.5s ease-in-out 2.8s infinite;
}

.hero__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  margin: 0.75rem auto 0;
  background: linear-gradient(var(--gold), transparent);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ==========================================================================
   Section base
   ========================================================================== */

.section {
  padding-block: var(--section-pad);
}

.section__head {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section__title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  margin-top: 1.5rem;
}

.section__lede {
  margin-top: 1.5rem;
  max-width: 56ch;
  margin-inline: auto;
  color: var(--fg-muted);
  font-size: 1.2rem;          /* было 1.05rem */
}

/* ==========================================================================
   REVEAL section — split layout
   ========================================================================== */

.reveal {
  background: linear-gradient(180deg, var(--bg) 0%, #060606 100%);
}

.reveal__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

@media (max-width: 880px) {
  .reveal__grid { grid-template-columns: 1fr; }
}

.reveal__media {
  position: relative;
  border: 1px solid var(--gold-dim);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.reveal__media video {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  background: var(--bg);
}

/* Double-frame effect */
.reveal__media::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 3px solid rgba(10, 10, 10, 0.9);
  pointer-events: none;
}

.reveal__text h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin: 1.25rem 0 2rem;
}

.reveal__text p {
  color: var(--fg);
  margin-bottom: 1.5rem;
  max-width: 46ch;
  font-size: 1.15rem;        /* было унаследовано 17px → теперь 18.4px + светлее */
  line-height: 1.75;
}

.reveal__text p strong { color: var(--gold); font-weight: 400; }

/* ==========================================================================
   GALLERY — detail grid
   ========================================================================== */

.gallery {
  background: var(--bg-card);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 880px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
}

.gallery__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--gold-dim);
  background: var(--bg);
}

.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.35) brightness(0.95);
  transition: filter 0.9s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery__item:hover img {
  filter: grayscale(0) brightness(1);
  transform: scale(1.06);
}

.gallery__item::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid transparent;
  z-index: 2;
  transition: border-color 0.5s ease;
}
.gallery__item:hover::before { border-color: var(--gold); }

.gallery__caption {
  position: absolute;
  left: 0; bottom: 0;
  padding: 1.1rem 1.25rem;
  font-size: 0.95rem;          /* было 0.6875rem */
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  z-index: 3;
  background: linear-gradient(0deg, rgba(10,10,10,0.92), transparent);
  width: 100%;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.gallery__item:hover .gallery__caption { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   COMPANIONSHIP section
   ========================================================================== */

.companionship {
  background: var(--bg);
}

.companionship__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

@media (max-width: 880px) {
  .companionship__grid { grid-template-columns: 1fr; }
}

.companionship__media {
  position: relative;
  border: 1px solid var(--gold-dim);
  aspect-ratio: 16 / 11;
  overflow: hidden;
  order: 2;
}

.companionship__media video {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  background: var(--bg);
}

.companionship__media::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 3px solid rgba(10, 10, 10, 0.85);
  pointer-events: none;
}

.companionship__text h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin: 1.25rem 0 2rem;
}

.companionship__text p {
  color: var(--fg);
  margin-bottom: 1.5rem;
  max-width: 46ch;
  font-size: 1.15rem;
  line-height: 1.75;
}

/* Pull quote */
.companionship__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.45;
  color: var(--fg);
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
  margin: 2.5rem 0;
  max-width: 40ch;
}

/* ==========================================================================
   CONCEPT section (philosophy — minimal)
   ========================================================================== */

.concept {
  background: linear-gradient(180deg, #060606 0%, var(--bg) 100%);
  text-align: center;
}

.concept__statement {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  line-height: 1.35;
  max-width: 22ch;
  margin: 2rem auto 1rem;
  color: var(--fg);
}

.concept__statement em {
  font-style: italic;
  color: var(--gold);
}

.concept__three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  max-width: 900px;
  margin-inline: auto;
}

@media (max-width: 720px) {
  .concept__three { grid-template-columns: 1fr; gap: 2.5rem; }
}

.concept__card {
  position: relative;
  padding: 2.5rem 1.75rem;
  background: var(--bg-card);
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid var(--gold-dim);
}

.concept__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 1.25rem;
}

.concept__card h3 {
  font-size: 1.35rem;          /* было 1.1rem */
  margin-bottom: 1rem;
}

.concept__card p {
  color: var(--fg);
  font-size: 1.1rem;           /* было 0.95rem */
  line-height: 1.65;
}

/* ===== Concept actions (toggle button for diagrams) ===== */
.concept__actions {
  margin-top: 3.5rem;
  display: flex;
  justify-content: center;
}

.concept__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.concept__toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.concept__toggle:hover { color: var(--bg); }
.concept__toggle:hover::before { transform: translateX(0); }
.concept__toggle > * { position: relative; z-index: 1; }

.concept__toggle-diamond {
  font-size: 0.75em;
  opacity: 0.85;
  transform: translateY(-1px);
}

/* ===== Modal (diagrams) ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
}

.modal.is-open { display: flex; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.4s ease;
}

.modal__panel {
  position: relative;
  z-index: 1;
  background: var(--bg);
  border: 1px solid var(--gold);
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(2rem, 4vw, 3.5rem);
  animation: rise 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Inner frame-within-frame */
.modal__panel::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 3px solid rgba(10, 10, 10, 0.95);
  pointer-events: none;
  z-index: 2;
}

.modal__panel > * { position: relative; z-index: 3; }

.modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold-dim);
  background: var(--bg);
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal__close:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--bg);
}

.modal__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.modal__lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--fg-muted);
  margin-bottom: 2.5rem;
}

.modal__diagrams {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

@media (max-width: 720px) {
  .modal__diagrams { grid-template-columns: 1fr; }
}

.modal__figure {
  margin: 0;
}

.modal__figure img {
  width: 100%;
  border: 1px solid var(--gold-dim);
}

.modal__figure figcaption {
  margin-top: 0.9rem;
  font-size: 0.95rem;
  color: var(--fg-muted);
  font-style: italic;
  font-family: var(--font-display);
  text-align: center;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.concept__cta {
  margin-top: 4rem;
  font-size: 1.1rem;          /* было 0.875rem */
  color: var(--fg-muted);
}

/* ==========================================================================
   COLOPHON — about the author (restrained signature section)
   ========================================================================== */

.colophon {
  background: linear-gradient(180deg, var(--bg) 0%, #060606 100%);
  border-top: 1px solid var(--gold-dim);
}

.colophon__grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 760px;
  margin-inline: auto;
}

@media (max-width: 640px) {
  .colophon__grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

/* Portrait — double frame + ziggurat corners, grayscale → color on hover */
.colophon__portrait {
  position: relative;
  width: clamp(220px, 22vw, 300px);
  aspect-ratio: 3 / 4;
  border: 1px solid var(--gold);
  overflow: hidden;
  background: var(--bg-card);
}

.colophon__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.4) brightness(0.85) contrast(1.05);
  transition: filter 0.9s ease;
}

.colophon__portrait:hover img {
  filter: grayscale(0) brightness(0.95) contrast(1.05);
}

/* Inner frame-within-frame */
.colophon__portrait::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 3px solid rgba(10, 10, 10, 0.85);
  pointer-events: none;
  z-index: 2;
}

.colophon__text .eyebrow { margin-bottom: 1.25rem; }

.colophon__name {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.colophon__role {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;          /* было 1.05rem */
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.colophon__bio {
  color: var(--fg);
  font-size: 1.15rem;         /* было 0.95rem */
  line-height: 1.75;
  max-width: 42ch;
  margin-bottom: 1.75rem;
}

@media (max-width: 640px) {
  .colophon__bio { margin-inline: auto; }
}

.colophon__links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.colophon__links a {
  font-size: 0.95rem;          /* было 0.75rem */
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 4px;
  transition: color 0.4s ease, border-color 0.4s ease;
}

.colophon__links a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* "Coming soon" non-link pill */
.colophon__link-coming,
.footer__coming {
  font-size: 0.95rem;          /* было 0.75rem */
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
  opacity: 0.6;
  cursor: default;
  padding-bottom: 4px;
}

.footer__coming { font-size: 1rem; opacity: 0.55; }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.btn:hover { color: var(--bg); }
.btn:hover::before { transform: translateX(0); }
.btn > * { position: relative; z-index: 1; }

.btn--solid {
  background: var(--gold);
  color: var(--bg);
}
.btn--solid::before { background: var(--gold-light); }
.btn--solid:hover { color: var(--bg); }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: #050505;
  border-top: 1px solid var(--gold-dim);
  padding-block: clamp(3rem, 6vw, 5rem) 2.5rem;
  position: relative;
  z-index: 2;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 720px) {
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer__brand .dot { color: var(--gold); }

.footer__role {
  color: var(--fg-muted);
  font-size: 1.1rem;           /* было 0.9rem */
  font-style: italic;
  font-family: var(--font-display);
}

.footer__col h4 {
  font-size: 0.95rem;          /* было 0.75rem */
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 0.85rem; }

.footer__col a {
  color: var(--fg-muted);
  font-size: 1.05rem;          /* было 0.9rem */
  transition: color 0.3s ease;
}
.footer__col a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid var(--gold-dim);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;           /* было 0.75rem */
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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