/* ============================================================
   home/css/home.css — CSS matching EXACT class names in home/index.php
   All vibrant colors: orange, blue, green
   ============================================================ */

/* ══════════════════════════════════════════════════════════
   HERO — full-screen, background image working in ALL browsers
   ══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 1200px;
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  background-color: #0a0d0f; /* solid fallback */
}

/* Background image — absolute positioned, full coverage */
.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=1920&q=90');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
  -webkit-transition: -webkit-transform 7s ease-out;
  transition: transform 7s ease-out;
  /* Simple brightness — NO mix-blend-mode, NO grain filter */
  -webkit-filter: brightness(0.62) contrast(1.05);
  filter: brightness(0.62) contrast(1.05);
  z-index: 0;
}
.hero.loaded .hero-bg {
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* Gradient overlay — sits above background, below content */
.hero-vignette {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10,13,15,.4)  0%,
    rgba(10,13,15,.05) 22%,
    rgba(10,13,15,.25) 55%,
    rgba(10,13,15,.88) 82%,
    rgba(10,13,15,.98) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Film strip perforations — top bar decorative */
.film-strip {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 26px; z-index: 2;
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  gap: 4px; padding: 0 10px;
  pointer-events: none; overflow: hidden;
}
.film-strip span {
  -webkit-flex-shrink: 0; flex-shrink: 0;
  width: 15px; height: 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 2px;
  background: rgba(10,13,15,.55);
}

/* Hero content — above everything */
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1000px;
  padding: 0 60px 88px;
}

/* Meta line (Romania · Muntii...) */
.hero-meta {
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  gap: 12px; -webkit-flex-wrap: wrap; flex-wrap: wrap;
  font-size: .6rem; font-weight: 400;
  letter-spacing: .28em; text-transform: uppercase;
  color: rgba(226,232,240,.55);
  margin-bottom: 20px;
  -webkit-animation: hFadeUp .8s .15s both;
  animation: hFadeUp .8s .15s both;
}
.hero-meta-line {
  display: block; width: 30px; height: 1.5px;
  background: var(--orange); opacity: .85;
  -webkit-flex-shrink: 0; flex-shrink: 0;
}
.hero-meta-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--orange); opacity: .85;
  -webkit-flex-shrink: 0; flex-shrink: 0;
}

/* Main title */
.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  line-height: .96; letter-spacing: -.02em;
  margin-bottom: 22px;
}
.ht-first {
  display: block;
  font-size: clamp(3rem, 6.5vw, 8rem);
  color: #ffffff;
  -webkit-animation: hFadeUp .9s .3s both;
  animation: hFadeUp .9s .3s both;
}
.ht-second {
  display: block;
  font-size: clamp(2.5rem, 5.5vw, 7rem);
  color: #e8edf2;
  -webkit-animation: hFadeUp .9s .45s both;
  animation: hFadeUp .9s .45s both;
}
.ht-second em {
  font-style: italic;
  color: var(--orange-l);
}

/* Subtitle (Montanian — Fotograf) */
.hero-role {
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  gap: 14px; -webkit-flex-wrap: wrap; flex-wrap: wrap;
  font-size: .78rem; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(226,232,240,.65);
  margin-bottom: 42px;
  -webkit-animation: hFadeUp .9s .6s both;
  animation: hFadeUp .9s .6s both;
}
.hr-item { display: inline-block; }
.hr-sep  { color: var(--orange); opacity: .6; font-weight: 300; }

/* CTA buttons */
.hero-actions {
  display: -webkit-flex; display: flex;
  gap: 14px; -webkit-flex-wrap: wrap; flex-wrap: wrap;
  -webkit-animation: hFadeUp .9s .75s both;
  animation: hFadeUp .9s .75s both;
}
.hero-actions .btn { min-width: 150px; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  right: 48px; bottom: 50px; z-index: 3;
  display: -webkit-flex; display: flex;
  -webkit-flex-direction: column; flex-direction: column;
  -webkit-align-items: center; align-items: center;
  gap: 8px;
  -webkit-animation: hFadeIn 1s 1.1s both;
  animation: hFadeIn 1s 1.1s both;
}
.hs-line {
  width: 1.5px; height: 50px;
  background: linear-gradient(to bottom, transparent, var(--orange));
  -webkit-animation: hsPulse 2s ease-in-out infinite;
  animation: hsPulse 2s ease-in-out infinite;
}
@-webkit-keyframes hsPulse { 0%,100%{ opacity:.3; } 50%{ opacity:1; } }
@keyframes hsPulse { 0%,100%{ opacity:.3; } 50%{ opacity:1; } }
.hs-txt {
  font-size: .5rem; letter-spacing: .28em;
  text-transform: uppercase; color: rgba(226,232,240,.45);
  writing-mode: vertical-rl;
}

/* Counter bottom-left */
.hero-counter {
  position: absolute;
  left: 48px; bottom: 50px; z-index: 3;
  display: -webkit-flex; display: flex;
  -webkit-flex-direction: column; flex-direction: column;
  gap: 3px;
  -webkit-animation: hFadeIn 1s 1.1s both;
  animation: hFadeIn 1s 1.1s both;
}
.hc-label { font-size: .48rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(226,232,240,.4); }
.hc-frame { font-family: var(--serif); font-size: 2.2rem; font-weight: 300; color: var(--orange); line-height: 1; }

/* Keyframes */
@-webkit-keyframes hFadeUp { from{ opacity:0; -webkit-transform:translateY(26px); } to{ opacity:1; -webkit-transform:none; } }
@keyframes hFadeUp { from{ opacity:0; transform:translateY(26px); } to{ opacity:1; transform:none; } }
@-webkit-keyframes hFadeIn { from{ opacity:0; } to{ opacity:1; } }
@keyframes hFadeIn { from{ opacity:0; } to{ opacity:1; } }

/* ══════════════════════════════════════════════════════════
   FILM REEL STRIP
   ══════════════════════════════════════════════════════════ */
.reel-section {
  background: #0a0d0f;
  overflow: hidden;
  border-top: 1px solid rgba(249,115,22,.1);
  border-bottom: 1px solid rgba(249,115,22,.1);
  padding: 0;
}
.reel-track {
  display: -webkit-flex; display: flex;
  gap: 3px;
  width: -webkit-max-content; width: max-content;
  padding: 18px 0;
  -webkit-animation: reelScroll 44s linear infinite;
  animation: reelScroll 44s linear infinite;
}
.reel-track:hover {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
@-webkit-keyframes reelScroll { from{ -webkit-transform:translateX(0); } to{ -webkit-transform:translateX(-50%); } }
@keyframes reelScroll { from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
.reel-item {
  -webkit-flex-shrink: 0; flex-shrink: 0;
  display: -webkit-flex; display: flex;
  -webkit-flex-direction: column; flex-direction: column;
  gap: 6px;
}
.ri-frame {
  width: 200px; height: 133px;
  overflow: hidden;
  border: 1px solid rgba(249,115,22,.14);
}
.ri-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  -webkit-filter: sepia(.18) contrast(1.05); filter: sepia(.18) contrast(1.05);
  -webkit-transition: -webkit-filter .4s, -webkit-transform .4s; transition: filter .4s, transform .4s;
}
.reel-item:hover .ri-frame img {
  -webkit-filter: sepia(0) contrast(1.08) saturate(1.1); filter: sepia(0) contrast(1.08) saturate(1.1);
  -webkit-transform: scale(1.05); transform: scale(1.05);
}
.ri-label { font-size: .53rem; letter-spacing: .15em; text-transform: uppercase; color: var(--tx-dim); text-align: center; }

/* ══════════════════════════════════════════════════════════
   IDENTITY CARDS
   ══════════════════════════════════════════════════════════ */
.identities-section { background: var(--bg-dark); }
.section-header { margin-bottom: 48px; }

.identity-split {
  display: -webkit-flex; display: flex;
  gap: 3px;
}
.id-block {
  position: relative;
  -webkit-flex: 1; flex: 1;
  min-height: 560px; /* height fallback for browsers without aspect-ratio */
  overflow: hidden; cursor: pointer;
}
@supports (aspect-ratio: 4/5) {
  .id-block { min-height: 0; aspect-ratio: 4/5; }
}
.idb-bg {
  position: absolute; top:0; left:0; width:100%; height:100%;
  background-size: cover; background-position: center;
  -webkit-filter: brightness(.52) contrast(1.1); filter: brightness(.52) contrast(1.1);
  -webkit-transition: -webkit-transform .65s ease, -webkit-filter .4s; transition: transform .65s ease, filter .4s;
}
.id-block:hover .idb-bg, .id-block:focus .idb-bg {
  -webkit-transform: scale(1.07); transform: scale(1.07);
  -webkit-filter: brightness(.62) contrast(1.1); filter: brightness(.62) contrast(1.1);
}
.idb-overlay {
  position: absolute; top:0; left:0; width:100%; height:100%;
  background: linear-gradient(to top, rgba(10,13,15,.97) 0%, rgba(10,13,15,.28) 52%, transparent 100%);
}
.id-munte-ov {
  background: linear-gradient(to top, rgba(10,13,15,.97) 0%, rgba(4,22,44,.35) 52%, transparent 100%);
}
.idb-content {
  position: absolute; bottom:0; left:0; right:0;
  padding: 32px 36px; z-index: 2;
}
.idb-num {
  position: absolute; top:22px; right:26px;
  font-family: var(--serif); font-size: 5rem; font-weight: 300;
  color: rgba(249,115,22,.08); line-height: 1;
  -webkit-transition: color .4s; transition: color .4s;
  pointer-events: none;
}
.id-block:hover .idb-num { color: rgba(249,115,22,.22); }
.idb-body p {
  font-size: .85rem; color: rgba(255,255,255,.78); line-height: 1.7;
  max-width: 360px;
  opacity: 0; -webkit-transform: translateY(10px); transform: translateY(10px);
  -webkit-transition: all .4s; transition: all .4s;
}
.id-block:hover .idb-body p, .id-block:focus .idb-body p {
  opacity: 1; -webkit-transform: none; transform: none;
}
.idb-title {
  font-family: var(--serif); font-size: clamp(1.8rem,3vw,2.8rem);
  font-weight: 300; line-height: 1.08; color: #fff; margin: 10px 0 14px;
}
.idb-title em { font-style: italic; color: var(--orange-l); }
.idb-link {
  display: -webkit-inline-flex; display: inline-flex;
  -webkit-align-items: center; align-items: center;
  gap: 8px; margin-top: 18px;
  font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--orange); border-bottom: 1.5px solid rgba(249,115,22,.35);
  padding-bottom: 3px; text-decoration: none;
  opacity: 0; -webkit-transform: translateY(10px); transform: translateY(10px);
  -webkit-transition: all .4s .06s; transition: all .4s .06s;
}
.id-block:hover .idb-link, .id-block:focus .idb-link {
  opacity: 1; -webkit-transform: none; transform: none;
}

/* ══════════════════════════════════════════════════════════
   GALLERY PREVIEW
   ══════════════════════════════════════════════════════════ */
.gallery-preview-section { background: var(--bg-card); }
.gp-header {
  display: -webkit-flex; display: flex;
  -webkit-align-items: flex-end; align-items: flex-end;
  -webkit-justify-content: space-between; justify-content: space-between;
  gap: 24px; -webkit-flex-wrap: wrap; flex-wrap: wrap;
  margin-bottom: 36px;
}
.gp-btn { -webkit-align-self: flex-end; align-self: flex-end; -webkit-flex-shrink: 0; flex-shrink: 0; }

.gp-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 3px;
}
.gp-item { overflow: hidden; position: relative; cursor: pointer; background: #0a0d0f; }
.gp-item.wide { grid-column: span 6; }
.gp-item.tall { grid-row: span 2; }
/* First item specific positioning */
.gp-item:nth-child(1) { grid-column: 1 / 7; grid-row: 1 / 3; }
.gp-item:nth-child(2) { grid-column: 7 / 10; }
.gp-item:nth-child(3) { grid-column: 10 / 13; }
.gp-item:nth-child(4) { grid-column: 7 / 10; }
.gp-item:nth-child(5) { grid-column: 10 / 13; }
.gp-item:nth-child(6) { grid-column: 1 / 7; }

.gp-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  -webkit-transition: -webkit-transform .55s ease, -webkit-filter .4s; transition: transform .55s ease, filter .4s;
  -webkit-filter: brightness(.8) contrast(1.05); filter: brightness(.8) contrast(1.05);
}
.gp-item:hover img, .gp-item:focus img {
  -webkit-transform: scale(1.08); transform: scale(1.08);
  -webkit-filter: brightness(.95) contrast(1.05) saturate(1.1); filter: brightness(.95) contrast(1.05) saturate(1.1);
}
.gpi-overlay {
  position: absolute; top:0; left:0; right:0; bottom:0;
  background: rgba(10,13,15,0);
  display: -webkit-flex; display: flex;
  -webkit-flex-direction: column; flex-direction: column;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
  gap: 10px;
  -webkit-transition: background .3s; transition: background .3s;
}
.gp-item:hover .gpi-overlay { background: rgba(10,13,15,.44); }
.gpi-title {
  font-family: var(--serif); font-style: italic; font-size: .92rem;
  color: #fff; opacity: 0; -webkit-transform: translateY(8px); transform: translateY(8px);
  -webkit-transition: all .3s; transition: all .3s;
}
.gpi-icon {
  font-size: 2rem; color: var(--orange-l);
  opacity: 0; -webkit-transform: scale(.6); transform: scale(.6);
  -webkit-transition: all .3s .05s; transition: all .3s .05s;
}
.gp-item:hover .gpi-title, .gp-item:focus .gpi-title { opacity:1; -webkit-transform:none; transform:none; }
.gp-item:hover .gpi-icon,  .gp-item:focus .gpi-icon  { opacity:1; -webkit-transform:scale(1); transform:scale(1); }

/* ══════════════════════════════════════════════════════════
   CINEMATIC QUOTE
   ══════════════════════════════════════════════════════════ */
.cinequote-section {
  position: relative; padding: 108px 0;
  overflow: hidden; text-align: center;
}
.cq-bg {
  position: absolute; top:0; left:0; width:100%; height:100%;
  background: url('https://images.unsplash.com/photo-1501854140801-50d01698950b?w=1400&q=70') center/cover;
  -webkit-filter: brightness(.12) contrast(1.1); filter: brightness(.12) contrast(1.1);
}
.cq-inner {
  position: relative; z-index: 2;
  display: -webkit-flex; display: flex;
  -webkit-flex-direction: column; flex-direction: column;
  -webkit-align-items: center; align-items: center;
  gap: 22px;
}
.cq-rule {
  width: 1.5px; height: 52px;
  background: linear-gradient(to bottom, transparent, var(--orange), transparent);
  opacity: .8;
}
.cq-text {
  font-family: var(--serif); font-size: clamp(1.4rem, 2.8vw, 2.6rem);
  font-weight: 300; font-style: italic; line-height: 1.52;
  color: #e8edf2; max-width: 860px;
}
.cq-auth {
  font-size: .64rem; font-weight: 500;
  letter-spacing: .32em; text-transform: uppercase; color: var(--orange);
}

/* ══════════════════════════════════════════════════════════
   ABOUT STRIP
   ══════════════════════════════════════════════════════════ */
.about-strip-section { background: var(--bg-dark); }
.as-grid {
  display: -webkit-flex; display: flex;
  gap: 68px; -webkit-align-items: center; align-items: center;
}
.as-img-col { -webkit-flex: 0 0 37%; flex: 0 0 37%; position: relative; }
.as-text-col { -webkit-flex: 1; flex: 1; min-width: 0; }
.as-img-wrap { position: relative; }
.as-img-wrap img {
  width: 100%; display: block;
  height: 520px; object-fit: cover; /* fixed height instead of aspect-ratio */
  border: 1.5px solid rgba(249,115,22,.18);
  -webkit-filter: brightness(.88) contrast(1.06); filter: brightness(.88) contrast(1.06);
}
@supports (aspect-ratio: 4/5) {
  .as-img-wrap img { height: auto; aspect-ratio: 4/5; }
}
.as-img-badge {
  position: absolute; bottom: -16px; right: -16px;
  width: 88px; height: 88px;
  background: var(--orange-d); border: 1.5px solid var(--orange);
  display: -webkit-flex; display: flex;
  -webkit-flex-direction: column; flex-direction: column;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
}
.aib-num { font-family: var(--serif); font-size: 2rem; font-weight: 300; color: var(--orange-l); line-height: 1; }
.aib-lbl { font-size: .48rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(251,146,60,.7); }
.as-tags { display: -webkit-flex; display: flex; -webkit-flex-wrap: wrap; flex-wrap: wrap; gap: 8px; margin-top: 22px; }

/* ══════════════════════════════════════════════════════════
   MOUNTAIN CTA
   ══════════════════════════════════════════════════════════ */
.masive-cta-section { position: relative; padding: 96px 0; overflow: hidden; }
.mc-bg {
  position: absolute; top:0; left:0; width:100%; height:100%;
  background: url('https://images.unsplash.com/photo-1486870591958-9b9d0d1dda99?w=1600&q=80') center/cover;
  -webkit-filter: brightness(.15) contrast(1.1) saturate(.5); filter: brightness(.15) contrast(1.1) saturate(.5);
}
.mc-bg::after {
  content: ''; position: absolute; top:0; left:0; width:100%; height:100%;
  background: linear-gradient(110deg, rgba(10,13,15,.95) 0%, rgba(10,13,15,.4) 65%, transparent 100%);
}
.mc-inner {
  position: relative; z-index: 2;
  display: -webkit-flex; display: flex;
  -webkit-flex-wrap: wrap; flex-wrap: wrap;
  gap: 60px; -webkit-align-items: center; align-items: center;
}
.mc-left { -webkit-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; }
.mc-stats {
  -webkit-flex: 1; flex: 1; min-width: 260px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px;
}
.mc-badges { display: -webkit-flex; display: flex; -webkit-flex-wrap: wrap; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.mc-badge {
  background: rgba(249,115,22,.12); border: 1px solid rgba(249,115,22,.3);
  color: var(--orange-l); padding: 7px 18px; border-radius: 100px;
  font-size: .72rem; font-weight: 400; letter-spacing: .06em; cursor: default;
  -webkit-transition: background .25s; transition: background .25s;
}
.mc-badge:hover { background: rgba(249,115,22,.22); }
.mcs-item {
  background: rgba(10,13,15,.55); border: 1.5px solid rgba(249,115,22,.12);
  padding: 28px 22px; text-align: center;
  -webkit-transition: border-color .25s; transition: border-color .25s;
}
.mcs-item:hover { border-color: rgba(249,115,22,.38); }
.mcs-n { font-family: var(--serif); font-size: 2.8rem; font-weight: 300; color: var(--orange); display: block; line-height: 1; margin-bottom: 8px; }
.mcs-l { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--tx-dim); }

/* ══════════════════════════════════════════════════════════
   CONTACT CTA
   ══════════════════════════════════════════════════════════ */
.contact-cta-section { background: var(--bg-dark); }
.cct-inner {
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: space-between; justify-content: space-between;
  gap: 36px; -webkit-flex-wrap: wrap; flex-wrap: wrap;
  padding: 50px 56px;
  border: 1.5px solid rgba(249,115,22,.18);
  background: linear-gradient(135deg, rgba(249,115,22,.04), transparent);
}
.cct-social {
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  gap: 12px; -webkit-flex-wrap: wrap; flex-wrap: wrap;
}
.cct-soc {
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  gap: 8px; padding: 11px 18px;
  background: rgba(255,255,255,.05); border: 1.5px solid rgba(255,255,255,.12);
  color: var(--tx-mid); font-size: .76rem; text-decoration: none;
  -webkit-transition: all var(--t); transition: all var(--t);
  min-height: 44px; border-radius: var(--r);
}
.cct-soc:hover { border-color: var(--orange); color: var(--orange-l); -webkit-transform: translateY(-2px); transform: translateY(-2px); }
.css-ico { font-size: 1.1rem; }
.css-lbl { letter-spacing: .05em; }

/* ══════════════════════════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════════════════════════ */
#lb {
  position: fixed; top:0; left:0; right:0; bottom:0; z-index: 800;
  background: rgba(10,13,15,.97);
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
  opacity: 0; pointer-events: none;
  -webkit-transition: opacity .3s; transition: opacity .3s;
}
#lb.open { opacity: 1; pointer-events: all; }
#lbClose {
  position: absolute; top: 20px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(249,115,22,.12); border: 1.5px solid rgba(249,115,22,.3);
  color: var(--orange-l); border-radius: var(--r);
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
  cursor: pointer; -webkit-transition: background .2s; transition: background .2s;
}
#lbClose:hover { background: rgba(249,115,22,.28); }
#lbPrev, #lbNext {
  position: absolute; top: 50%;
  -webkit-transform: translateY(-50%); transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(249,115,22,.1); border: 1.5px solid rgba(249,115,22,.25);
  color: var(--orange-l); font-size: 1.5rem;
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
  cursor: pointer; -webkit-transition: all .25s; transition: all .25s;
}
#lbPrev { left: 16px; } #lbNext { right: 16px; }
#lbPrev:hover, #lbNext:hover {
  background: rgba(249,115,22,.28);
  -webkit-transform: translateY(-50%) scale(1.1); transform: translateY(-50%) scale(1.1);
}
.lb-wrap {
  display: -webkit-flex; display: flex;
  -webkit-flex-direction: column; flex-direction: column;
  -webkit-align-items: center; align-items: center;
  gap: 12px; max-width: 88vw;
}
.lb-wrap img { max-width: 88vw; max-height: 82vh; object-fit: contain; }
.lb-cap { font-family: var(--serif); font-style: italic; font-size: .88rem; color: var(--tx-dim); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1000px) {
  .hero-content { padding: 0 32px 72px; }
  .identity-split { -webkit-flex-wrap: wrap; flex-wrap: wrap; }
  .id-block { -webkit-flex: 0 0 100%; flex: 0 0 100%; min-height: 360px; }
  @supports (aspect-ratio: 16/9) { .id-block { min-height: 0; aspect-ratio: 16/9; } }
  .idb-body p, .idb-link { opacity: 1; -webkit-transform: none; transform: none; }
  /* Gallery grid simplified */
  .gp-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gp-item { grid-column: auto !important; grid-row: auto !important; }
  /* About */
  .as-grid { -webkit-flex-direction: column; flex-direction: column; gap: 52px; }
  .as-img-col { -webkit-flex: 0 0 auto; flex: 0 0 auto; width: 100%; max-width: 420px; margin: 0 auto; }
  .as-img-badge { right: 0; }
  /* Mountain */
  .mc-left { -webkit-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; }
  .mc-stats { -webkit-flex: 0 0 100%; flex: 0 0 100%; }
  /* Contact CTA */
  .cct-inner { -webkit-flex-direction: column; flex-direction: column; -webkit-align-items: flex-start; align-items: flex-start; padding: 32px 24px; }
  /* Hide decorative */
  .hero-scroll, .hero-counter { display: none; }
}
@media (max-width: 640px) {
  .hero { height: 100vh; /* svh not used — wider compat */ }
  .hero-content { padding: 0 22px 62px; }
  .ht-first  { font-size: clamp(2.3rem, 10vw, 3.6rem); }
  .ht-second { font-size: clamp(1.9rem, 8vw, 3rem); }
  .hero-role { font-size: .68rem; gap: 10px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { padding: 12px 20px; font-size: .72rem; }
  .film-strip { display: none; }
  .ri-frame { width: 158px; height: 106px; }
  .gp-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .cq-text { font-size: 1.2rem; }
  .mc-stats { grid-template-columns: 1fr 1fr; }
  .mcs-item { padding: 18px; }
  .mcs-n { font-size: 2.2rem; }
  .as-img-wrap img { height: 380px; }
}
@media (max-width: 420px) {
  .ht-first  { font-size: 2.1rem; }
  .ht-second { font-size: 1.8rem; }
  .hero-actions { -webkit-flex-direction: column; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
