/* ============================================================
   WolfStar Media — Design System 2026
   Palette: Deep Navy / Slate Blue / Ice Blue / Soft White
   Type: Syne (display) + Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --navy:       #0B1628;
  --navy-mid:   #112240;
  --slate:      #1E3A5F;
  --blue-accent:#3B82F6;
  --ice:        #A8C5E8;
  --mist:       #D6E8F7;
  --white:      #F0F6FF;
  --text-main:  #E8F1FB;
  --text-muted: #8AAEC8;
  --border:     rgba(168, 197, 232, 0.15);

  --font-display: 'Syne', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius: 4px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; font-weight: 700; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p  { color: var(--text-muted); max-width: 65ch; }
a  { color: inherit; text-decoration: none; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-accent);
  display: block;
  margin-bottom: 0.75rem;
}

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 6rem 0; }
.section--tight { padding: 4rem 0; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background var(--transition), backdrop-filter var(--transition);
}
.nav.scrolled {
  background: rgba(11, 22, 40, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav__logo img { height: 38px; }
.nav__links {
  display: flex; gap: 2.5rem; list-style: none;
  font-size: 0.875rem; font-weight: 500; letter-spacing: 0.04em;
}
.nav__links a { color: var(--text-muted); transition: color var(--transition); }
.nav__links a:hover { color: var(--white); }
.nav__links a.active { color: var(--white); }
.nav__cta {
  background: var(--blue-accent); color: #fff;
  padding: 0.55rem 1.4rem; border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.nav__cta:hover { background: #2563EB; transform: translateY(-1px); }

.nav__burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.hero__video-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero__video-wrap iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 100vw; height: 56.25vw;
  min-height: 100vh; min-width: 177.78vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(11,22,40,0.55) 0%, rgba(11,22,40,0.35) 50%, rgba(11,22,40,0.85) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  padding: 0 1.5rem;
}
.hero__content h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero__content p {
  font-size: 1.15rem; color: var(--mist); max-width: 520px; margin: 0 auto 2.25rem;
}
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--text-muted); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero__scroll::after {
  content: ''; display: block; width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--ice), transparent);
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  cursor: pointer; border: none; transition: all var(--transition);
  text-decoration: none;
}
.btn--primary { background: var(--blue-accent); color: #fff; }
.btn--primary:hover { background: #2563EB; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(59,130,246,0.35); }
.btn--outline { background: transparent; color: var(--white); border: 1.5px solid var(--border); }
.btn--outline:hover { border-color: var(--ice); background: rgba(168,197,232,0.07); }
.btn--ghost { background: transparent; color: var(--text-muted); padding: 0.6rem 0; }
.btn--ghost:hover { color: var(--white); }

/* ── STATS BAR ── */
.stats { background: var(--navy-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--border);
}
.stats__item {
  padding: 2.25rem 2rem; text-align: center;
  border-right: 1px solid var(--border);
}
.stats__item:last-child { border-right: none; }
.stats__num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--white); }
.stats__label { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.06em; margin-top: 0.2rem; }

/* ── SERVICES ── */
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px;
  margin-top: 3.5rem; background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--navy-mid); padding: 2.5rem 2rem;
  transition: background var(--transition);
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--blue-accent); transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { background: var(--slate); }
.service-card:hover::after { transform: scaleX(1); }
.service-card__icon { font-size: 1.75rem; margin-bottom: 1.25rem; }
.service-card__title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.service-card p { font-size: 0.9rem; }

/* ── WORK GRID ── */
.work__filters {
  display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.45rem 1.1rem; border-radius: 2px; font-size: 0.8rem;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; border: 1.5px solid var(--border); background: transparent;
  color: var(--text-muted); font-family: var(--font-body);
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--blue-accent); color: var(--white); background: rgba(59,130,246,0.12);
}

.work__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px;
  background: var(--border);
}
.work-item {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
  background: var(--navy-mid); cursor: pointer;
}
.work-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.work-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,22,40,0.95) 0%, rgba(11,22,40,0.2) 60%, transparent 100%);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: flex-end; padding: 1.25rem;
}
.work-item:hover img { transform: scale(1.05); }
.work-item:hover .work-item__overlay { opacity: 1; }
.work-item__info h4 { font-family: var(--font-display); font-size: 0.95rem; color: var(--white); }
.work-item__info span { font-size: 0.75rem; color: var(--ice); letter-spacing: 0.06em; text-transform: uppercase; }
.work-item__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(59,130,246,0.85); display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition), transform var(--transition);
}
.work-item:hover .work-item__play { opacity: 1; transform: translate(-50%,-50%) scale(1.05); }
.work-item__play svg { fill: white; width: 18px; height: 18px; margin-left: 3px; }

/* ── VIDEO MODAL ── */
.modal {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(7,14,26,0.96); align-items: center; justify-content: center;
}
.modal.open { display: flex; }
.modal__inner {
  position: relative; width: 90vw; max-width: 1000px;
}
.modal__close {
  position: absolute; top: -2.5rem; right: 0;
  background: none; border: none; color: var(--text-muted);
  font-size: 1.5rem; cursor: pointer; font-family: var(--font-display); font-weight: 700;
}
.modal__close:hover { color: var(--white); }
.modal__video { position: relative; padding-bottom: 56.25%; background: #000; }
.modal__video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ── PHOTO GRID ── */
.photo__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; background: var(--border); margin-top: 3rem;
}
.photo-item {
  aspect-ratio: 4/3; overflow: hidden; background: var(--navy-mid);
  cursor: pointer; position: relative;
}
.photo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.photo-item:hover img { transform: scale(1.05); }
.photo-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--navy-mid); color: var(--text-muted);
  font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase;
}
.photo-placeholder svg { width: 32px; height: 32px; opacity: 0.4; }

/* ── CLIENTS ── */
.clients { background: var(--navy-mid); }
.clients__grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0; margin-top: 3rem;
  border: 1px solid var(--border);
}
.client-item {
  padding: 1.75rem 2.5rem; border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  filter: brightness(0) invert(1); opacity: 0.35;
  transition: opacity var(--transition);
}
.client-item:hover { opacity: 0.75; }
.client-item img { height: 28px; max-width: 120px; object-fit: contain; }
.client-name {
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted);
}

/* ── ABOUT ── */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about__image { position: relative; }
.about__image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about__image-accent {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 60%; aspect-ratio: 1; background: var(--slate);
  z-index: -1;
}
.about__text p { margin-bottom: 1.25rem; }
.about__text p:last-of-type { margin-bottom: 2rem; }

/* ── CONTACT ── */
.contact__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; }
.contact__info h3 { color: var(--white); margin-bottom: 1.5rem; }
.contact__detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact__detail-icon {
  width: 40px; height: 40px; background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 1.1rem;
}
.contact__detail-text p { font-size: 0.875rem; margin: 0; }
.contact__detail-text strong { color: var(--white); font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; }
.contact__social { display: flex; gap: 0.75rem; margin-top: 2.5rem; }
.social-link {
  width: 40px; height: 40px; border: 1.5px solid var(--border); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  color: var(--text-muted); transition: all var(--transition);
}
.social-link:hover { border-color: var(--blue-accent); color: var(--white); background: rgba(59,130,246,0.1); }

/* ── FORM ── */
.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form__group { display: flex; flex-direction: column; gap: 0.45rem; }
.form__group label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ice); }
.form__group input,
.form__group select,
.form__group textarea {
  background: var(--navy-mid); border: 1.5px solid var(--border);
  color: var(--white); padding: 0.8rem 1rem; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
}
.form__group input:focus,
.form__group select,
.form__group textarea:focus { border-color: var(--blue-accent); }
.form__group textarea { resize: vertical; min-height: 130px; }
.form__group input::placeholder, .form__group textarea::placeholder { color: var(--text-muted); }
.form__captcha {
  display: flex; align-items: center; gap: 1rem;
  background: var(--navy-mid); border: 1.5px solid var(--border);
  padding: 0.75rem 1rem; border-radius: var(--radius);
}
.form__captcha-question { font-size: 0.9rem; color: var(--text-muted); flex: 1; }
.form__captcha-question strong { color: var(--white); }
.form__captcha input {
  width: 80px; text-align: center;
  background: var(--slate) !important;
  border: 1.5px solid var(--border) !important;
  padding: 0.5rem !important;
}
.form__status { font-size: 0.875rem; padding: 0.75rem 1rem; border-radius: var(--radius); display: none; }
.form__status.success { display: block; background: rgba(34,197,94,0.1); color: #86efac; border: 1px solid rgba(34,197,94,0.2); }
.form__status.error   { display: block; background: rgba(239,68,68,0.1);  color: #fca5a5; border: 1px solid rgba(239,68,68,0.2); }

/* ── FOOTER ── */
.footer { background: var(--navy-mid); border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer__brand img { height: 34px; margin-bottom: 1rem; }
.footer__brand p { font-size: 0.875rem; max-width: 28ch; }
.footer__col h4 { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 1.25rem; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer__col ul a { font-size: 0.875rem; color: var(--text-muted); transition: color var(--transition); }
.footer__col ul a:hover { color: var(--white); }
.footer__bottom { border-top: 1px solid var(--border); padding-top: 1.75rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer__bottom p { font-size: 0.8rem; color: var(--text-muted); margin: 0; max-width: none; }
.footer__legal { display: flex; gap: 0.3rem; font-size: 0.75rem; color: var(--text-muted); }
.footer__legal span { opacity: 0.4; }

/* ── PAGE HEADER ── */
.page-header {
  padding: 10rem 0 4rem; text-align: center;
  background: linear-gradient(to bottom, var(--navy-mid), var(--navy));
  border-bottom: 1px solid var(--border);
}
.page-header h1 { margin-bottom: 0.75rem; }
.page-header p { margin: 0 auto; font-size: 1.05rem; }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE NAV ── */
.nav__mobile {
  display: none; position: fixed; inset: 0; top: 0; z-index: 99;
  background: var(--navy); padding: 6rem 2rem 2rem;
  flex-direction: column; gap: 0;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  display: block; padding: 1.1rem 0; font-size: 1.4rem; font-family: var(--font-display);
  font-weight: 700; color: var(--white); border-bottom: 1px solid var(--border);
}
.nav__mobile a:last-child { border: none; margin-top: 1.5rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  /* Hide lang switcher from top nav on mobile — shown in mobile menu instead */
  .nav > div[style*="display:flex"][style*="gap:4px"],
  .nav > div[style*="gap:4px"] { display: none !important; }
  .services__grid { grid-template-columns: 1fr; }
  .work__grid { grid-template-columns: repeat(2, 1fr); }
  .photo__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .form__row { grid-template-columns: 1fr; }
  .hero__content h1 { font-size: 2.4rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .work__grid { grid-template-columns: 1fr; }
  .photo__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .clients__grid { flex-direction: column; }
  .container { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── HERO EYEBROW (smaller) ── */
.hero__content h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
.hero__content p  { font-size: 1rem; }
.hero__content .btn { padding: 0.65rem 1.4rem; font-size: 0.85rem; }

/* ── HERO FULL HEIGHT behind nav ── */
.hero { top: 0; margin-top: 0; }

/* ── BANNER PLACEHOLDER ── */
.banner-placeholder {
  width: 100%; height: 420px; position: relative; overflow: hidden;
  background: var(--slate);
}
.banner-placeholder img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.banner-placeholder__fallback {
  display: none;
  width: 100%; height: 100%;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 0.75rem;
  color: var(--text-muted); font-size: 0.82rem;
  letter-spacing: 0.04em; text-align: center;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--slate) 100%);
}
.banner-placeholder__fallback svg { opacity: 0.3; }
.banner-placeholder__fallback code { color: var(--ice); font-size: 0.88rem; }
.banner-placeholder__fallback small { opacity: 0.5; }

/* ── COMPACT PAGE HEADER ── */
.page-header--compact {
  padding: 7rem 0 2rem;
}
.page-header--compact h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 0; }

/* ── SLIM FILTER BAR ── */
.filter-bar {
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
}
.filter-bar .work__filters { margin: 0; gap: 0.35rem; }
.filter-bar .filter-btn { padding: 0.35rem 0.9rem; font-size: 0.75rem; }

/* ── GOOGLE REVIEWS ── */
.reviews-section { background: var(--navy-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.reviews-stars-summary { display: flex; align-items: center; gap: 1rem; justify-content: center; margin-top: 1rem; }
.reviews-stars-big { font-size: 1.4rem; color: #FBBF24; letter-spacing: 0.05em; }
.reviews-score { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--white); }
.reviews-score span { font-family: var(--font-body); font-size: 0.85rem; font-weight: 400; color: var(--text-muted); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: var(--border); border: 1px solid var(--border); }
.review-card { background: var(--navy); padding: 2rem; }
.review-card--featured { background: var(--navy-mid); }
.review-card__header { display: flex; align-items: flex-start; gap: 0.85rem; margin-bottom: 1rem; }
.review-card__avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--slate); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--white);
}
.review-card__name { font-weight: 600; font-size: 0.9rem; color: var(--white); }
.review-card__stars { color: #FBBF24; font-size: 0.85rem; margin-top: 0.15rem; }
.review-card__logo { margin-left: auto; opacity: 0.6; }
.review-card__text { font-size: 0.875rem; line-height: 1.65; color: var(--text-muted); margin-bottom: 1rem; }
.review-card__date { font-size: 0.75rem; color: var(--text-muted); opacity: 0.6; }

@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .banner-placeholder { height: 240px; }
}

/* ── LANGUAGE SWITCHER ── */
.nav__lang-wrap {
  display: flex; align-items: center; gap: 0.5rem;
}
.lang-switcher {
  display: flex; align-items: center; gap: 0.4rem;
}
.lang-btn {
  display: flex; align-items: center; gap: 0.45rem;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(168,197,232,0.22);
  color: var(--text-muted); font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 0.38rem 0.7rem; border-radius: 6px; cursor: pointer;
  transition: all var(--transition); line-height: 1;
}
.lang-btn:hover {
  color: var(--white);
  border-color: rgba(168,197,232,0.5);
  background: rgba(255,255,255,0.1);
}
.lang-btn--active {
  color: var(--white);
  border-color: rgba(168,197,232,0.45);
  background: rgba(255,255,255,0.1);
}
.lang-btn svg {
  width: 22px; height: 15px;
  border-radius: 3px; flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.25);
}

/* Mobile lang switcher */
.nav__mobile .lang-switcher {
  border-left: none; padding-left: 0; margin: 1.5rem 0 0;
  border-top: 1px solid var(--border); padding-top: 1.25rem;
  justify-content: flex-start; gap: 0.5rem;
}
.nav__mobile .lang-btn { font-size: 0.9rem; padding: 0.5rem 0.85rem; }
.nav__mobile .lang-btn svg { width: 26px; height: 18px; }

/* ── SERVICES BACKGROUND IMAGE ── */
.services-bg-section {
  position: relative;
  overflow: hidden;
}
/* The actual background image — sits fully behind heading + grid */
.services-bg-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/backgrounds/background-dark.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
/* Dark overlay on top of image, below content */
.services-bg-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(9, 18, 34, 0.78);
  z-index: 1;
}
/* All content sits above both pseudo-elements */
.services-bg-section .container {
  position: relative;
  z-index: 2;
}
.services-bg-section .service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(168, 197, 232, 0.14);
  backdrop-filter: blur(2px);
}
.services-bg-section .service-card:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: var(--blue-accent);
}
.services-bg-section .service-card::after {
  /* override the bottom accent line from base class */
  background: var(--blue-accent);
}

/* Service card — no icon, title on top */
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

/* ── HOMEPAGE WORK GRID THUMB (same as video page) ── */
.work-item__thumb {
  position: absolute;
  inset: 0;
}
.work-item__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.work-item:hover .work-item__thumb img { transform: scale(1.05); }
.work-item__thumb-placeholder {
  width: 100%; height: 100%;
  background: var(--navy-mid);
  display: flex; align-items: center; justify-content: center;
}
.work-item__thumb-placeholder::after {
  content: '';
  display: block;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  border-top-color: var(--blue-accent);
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── PHOTO GRID MORE ── */
.photo__grid--more {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
}
@media (max-width: 768px) {
  .photo__grid--more { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .photo__grid--more { grid-template-columns: 1fr; }
}

/* ── PHOTO LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5, 10, 20, 0);
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease;
  cursor: zoom-out;
}
.lightbox.is-open {
  display: flex;
  background: rgba(5, 10, 20, 0.96);
}
.lightbox.is-visible {
  background: rgba(5, 10, 20, 0.96);
}
.lightbox__img-wrap {
  position: relative;
  max-width: 92vw;
  max-height: 90vh;
  opacity: 0;
  transform: scale(0.93);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.lightbox.is-visible .lightbox__img-wrap {
  opacity: 1;
  transform: scale(1);
}
.lightbox__img-wrap img {
  display: block;
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 3px;
  cursor: default;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
}
.lightbox__close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 300;
  transition: color 0.2s;
  z-index: 10;
  padding: 0.25rem 0.5rem;
}
.lightbox__close:hover { color: #fff; }
.lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.2s;
  z-index: 10;
}
.lightbox__nav:hover { background: rgba(255,255,255,0.18); color: #fff; }
.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }
.lightbox__counter {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  font-family: var(--font-body);
}

/* Make photo-items show pointer cursor */
.photo-item { cursor: zoom-in; }

/* ── PHOTO TICKER ── */
.ticker-wrap {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ticker-track {
  display: flex;
  flex-wrap: nowrap;
  height: 300px;
  animation: ticker-scroll 40s linear infinite;
  will-change: transform;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  flex: 0 0 450px;          /* never grow or shrink — always 450px wide */
  width: 450px;
  height: 300px;
  overflow: hidden;
  margin-right: 3px;
  background: var(--slate);
  display: block;
  position: relative;
}
.ticker-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.ticker-item:hover img { transform: scale(1.04); }

/* Fade edges */
.ticker-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.ticker-fade--left {
  left: 0;
  background: linear-gradient(to right, var(--navy) 0%, transparent 100%);
}
.ticker-fade--right {
  right: 0;
  background: linear-gradient(to left, var(--navy) 0%, transparent 100%);
}

/* ── ABOUT PHOTO WITH FADE ── */
.about__photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--slate);   /* fallback if image missing */
}
.about__photo-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Horizontal fade: photo left → navy right, bleeds into text column */
.about__photo-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 0%,
    transparent 50%,
    var(--navy) 100%
  );
  pointer-events: none;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}
