/* ============================================================
   Регина Ахунова — портфолио организатора мероприятий
   Эстетика: тёплый редакционный / премиальный ивент
   ============================================================ */

:root {
  --bg:        #F7F0E4;   /* warm cream */
  --bg-deep:   #EFE5D3;   /* deeper cream */
  --ink:       #1C1714;   /* warm near-black */
  --ink-soft:  #5a4f47;   /* muted brown-grey */
  --orange:    #E8511D;   /* primary */
  --orange-br: #FF6A2B;   /* bright accent */
  --orange-dk: #B83C12;   /* deep orange */
  --line:      rgba(28, 23, 20, 0.14);
  --paper:     #FBF6EC;

  --display: "Montserrat", system-ui, sans-serif;
  --body:    "Montserrat", system-ui, sans-serif;
  --mono:    "Montserrat", system-ui, sans-serif;

  --maxw: 1280px;
  --pad: clamp(1.25rem, 5vw, 5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--orange); color: var(--paper); }

.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: 0.04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- shared ---------- */
.section-label {
  font-family: var(--mono);
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange-dk);
  display: flex; align-items: center; gap: 0.85em; margin-bottom: 1.6rem;
}
.section-label span {
  font-weight: 600; color: var(--ink);
  padding: 0.2em 0.55em; border: 1px solid var(--line); border-radius: 2em;
}
.hl { color: var(--orange); font-style: italic; }

h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.9rem, 4.4vw, 3.2rem); line-height: 1.08; letter-spacing: -0.02em;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 1.05em 1.8em; border-radius: 3em;
  transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease), box-shadow .4s var(--ease);
}
.btn--solid { background: var(--orange); color: var(--paper); box-shadow: 0 10px 30px -12px rgba(232,81,29,.7); }
.btn--solid:hover { background: var(--ink); transform: translateY(-3px); box-shadow: 0 16px 36px -14px rgba(28,23,20,.6); }
.btn--ghost { border: 1px solid rgba(247,240,228,.55); color: var(--paper); }
.btn--ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); transform: translateY(-3px); }

/* ============================================================
   HEADER  (dark text — hero is now light)
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem var(--pad);
  transition: background .5s var(--ease), padding .5s var(--ease), box-shadow .5s var(--ease);
}
.site-header.scrolled {
  background: rgba(247,240,228,.85);
  backdrop-filter: blur(14px) saturate(1.4); -webkit-backdrop-filter: blur(14px) saturate(1.4);
  padding: 0.85rem var(--pad); box-shadow: 0 1px 0 var(--line);
}
.brand { display: flex; align-items: center; gap: 0.7em; color: var(--paper); transition: color .5s var(--ease); }
.scrolled .brand, .menu-open .brand { color: var(--ink); }
.brand__mark {
  font-family: var(--mono); font-weight: 600; font-size: 0.8rem;
  width: 2.5em; height: 2.5em; display: grid; place-items: center;
  background: var(--orange); color: var(--paper); border-radius: 50%;
}
.brand__name { font-family: var(--display); font-size: 1.25rem; font-weight: 600; }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2.2rem); }
.nav a {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--paper); position: relative; transition: color .4s var(--ease);
}
.scrolled .nav a { color: var(--ink); }
.nav a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -0.5em; height: 1px; width: 0;
  background: var(--orange); transition: width .4s var(--ease);
}
.nav a:not(.nav__cta):hover::after { width: 100%; }
.nav a:not(.nav__cta):hover { color: var(--orange-br); }
.scrolled .nav a:not(.nav__cta):hover { color: var(--orange); }
.nav__cta {
  background: var(--orange); color: var(--paper) !important;
  padding: 0.7em 1.3em; border-radius: 3em; transition: background .4s var(--ease), transform .4s var(--ease);
}
.nav__cta:hover { background: var(--paper); color: var(--ink) !important; transform: translateY(-2px); }
.scrolled .nav__cta:hover { background: var(--ink); color: var(--paper) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; z-index: 110; }
.nav-toggle span { width: 26px; height: 2px; background: var(--paper); transition: .4s var(--ease); }
.scrolled .nav-toggle span, .menu-open .nav-toggle span { background: var(--ink); }

/* ============================================================
   HERO  (cinematic full-bleed poster)
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(5rem, 12vh, 8rem) var(--pad) clamp(5rem, 11vh, 8rem);
  overflow: hidden; background: var(--ink);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: 64% 30%;
  transform: scale(1.06); animation: heroZoom 16s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
/* dark panel on the left holds the text — robust at any width; face stays in the lit right half */
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(14,9,5,.96) 0%, rgba(14,9,5,.9) 28%, rgba(14,9,5,.5) 50%, rgba(14,9,5,.12) 72%, rgba(14,9,5,.03) 100%),
    linear-gradient(0deg, rgba(14,9,5,.82) 0%, rgba(14,9,5,.15) 38%, transparent 64%),
    radial-gradient(120% 90% at 95% 8%, rgba(232,81,29,.2), transparent 55%);
}

.hero__inner { position: relative; z-index: 2; max-width: var(--maxw); width: 100%; margin: 0 auto; }
.hero__eyebrow {
  font-family: var(--mono); font-size: clamp(0.62rem, 1.4vw, 0.76rem); letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--paper); display: flex; align-items: center; gap: 0.7em; margin-bottom: 1.5rem;
}
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange-br); box-shadow: 0 0 0 0 rgba(255,106,43,.7); animation: pulse 2.4s infinite; flex: none; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(255,106,43,.6);} 70%{box-shadow:0 0 0 12px rgba(255,106,43,0);} 100%{box-shadow:0 0 0 0 rgba(255,106,43,0);} }

.hero__title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2.9rem, 7vw, 5.6rem); line-height: 0.98; letter-spacing: -0.03em;
  color: var(--paper); margin-bottom: 1.4rem; max-width: 12ch;
  text-shadow: 0 16px 50px rgba(0,0,0,.45);
}
.hero__title .line { display: block; }
.hero__title .accent { font-style: italic; color: var(--orange-br); font-weight: 600; }

.hero__role {
  font-family: var(--display); font-size: clamp(1.05rem, 1.9vw, 1.55rem); font-weight: 400;
  color: rgba(247,240,228,.94); max-width: 22ch; line-height: 1.4; margin-bottom: 2.2rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.6);
}
.hero__role em { color: var(--orange-br); font-style: italic; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* credentials strip */
.hero__strip {
  position: absolute; left: var(--pad); bottom: clamp(1.4rem, 3.5vh, 2.4rem); z-index: 2;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(247,240,228,.7);
}
.hero__strip b { color: var(--orange-br); font-weight: 600; }
.hero__strip .sep { color: rgba(247,240,228,.3); }

/* scroll cue */
.hero__scroll {
  position: absolute; right: var(--pad); bottom: clamp(4rem,9vh,7rem); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(247,240,228,.7);
}
.hero__scroll-line { width: 1px; height: 56px; background: linear-gradient(var(--orange-br), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content:""; position:absolute; top:-50%; left:0; width:100%; height:50%; background: var(--paper); animation: scrollDot 2s var(--ease) infinite; }
@keyframes scrollDot { 0%{top:-50%;} 100%{top:120%;} }

/* hero reveal stagger */
.hero .reveal { transition-delay: .1s; }
.hero__eyebrow.reveal { transition-delay: .2s; }
.hero__title .line:nth-child(1).reveal { transition-delay: .35s; }
.hero__title .line:nth-child(2).reveal { transition-delay: .5s; }
.hero__role.reveal { transition-delay: .68s; }
.hero__actions.reveal { transition-delay: .82s; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding: clamp(5rem, 12vh, 9rem) var(--pad); overflow: hidden; background: var(--ink); color: var(--paper); }
.about > .section-label, .about__grid, .stats { position: relative; z-index: 1; width: 100%; max-width: var(--maxw); margin-left: auto; margin-right: auto; }

/* single photo background — no panels; light text adapts to the dark image */
.about__bg { position: absolute; inset: 0; z-index: 0; }
.about__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 26%; }
.about__bg-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(16,10,5,.9) 0%, rgba(16,10,5,.64) 56%, rgba(16,10,5,.5) 100%),
    linear-gradient(0deg, rgba(16,10,5,.85) 0%, rgba(16,10,5,.22) 44%, rgba(16,10,5,.42) 100%);
}
.about .section-label { color: var(--orange-br); }
.about .section-label span { color: var(--paper); border-color: rgba(247,240,228,.28); }

.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.about__lead { position: sticky; top: 7rem; color: var(--paper); text-shadow: 0 2px 22px rgba(0,0,0,.45); }
.about__text p { color: rgba(247,240,228,.88); font-size: 1.06rem; margin-bottom: 1.1rem; max-width: 54ch; text-shadow: 0 1px 14px rgba(0,0,0,.4); }
.about__facts { margin-top: 2.2rem; border-top: 1px solid rgba(247,240,228,.22); }
.about__facts li {
  display: grid; grid-template-columns: 8rem 1fr; gap: 1rem; color: rgba(247,240,228,.9);
  padding: 1rem 0; border-bottom: 1px solid rgba(247,240,228,.18); font-size: 0.98rem;
}
.about__facts span { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--orange-br); padding-top: 0.25em; }

.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 3vw, 3rem);
  margin-top: clamp(2.2rem, 5vh, 3.5rem);
}
.stat { padding: 0; }
.stat__num { display: block; font-family: var(--display); font-weight: 700; font-size: clamp(2.6rem, 5.5vw, 4rem); line-height: 1; color: var(--orange-br); }
.stat__cap { display: block; margin-top: 0.6rem; font-size: 0.88rem; color: rgba(247,240,228,.72); max-width: 18ch; }

/* ============================================================
   PROJECTS
   ============================================================ */
.projects { background: var(--ink); color: var(--paper); padding: clamp(5rem, 12vh, 9rem) var(--pad); position: relative; }
.projects::before { content:""; position:absolute; inset:0; pointer-events:none; background: radial-gradient(80% 50% at 85% 0%, rgba(232,81,29,.18), transparent 60%); }
.projects__head, .feat-grid, .proj-list, .keyprojects, .proj-list__label { max-width: var(--maxw); margin-left: auto; margin-right: auto; position: relative; }
.projects__head { margin-bottom: clamp(2.5rem, 6vh, 4rem); }
.projects .section-label { color: var(--orange-br); }
.projects .section-label span { color: var(--paper); border-color: rgba(247,240,228,.25); }
.projects__head h2 { color: var(--paper); max-width: 20ch; }

/* text-only list */
.proj { padding: clamp(1.5rem, 3.5vh, 2.3rem) 0; border-top: 1px solid rgba(247,240,228,.16); transition: padding-left .5s var(--ease); }
.proj:first-of-type { border-top: 0; }
.proj:last-of-type { border-bottom: 1px solid rgba(247,240,228,.16); }
.proj:hover { padding-left: 1rem; }
.proj__meta { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(247,240,228,.55); margin-bottom: 0.7rem; }
.proj__meta span { color: var(--orange-br); }
.proj__title { font-family: var(--display); font-weight: 500; font-size: clamp(1.6rem, 3.2vw, 2.5rem); line-height: 1.06; margin-bottom: 0.4rem; transition: color .4s var(--ease); }
.proj:hover .proj__title { color: var(--orange-br); }
.proj__role { font-family: var(--display); font-style: italic; font-size: 1.12rem; color: var(--orange); margin-bottom: 0.9rem; }
.proj__desc { color: rgba(247,240,228,.72); max-width: 64ch; font-size: 0.96rem; }
.proj__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.1rem; }
.proj__tags li { font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.45em 0.9em; border: 1px solid rgba(247,240,228,.22); border-radius: 2em; color: rgba(247,240,228,.8); }

.keyprojects { margin-top: clamp(3rem, 7vh, 5rem); }
.keyprojects__label { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(247,240,228,.5); margin-bottom: 1.4rem; }
.keyprojects ul { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.keyprojects li {
  font-family: var(--body); font-weight: 500; font-size: 0.92rem;
  padding: 0.6em 1.1em; border: 1px solid rgba(247,240,228,.18); border-radius: 3em;
  display: inline-flex; gap: 0.6em; align-items: center;
  transition: border-color .4s var(--ease), background .4s var(--ease);
}
.keyprojects li:hover { border-color: var(--orange); background: rgba(232,81,29,.12); }
.keyprojects li span { font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.08em; color: var(--orange-br); }

/* ============================================================
   GALLERY  (фото и видео — uniform tiles)
   ============================================================ */
.gallery { background: var(--bg); padding: clamp(5rem, 12vh, 9rem) var(--pad); }
.gallery__head, .ev { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.gallery__head { margin-bottom: clamp(2.2rem, 5vh, 3.4rem); }
.gallery__head h2 { max-width: 18ch; }

.ev { margin-top: clamp(2.6rem, 6vh, 4rem); }
.ev__head { margin-bottom: 1.2rem; }
.ev__meta { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.5rem; }
.ev__meta span { color: var(--orange-dk); }
.ev__title { font-family: var(--display); font-weight: 500; font-size: clamp(1.45rem, 3vw, 2.3rem); line-height: 1.06; }

/* horizontal scrollable filmstrip per event */
.ev-strip {
  display: flex; gap: clamp(0.6rem, 1.2vw, 1rem);
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x proximity; scroll-padding-left: 2px;
  padding-bottom: 1.1rem; cursor: grab; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: rgba(28,23,20,.3) transparent;
}
.ev-strip.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.ev-strip::-webkit-scrollbar { height: 6px; }
.ev-strip::-webkit-scrollbar-track { background: rgba(28,23,20,.06); border-radius: 3em; }
.ev-strip::-webkit-scrollbar-thumb { background: rgba(28,23,20,.24); border-radius: 3em; }
.ev-strip:hover::-webkit-scrollbar-thumb { background: var(--orange); }

.gtile {
  position: relative; flex: 0 0 auto;
  height: clamp(210px, 30vw, 300px); aspect-ratio: 4 / 5;
  overflow: hidden; border: 0; padding: 0; border-radius: 10px;
  cursor: pointer; background: var(--bg-deep); scroll-snap-align: start;
  -webkit-user-select: none; user-select: none;
}
.gtile img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; transition: transform .6s var(--ease); }
.gtile:hover img { transform: scale(1.06); }
.gtile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(20,12,6,.4)); opacity: 0; transition: opacity .4s var(--ease); }
.gtile:hover::after { opacity: 1; }
.gtile:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

.gtile--video::after { opacity: 1; background: linear-gradient(180deg, rgba(20,12,6,.15), rgba(20,12,6,.5)); }
.gtile__cue {
  position: absolute; z-index: 2; left: 0.7rem; bottom: 0.7rem;
  font-family: var(--mono); font-size: 0.56rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--paper); background: rgba(20,12,6,.45); padding: 0.42em 0.75em; border-radius: 2em; border: 1px solid rgba(247,240,228,.25);
}
.gtile__play {
  position: absolute; z-index: 2; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 3.1rem; height: 3.1rem; border-radius: 50%; background: var(--orange);
  display: grid; place-items: center; box-shadow: 0 10px 26px -10px rgba(0,0,0,.6); transition: transform .3s var(--ease);
}
.gtile--video:hover .gtile__play { transform: translate(-50%, -50%) scale(1.1); }
.gtile__play::before { content: ""; width: 0; height: 0; margin-left: 4px; border-left: 13px solid var(--paper); border-top: 8px solid transparent; border-bottom: 8px solid transparent; }

@media (max-width: 540px) {
  .gtile { height: clamp(180px, 52vw, 240px); }
}

/* ============================================================
   EXPERTISE  (readable sans headings)
   ============================================================ */
.expertise { background: var(--bg-deep); min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding: clamp(3.5rem, 8vh, 5.5rem) var(--pad); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.expertise__head, .exp-grid, .awards { max-width: var(--maxw); margin: 0 auto; width: 100%; }
.expertise__head { margin-bottom: clamp(1.6rem, 3.5vh, 2.4rem); }
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.exp { background: var(--paper); padding: clamp(1.3rem, 2.2vw, 1.9rem); transition: background .4s var(--ease); }
.exp:hover { background: var(--orange); color: var(--paper); }
.exp__no { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.12em; color: var(--orange); transition: color .4s var(--ease); }
.exp:hover .exp__no { color: var(--paper); }
.exp h3 {
  font-family: var(--body); font-weight: 600; font-size: 1.15rem; letter-spacing: -0.01em;
  margin: 0.6rem 0 0.4rem; line-height: 1.2;
}
.exp p { font-size: 0.9rem; line-height: 1.5; color: var(--ink-soft); transition: color .4s var(--ease); }
.exp:hover p { color: rgba(247,240,228,.92); }

.awards { margin-top: clamp(1.8rem, 4vh, 3rem); }
.awards__label { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange-dk); margin-bottom: 1rem; }
.awards ul { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: clamp(2rem, 4vw, 4rem); }
.awards li { font-family: var(--display); font-weight: 500; font-size: clamp(0.95rem, 1.3vw, 1.15rem); padding: 0.7rem 0; border-bottom: 1px solid var(--line); display: flex; align-items: baseline; gap: 0.8rem; }
.awards li::before { content: "✦"; color: var(--orange); font-size: 0.8em; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--ink); color: var(--paper); min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding: clamp(3.5rem, 9vh, 6rem) var(--pad); position: relative; overflow: hidden; }
.contact::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(70% 60% at 50% 120%, rgba(232,81,29,.4), transparent 60%); }
.contact__inner { max-width: var(--maxw); margin: 0 auto; position: relative; }
.contact .section-label { color: var(--orange-br); }
.contact .section-label span { color: var(--paper); border-color: rgba(247,240,228,.25); }
.contact__title { color: var(--paper); font-size: clamp(2rem, 6vw, 4.6rem); margin-bottom: clamp(2.5rem, 6vh, 4rem); }
.contact__links { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(247,240,228,.16); }
.clink { display: flex; flex-direction: column; gap: 0.4rem; padding: 1.8rem 0.5rem 1.8rem 0; border-bottom: 1px solid rgba(247,240,228,.16); transition: padding-left .4s var(--ease), color .4s var(--ease); }
.clink:nth-child(odd) { border-right: 1px solid rgba(247,240,228,.16); padding-right: 2rem; }
.clink:nth-child(even) { padding-left: 2rem; }
.clink:hover { padding-left: 3rem; color: var(--orange-br); }
.clink:nth-child(even):hover { padding-left: 3rem; }
.clink__label { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(247,240,228,.5); }
.clink__value { font-family: var(--display); font-size: clamp(1.4rem, 3vw, 2.2rem); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  padding: 1.6rem var(--pad);
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft);
  background: var(--ink); border-top: 1px solid rgba(247,240,228,.12);
}
.site-footer a:hover { color: var(--orange-br); }
.site-footer__mid { color: rgba(247,240,228,.4); }

/* ============================================================
   LIGHTBOX  (images + video)
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 1000; background: rgba(16,11,6,.95); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__fig { max-width: 92vw; max-height: 86vh; display: flex; align-items: center; justify-content: center; }
.lightbox__fig img, .lightbox__fig video {
  max-width: 92vw; max-height: 86vh; object-fit: contain; border-radius: 4px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.7); animation: lbIn .5s var(--ease);
}
.lightbox__fig video { display: none; background: #000; }
.lightbox.is-video .lightbox__fig img { display: none; }
.lightbox.is-video .lightbox__fig video { display: block; }
.lightbox.is-video .lightbox__nav, .lightbox.is-video .lightbox__count { display: none; }
@keyframes lbIn { from { opacity: 0; transform: scale(.97); } to { opacity: 1; transform: scale(1); } }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(247,240,228,.1); color: var(--paper);
  border: 1px solid rgba(247,240,228,.25); cursor: pointer; width: 3rem; height: 3rem; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.6rem; line-height: 1;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.lightbox__close:hover { background: var(--orange); transform: scale(1.08); }
.lightbox__close { top: 1.4rem; right: 1.4rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav:hover { background: var(--orange); transform: translateY(-50%) scale(1.08); }
.lightbox__prev { left: 1.4rem; }
.lightbox__next { right: 1.4rem; }
.lightbox__count {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; color: rgba(247,240,228,.7);
}

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .about__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .about__lead { position: static; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .feat-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__bg img { object-position: 62% 30%; }
  .hero__scroll { display: none; }
}

@media (max-width: 760px) {
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.6rem;
    background: var(--paper); padding: var(--pad);
    transform: translateX(100%); transition: transform .5s var(--ease);
    box-shadow: -20px 0 60px -30px rgba(0,0,0,.5);
  }
  .menu-open .nav { transform: translateX(0); }
  .nav a { font-size: 0.9rem; }
  .nav-toggle { display: flex; }
  .menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .contact__links { grid-template-columns: 1fr; }
  .clink, .clink:nth-child(odd), .clink:nth-child(even) { padding: 1.4rem 0; border-right: 0; }
  .clink:hover, .clink:nth-child(even):hover { padding-left: 1rem; }
  .about__facts li { grid-template-columns: 1fr; gap: 0.2rem; }
  .site-footer { justify-content: center; text-align: center; }
  /* mobile hero: photo on top, text below on dark — face stays visible */
  .hero {
    min-height: auto; justify-content: flex-start;
    padding: 0 0 2.6rem; background: var(--ink);
  }
  .hero__bg { position: relative; height: 52vh; z-index: 0; }
  .hero__bg img { object-position: 48% 56%; }
  .hero__veil {
    background: linear-gradient(0deg, var(--ink) 1%, rgba(20,12,6,.2) 26%, transparent 52%);
  }
  .hero__inner { padding: 1.4rem var(--pad) 0; }
  .hero__eyebrow { margin-bottom: 1.1rem; }
  .hero__title { font-size: clamp(3rem, 15vw, 4.6rem); margin-bottom: 1rem; text-shadow: none; }
  .hero__role { max-width: none; margin-bottom: 1.6rem; text-shadow: none; }
  .hero__strip {
    position: static; margin: 1.6rem 0 0; padding: 0 var(--pad);
    font-size: 0.58rem; gap: 0.6rem; row-gap: 0.3rem;
  }
  .hero__scroll { display: none; }
}

@media (max-width: 460px) {
  .stats { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
