/* N-trance Media — Cinematic Minimalism v8
   Consolidated from v6.7-GA4. No redundant overrides. */

/* ─── TOKENS ─────────────────────────────────────── */
:root {
  --bg:        #050505;
  --panel:     #0d0d0d;
  --panel-2:   #141414;
  --line:      rgba(255,255,255,.13);
  --text:      #f4f1ea;
  --muted:     #b7b1a7;
  --muted-2:   #817b72;
  --gold:      #f4b000;
  --gold-2:    #ffd24a;
  --danger:    #d63232;
  --shadow:    0 28px 80px rgba(0,0,0,.55);
  --radius:    18px;
  --max:       1180px;
}

/* ─── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html  { scroll-behavior: smooth; background: var(--bg); }
body  {
  margin: 0;
  background: radial-gradient(circle at 50% 0%, #181818 0%, #060606 42%, #020202 100%);
  color: var(--text);
  font-family: Inter, Montserrat, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
a   { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─── UTILITIES ───────────────────────────────────── */
.page-shell {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}
.section-dark { background: #050505; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 800;
  color: var(--gold);
  margin: 0 0 18px;
}
.center { text-align: center; }

/* ─── FOCUS VISIBLE (accessibility) ──────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ─── HEADER ──────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: 86px;
  display: grid;
  grid-template-columns: minmax(270px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 24px;
  padding-left:  max(24px, calc((100vw - var(--max)) / 2));
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(to bottom, rgba(0,0,0,.76), rgba(0,0,0,.20), transparent);
  transition: height .25s ease, background .25s ease, border .25s ease;
  backdrop-filter: blur(7px);
}
.site-header.scrolled {
  height: 72px;
  background: rgba(4,4,4,.88);
  border-bottom: 1px solid rgba(255,255,255,.09);
}

/* Brand / logo */
.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-width: 0;
  line-height: 0;
}
.brand-logo {
  display: block;
  width: clamp(230px, 18vw, 320px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.65));
}

/* Nav desktop */
.main-nav {
  display: flex;
  gap: 34px;
  align-items: center;
  justify-content: center;
  justify-self: center;
}
.main-nav a, .phone-link {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  font-weight: 800;
  color: #f3f0eb;
  opacity: .94;
}
.main-nav a:hover, .phone-link:hover { color: var(--gold); }

/* Header actions */
.header-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
}
.phone-link::before {
  content: "◉";
  color: var(--gold);
  margin-right: 7px;
}

/* Phone icon (mobile only — hidden on desktop) */
.phone-icon-link {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: #fff;
  flex-shrink: 0;
}
.phone-icon-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}
.phone-icon-link:hover {
  background: rgba(244,176,0,.15);
  border-color: var(--gold);
}
.phone-icon-link:hover svg { stroke: var(--gold); }

/* Hamburger */
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: 999px;
  padding: 10px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: .2s;
}

/* ─── HERO ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-picture {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: contrast(1.08) brightness(.74);
}
/* Left gradient + gold accent + bottom fade */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #030303 0%, rgba(3,3,3,.92) 24%, rgba(3,3,3,.54) 48%, rgba(3,3,3,.14) 74%, rgba(3,3,3,.78) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 70% 20%, rgba(244,176,0,.08), transparent 25%),
    linear-gradient(to top, rgba(0,0,0,.75), transparent 45%);
}
.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 86px;
  padding-bottom: 34px;
}
.hero .eyebrow { margin-bottom: 14px; }
.hero h1 {
  margin: 0 0 18px;
  max-width: 660px;
  font-size: clamp(2.8rem, 5.8vw, 5.8rem);
  line-height: .95;
  letter-spacing: -.045em;
  text-transform: uppercase;
  font-weight: 900;
}
.hero h1 span {
  color: var(--gold);
  letter-spacing: -.045em;
}
.hero-copy {
  max-width: 620px;
  color: #e5dfd5;
  font-size: 1rem;
  line-height: 1.45;
  margin: 0 0 24px;
}
.hero-copy strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  line-height: 1.35;
}

/* CTA row */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, border .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #d99400);
  color: #111;
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 12px 32px rgba(244,176,0,.18);
}
.btn-primary::before { content: "↗"; margin-right: 9px; }
.btn-ghost {
  background: rgba(0,0,0,.32);
  border-color: rgba(255,255,255,.45);
  color: #fff;
}
.btn-ghost::before { content: "▷"; margin-right: 9px; color: var(--gold); }
.btn-ghost.dark { background: #111; border-color: #333; }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 34px;
  width: 22px;
  height: 22px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateX(-50%) rotate(45deg);
  opacity: .75;
}

/* ─── SERVICES STRIP ──────────────────────────────── */
.services-strip {
  position: relative;
  background: linear-gradient(180deg, #101010, #070707);
  border-bottom: 1px solid var(--line);
}
.services-intro {
  padding: 46px 0 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 0;
}
.services-intro .eyebrow { margin-bottom: 6px; }
.services-intro h2 {
  margin: 0 0 18px;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.08;
  letter-spacing: -.03em;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.service-card {
  padding: 38px 32px 42px;
  min-height: 210px;
  border-left: 1px solid var(--line);
}
.service-card:last-child { border-right: 1px solid var(--line); }
.service-card h2 {
  margin: 18px 0 12px;
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.22;
}
.service-card p  { margin: 0; color: var(--muted); font-size: .92rem; }
.service-card a  { color: var(--gold); border-bottom: 1px solid rgba(244,176,0,.35); }

/* Line icons */
.line-icon { position: relative; display: block; width: 38px; height: 34px; color: var(--gold); }
.rings::before, .rings::after {
  content: "";
  position: absolute;
  width: 18px; height: 18px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  top: 10px;
}
.rings::before { left: 4px; }
.rings::after  { left: 16px; }
.person::before {
  content: "";
  position: absolute;
  left: 11px; top: 2px;
  width: 14px; height: 14px;
  border: 2px solid var(--gold);
  border-radius: 50%;
}
.person::after {
  content: "";
  position: absolute;
  left: 4px; top: 20px;
  width: 28px; height: 13px;
  border: 2px solid var(--gold);
  border-radius: 14px 14px 0 0;
}
.case::before {
  content: "";
  position: absolute;
  left: 2px; top: 10px;
  width: 32px; height: 20px;
  border: 2px solid var(--gold);
  border-radius: 2px;
}
.case::after {
  content: "";
  position: absolute;
  left: 13px; top: 4px;
  width: 10px; height: 8px;
  border: 2px solid var(--gold);
  border-bottom: 0;
}
.camera::before {
  content: "";
  position: absolute;
  left: 3px; top: 10px;
  width: 32px; height: 22px;
  border: 2px solid var(--gold);
  border-radius: 3px;
}
.camera::after {
  content: "";
  position: absolute;
  left: 14px; top: 16px;
  width: 10px; height: 10px;
  border: 2px solid var(--gold);
  border-radius: 50%;
}

/* ─── PORTFOLIO ───────────────────────────────────── */
.portfolio-section {
  padding: 88px 0 86px;
  background:
    radial-gradient(circle at 50% 0, rgba(255,255,255,.05), transparent 30%),
    #050505;
}
.section-heading h2 {
  max-width: 760px;
  margin: 0 auto 42px;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  line-height: 1.12;
  letter-spacing: -.025em;
  font-weight: 700;
  color: var(--muted);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.portfolio-card {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  min-height: 0;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 12px 46px rgba(0,0,0,.35);
  isolation: isolate;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.portfolio-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.75) contrast(1.06) brightness(.78);
  transition: transform .45s ease, filter .45s ease;
}
.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,.92), rgba(0,0,0,.18) 60%, rgba(0,0,0,.36));
  transition: .25s;
}
.portfolio-card:hover img {
  transform: scale(1.045);
  filter: saturate(.95) contrast(1.12) brightness(.92);
}
.portfolio-card:hover::after {
  background: linear-gradient(to top, rgba(0,0,0,.86), rgba(0,0,0,.08) 55%, rgba(0,0,0,.2));
}

/* Play button */
.play {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 999px;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
}
.play::before {
  content: "";
  position: absolute;
  left: 17px; top: 12px;
  width: 0; height: 0;
  border-top:    8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left:   12px solid #fff;
}

/* Card badge */
.card-badge {
  position: absolute;
  z-index: 4;
  top: 14px;
  left: 14px;
  padding: 3px 9px;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  background: rgba(0,0,0,.52);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 2px;
  backdrop-filter: blur(4px);
  line-height: 1.6;
}

/* Card text */
.card-text {
  position: absolute;
  z-index: 2;
  left: 18px; right: 18px; bottom: 18px;
}
.card-text h3 {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .86rem;
}
.card-text p { margin: 0; color: #d7d0c8; font-size: .88rem; }

/* Portfolio actions */
.portfolio-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
  margin-top: 28px;
}
.portfolio-actions .btn {
  white-space: normal;
  line-height: 1.25;
  padding: 14px 18px;
  min-height: auto;
  text-align: center;
}

/* ─── ABOUT ───────────────────────────────────────── */
.about-section {
  padding: 92px 0;
  background: linear-gradient(180deg, #090909, #050505);
  border-top:    1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 62px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  min-height: 520px;
  background: #090909;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 42% center;
  filter: contrast(1.06) brightness(.88);
}
.about-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 20%, rgba(0,0,0,.32)),
    radial-gradient(circle at 75% 20%, rgba(244,176,0,.12), transparent 25%);
}
.about-copy h2, .contact-panel h2 {
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: .98;
  letter-spacing: -.055em;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.about-copy p, .contact-panel p {
  color: var(--muted);
  font-size: 1rem;
  margin: 0 0 22px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  color: #d8d0c7;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--gold);
  font-weight: 900;
}
.check-list strong { color: #fff; }
.about-actions { margin-top: 28px; }

/* Partner panel (Alina) */
.partner-panel {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  margin-top: 70px;
  padding-top: 58px;
  border-top: 1px solid var(--line);
}
.partner-copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  line-height: 1;
  letter-spacing: -.05em;
  margin: 0 0 22px;
  text-transform: uppercase;
}
.partner-copy p {
  color: var(--muted);
  font-size: 1rem;
  margin: 0 0 24px;
}
.inline-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.partner-image-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #111;
  max-width: 520px;
  justify-self: end;
}
.partner-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) brightness(.86);
}
.partner-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.34), transparent 45%),
    radial-gradient(circle at 60% 22%, rgba(244,176,0,.08), transparent 28%);
}

/* ─── PROCESS ─────────────────────────────────────── */
.process-section {
  padding: 66px 0;
  background: #080808;
}
.process-header {
  margin-bottom: 38px;
}
.process-header .eyebrow { margin-bottom: 8px; }
.process-header h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.08;
  letter-spacing: -.03em;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.process-grid article {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  padding: 28px;
  min-height: 180px;
}
.step {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .18em;
  font-size: .78rem;
}
.process-grid h3 {
  margin: 20px 0 8px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .94rem;
}
.process-grid p { margin: 0; color: var(--muted); font-size: .92rem; }

/* ─── LOCAL SEO + FAQ ─────────────────────────────── */
.local-seo-section {
  padding: 74px 0;
  background: linear-gradient(180deg, #060606, #0a0a0a);
  border-top: 1px solid var(--line);
}
.local-seo-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: start;
}
.local-copy h2 {
  font-size: clamp(1.8rem, 3.4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -.05em;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.local-copy p {
  color: var(--muted);
  margin: 0 0 16px;
  font-size: 1rem;
}
.english-note {
  color: #fff !important;
  font-weight: 800;
  letter-spacing: .04em;
}
.faq-box {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  padding: 28px;
  box-shadow: 0 18px 55px rgba(0,0,0,.32);
}
.faq-box details {
  border-top: 1px solid rgba(255,255,255,.11);
  padding: 16px 0;
}
.faq-box details:first-of-type { border-top: 0; }
.faq-box summary {
  cursor: pointer;
  list-style: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: .82rem;
  color: #fff;
}
.faq-box summary::-webkit-details-marker { display: none; }
.faq-box summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
}
.faq-box details[open] summary::after { content: "–"; }
.faq-box p { margin: 10px 0 0; color: var(--muted); font-size: .94rem; }

/* ─── CONTACT ─────────────────────────────────────── */
.contact-section {
  padding: 72px 0;
  background: linear-gradient(135deg, #f1a900, #bd7800);
  color: #0a0a0a;
}
.contact-panel {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 30px;
  align-items: center;
}
.contact-panel .eyebrow { color: #2b1c00; }
.contact-panel h2     { color: #0a0a0a; margin-bottom: 12px; }
.contact-panel p      { color: #241700; max-width: 700px; }
.contact-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-items: center;
}

/* ─── FOOTER ──────────────────────────────────────── */
.site-footer {
  padding: 60px 0 0;
  border-top: 1px solid rgba(255,255,255,.12);
  background: #060606;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 44px;
}
.footer-grid h4 {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .78rem;
  color: #fff;
}
.footer-grid p   { margin: 0 0 8px; color: var(--muted); }
.footer-grid a   { color: var(--muted); }
.footer-grid a:hover { color: var(--gold); }
.footer-brand { margin-bottom: 22px; }
.footer-bottom {
  padding: 26px 0;
  margin-top: 44px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: .82rem;
  text-align: center;
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  color: #fff;
  font-size: 1.1rem;
  opacity: .88;
}
.back-to-top:hover { background: var(--gold); color: #111; }


/* ─── VIDEO MODAL (YouTube inline player) ────────── */
body.modal-open { overflow: hidden; }
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  padding: 26px;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(7px);
}
.video-modal.active { display: flex; }
.video-modal-inner {
  width: min(1180px, 96vw);
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 30px 90px rgba(0,0,0,.90);
}
.video-modal iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-modal-close {
  position: fixed;
  top: 20px;
  right: 26px;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.video-modal-close:hover {
  background: rgba(244,176,0,.18);
  border-color: var(--gold);
  color: var(--gold);
}
.youtube-fallback {
  color: var(--gold);
  font-weight: 900;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.youtube-fallback:hover { color: #fff; }

/* ─── RESPONSIVE: 1020px ──────────────────────────── */
@media (max-width: 1020px) {
  .main-nav { gap: 20px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .partner-panel { grid-template-columns: 1fr; gap: 36px; }
  .about-image-wrap { min-height: 0; }
  .about-image-wrap img { min-height: 0; }
  .partner-image-wrap { justify-self: start; max-width: 520px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-panel { grid-template-columns: 1fr; }
  .contact-actions { justify-content: flex-start; }
  .local-seo-grid { grid-template-columns: 1fr; }
  .local-copy h2 { font-size: 2.5rem; }
}

/* ─── RESPONSIVE: 760px (mobile) ─────────────────── */
@media (max-width: 760px) {
  .page-shell { width: min(100% - 32px, var(--max)); }

  /* Header mobile */
  .site-header {
    height: 66px;
    display: flex;
    padding: 0 16px;
    background: rgba(0,0,0,.85);
    border-bottom: 1px solid rgba(255,255,255,.09);
    gap: 12px;
  }
  .brand { flex: 1; min-width: 0; }
  .brand-logo { width: 185px; }

  /* Show phone icon, hide text phone */
  .phone-link    { display: none; }
  .phone-icon-link { display: flex; }

  /* Nav mobile */
  .main-nav {
    position: fixed;
    left: 16px; right: 16px;
    top: 72px;
    display: grid;
    gap: 0;
    background: rgba(9,9,9,.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 8px;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: .2s;
  }
  .main-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .main-nav a {
    padding: 16px;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .main-nav a:last-child { border-bottom: 0; }
  .menu-toggle { display: block; }
  .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Hero mobile — centrat vertical, nu aliniat jos */
  .hero {
    min-height: 700px;
    align-items: center;
  }
  .hero-picture img {
    object-position: center top;
    filter: contrast(1.08) brightness(.62);
  }
  .hero::before {
    background:
      linear-gradient(to bottom, rgba(0,0,0,.34), rgba(0,0,0,.64) 35%, #050505 93%),
      linear-gradient(90deg, rgba(0,0,0,.95), rgba(0,0,0,.3));
  }
  .hero-content {
    padding-top: 96px;
    padding-bottom: 58px;
  }
  .hero .eyebrow {
    margin-bottom: 12px;
    font-size: .66rem;
    letter-spacing: .18em;
  }
  .hero h1 {
    font-size: clamp(2.05rem, 10.8vw, 3.25rem);
    line-height: 1;
    margin-bottom: 16px;
    max-width: 410px;
  }
  .hero-copy {
    font-size: .92rem;
    line-height: 1.42;
    margin-bottom: 22px;
    max-width: 410px;
  }
  .cta-row {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 340px;
  }
  .btn { width: 100%; min-height: 50px; }
  .scroll-cue { display: none; }

  /* Services mobile */
  .service-grid { grid-template-columns: 1fr; }
  .service-card {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--line);
    padding: 26px 4px 30px;
    min-height: auto;
  }
  .service-card:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  /* Portfolio mobile */
  .portfolio-section { padding: 64px 0; }
  .section-heading { text-align: left; }
  .section-heading h2 { margin-left: 0; font-size: 1.5rem; }
  .portfolio-grid { grid-template-columns: 1fr; gap: 14px; }
  .portfolio-card { aspect-ratio: 16/9; min-height: 0; }
  .portfolio-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* About mobile */
  .about-section { padding: 64px 0; }
  .about-image-wrap img { min-height: 360px; object-position: 38% center; }
  .partner-panel { margin-top: 44px; padding-top: 40px; }
  .partner-copy h2,
  .about-copy h2,
  .contact-panel h2 { font-size: 2.25rem; }

  /* Process mobile */
  .process-section { padding: 54px 0; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: auto; }

  /* Local SEO mobile */
  .local-seo-section { padding: 56px 0; }
  .local-copy h2 { font-size: 2.1rem; }
  .faq-box { padding: 22px; }

  /* Contact mobile */
  .contact-section { padding: 54px 0; }
  .contact-panel { gap: 22px; }
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  /* Footer mobile */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .back-to-top { right: 14px; bottom: 14px; }

  .video-modal { padding: 16px; }
  .video-modal-inner { width: 100%; }
  .video-modal-close { top: 12px; right: 12px; width: 46px; height: 46px; font-size: 30px; }
  .youtube-fallback { font-size: .70rem; text-align: center; }

}

/* ─── RESPONSIVE: landscape / low-height ─────────── */
@media (orientation: landscape) and (max-height: 520px) {
  .hero { min-height: 520px; }
  .hero-content { padding-top: 78px; padding-bottom: 38px; }
  .hero h1 { font-size: 2.65rem; line-height: .98; margin-bottom: 12px; }
  .hero-copy { font-size: .86rem; line-height: 1.35; margin-bottom: 16px; }
  .services-strip .service-card { padding-top: 22px; padding-bottom: 22px; }
  .scroll-cue { display: none; }
}

/* ─── REDUCED MOTION ──────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* v9.3 — portfolio cards sunt linkuri native cu JS intercept pentru modal și fallback YouTube. */
.portfolio-card:visited {
  color: inherit;
}
