/* ============================================================
   WG Hair Studio — Main Stylesheet
   VenturasCO | www.venturasco.com
   ============================================================ */

/* ── GOOGLE FONTS ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ── CSS VARIABLES ────────────────────────────────────────── */
:root {
  --black:   #0a0a0a;
  --dark:    #111111;
  --gold:    #b8922a;
  --gold-lt: #d4a93a;
  --cream:   #f5f0e8;
  --white:   #ffffff;
  --mid:     #888888;
  --border:  rgba(184,146,42,0.25);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --nav-h: 90px;
  --max-w: 1100px;
  --ease:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── NAVIGATION ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 60px);
  background: transparent;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s;
}

.nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo span {
  color: var(--gold);
}

/* ── NAV LOGO IMAGE ─────────────────────────────────────────── */
.nav__logo-img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s, transform 0.2s;
}
.nav__logo:hover .nav__logo-img {
  opacity: 0.88;
  transform: scale(1.04);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}

.nav__links a:hover,
.nav__links a.active {
  opacity: 1;
  color: var(--gold);
}

.nav__book {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.nav__book:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-align: center;
}

.btn--gold {
  background: var(--gold);
  color: var(--black);
}

.btn--gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ── SECTION LABELS ───────────────────────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
}

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

/* ── GOLD DIVIDER ─────────────────────────────────────────── */
.gold-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 20px 0;
}

.gold-line--center {
  margin: 20px auto;
}

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 48px clamp(24px, 5vw, 60px);
  text-align: center;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--cream);
  margin-bottom: 12px;
}

.footer__logo span { color: var(--gold); }

.footer__links {
  display: flex;
  justify-content: center;
  gap: 28px;
  list-style: none;
  margin: 16px 0;
}

.footer__links a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.2s;
}

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

.footer__copy {
  font-size: 0.72rem;
  color: var(--mid);
  margin-top: 20px;
}

/* ── LAZY LOAD IMAGES ─────────────────────────────────────── */
img[data-src] { opacity: 0; transition: opacity 0.4s; }
img.loaded { opacity: 1; }

/* ── PLACEHOLDER IMAGES ───────────────────────────────────── */
.img-placeholder {
  background: linear-gradient(135deg, #1a1a1a 0%, #222 50%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.06);
}

/* ── MOBILE ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --nav-h: 80px; }

  .nav__links,
  .nav__book {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__logo-img {
    width: 58px;
    height: 58px;
  }

  /* Mobile menu open */
  .nav.open .nav__links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 40px;
  }

  .nav.open .nav__links a {
    font-size: 1.1rem;
    opacity: 1;
    letter-spacing: 0.2em;
  }

  .nav.open .nav__book {
    display: block;
    margin-top: 16px;
  }

  /* Lang toggle in mobile menu */
  .lang-toggle {
    margin-left: 0;
    margin-top: 12px;
    font-size: 0.85rem;
    padding: 10px 24px;
  }
}

/* iOS safe area */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .footer {
    padding-bottom: calc(48px + env(safe-area-inset-bottom));
  }
}


/* ── FOOTER v2 ──────────────────────────────────────────────── */
.footer { background: var(--dark); border-top: 1px solid var(--border); }
.footer__logo-wrap { text-align:center; padding:52px clamp(24px,5vw,64px) 36px; border-bottom:1px solid var(--border); }
.footer__logo-img { width:130px; height:130px; object-fit:contain; display:block; margin:0 auto 14px; }
.footer__tagline { font-family:var(--font-d); font-style:italic; font-size:1rem; color:var(--cream-fade); }
.footer__cols { display:grid; grid-template-columns:1fr 1fr; gap:40px; max-width:520px; margin:0 auto; padding:40px clamp(24px,5vw,64px); }
.footer__col h4 { font-size:0.65rem; letter-spacing:0.28em; text-transform:uppercase; color:var(--gold); margin-bottom:16px; }
.footer__col a,.footer__col p { font-size:0.85rem; color:var(--cream-dim); line-height:1.9; display:block; transition:color 0.2s; }
.footer__col a:hover { color:var(--gold); }
.footer__walkin { color:var(--gold); font-size:0.82rem; }
.footer__hours { margin-top:8px; }
.footer__phone { margin-top:8px; color:var(--gold) !important; }
.footer__bottom { border-top:1px solid var(--border-lt); padding:18px clamp(24px,5vw,64px); display:flex; align-items:center; justify-content:space-between; }
.footer__copy,.footer__credit { font-size:0.7rem; color:var(--mid); }
.footer__credit a { color:var(--gold); }
/* ── TESTIMONIALS GRID ───────────────────────────────────────── */
.testimonials {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(64px,8vw,100px) clamp(24px,5vw,64px);
}
.testimonials__inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.testimonials__inner .eyebrow { margin-bottom: 12px; }
.testimonials__inner .heading { margin-bottom: 48px; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  text-align: left;
}
.testimonial-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.3s;
}
.testimonial-card:hover { border-color: var(--gold); }
.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
}
.testimonial-card blockquote {
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.7;
  flex: 1;
}
.testimonial-card cite {
  font-size: 0.75rem;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.testimonials__note {
  font-size: 0.82rem;
  color: var(--mid);
  margin-top: 8px;
}
.testimonials__note a {
  color: var(--gold);
  transition: opacity 0.2s;
}
.testimonials__note a:hover { opacity: 0.8; }

@media(max-width: 768px) {
  .testimonials__grid { grid-template-columns: 1fr; }
}
@media(min-width: 769px) and (max-width: 1024px) {
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
}

/* ── FIND US / MAP ───────────────────────────────────────────── */
.find-us {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.find-us__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 520px;
}
.find-us__text {
  background: var(--dark);
  padding: clamp(52px,7vw,88px) clamp(32px,5vw,64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.find-us__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 8px;
}
.find-us__item { display: flex; flex-direction: column; gap: 4px; }
.find-us__label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.find-us__item p {
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.7;
}
.find-us__item a {
  font-size: 1.1rem;
  color: var(--cream);
  font-family: var(--font-d);
  font-weight: 300;
  transition: color 0.2s;
}
.find-us__item a:hover { color: var(--gold); }
.find-us__walkin {
  color: var(--gold) !important;
  font-size: 0.82rem !important;
  margin-top: 2px;
}
.find-us__map {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}
.find-us__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(20%) contrast(1.05);
  border: 0;
}

@media(max-width: 768px) {
  .find-us__inner {
    grid-template-columns: 1fr;
  }
  .find-us__map {
    min-height: 300px;
    position: relative;
  }
  .find-us__map iframe {
    position: relative;
    height: 300px;
  }
}

/* ── HERO MOBILE FIXES ───────────────────────────────────────── */
@media (max-width: 768px) {
  .hero__title {
    font-size: clamp(3rem, 14vw, 5rem) !important;
  }
  .hero__tagline {
    font-size: clamp(0.95rem, 3.5vw, 1.2rem) !important;
  }
  .hero__cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero__cta .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  .intro {
    padding: clamp(48px, 8vw, 80px) clamp(20px, 5vw, 40px) !important;
    gap: 36px !important;
  }
  .info-strip__inner {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .values__grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .story {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .book-cta__phone {
    font-size: 1.5rem !important;
  }
  .testimonials__grid {
    grid-template-columns: 1fr !important;
  }
  .find-us__inner {
    grid-template-columns: 1fr !important;
  }
  .find-us__map {
    min-height: 280px !important;
  }
  .social-cta__btns {
    flex-direction: column;
    align-items: center;
  }
  .social-cta__btns .btn {
    width: 100%;
    max-width: 280px;
  }
  .footer__cols {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .footer__bottom {
    flex-direction: column !important;
    gap: 6px !important;
    text-align: center !important;
  }
}

/* ── INTRO IMAGE FIX ─────────────────────────────────────────── */
.intro__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 0;
}
.intro__image {
  overflow: hidden;
  position: relative;
}
.intro__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── HOME SPLIT SECTION ──────────────────────────────────────── */
.home-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.home-split__img {
  overflow: hidden;
  position: relative;
}
.home-split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  min-height: 500px;
  transition: transform 0.6s ease;
}
.home-split__img:hover img {
  transform: scale(1.03);
}
.home-split__text {
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 7vw, 96px) clamp(40px, 6vw, 80px);
}
.home-split__text p {
  color: rgba(245,240,232,0.7);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 14px;
}

@media (max-width: 768px) {
  .home-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .home-split__img img {
    min-height: 320px;
    max-height: 400px;
    object-position: center 15%;
  }
  .home-split__text {
    padding: 48px 24px;
  }
}

.team__group-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* ── HOME SPLIT FIX ──────────────────────────────────────────── */
.home-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 0;
  padding: 0;
  width: 100%;
  overflow: hidden;
}
.home-split__img {
  overflow: hidden;
  position: relative;
  margin: 0;
  padding: 0;
}
.home-split__img img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  margin: 0;
  padding: 0;
  transition: transform 0.6s ease;
}
.home-split__img:hover img { transform: scale(1.03); }
.home-split__text {
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px,7vw,96px) clamp(40px,6vw,80px);
}
.home-split__text p {
  color: rgba(245,240,232,0.7);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 14px;
}
@media (max-width: 768px) {
  .home-split { grid-template-columns: 1fr; min-height: auto; }
  .home-split__img img { min-height: 380px; max-height: 420px; object-position: center 15%; }
  .home-split__text { padding: 48px 24px; }
}

/* ── TEAM GROUP PHOTO — FULL WIDTH ───────────────────────────── */
.team__group-photo {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin: 0 0 60px 0;
  padding: 0;
}
.team__group-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

/* ── LAYOUT RESET ────────────────────────────────────────────── */
main { padding: 0; margin: 0; }
.home-split { margin-left: 0 !important; margin-right: 0 !important; }

/* ── TEAM SECTION PADDING FIX ───────────────────────────────── */
.team {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.team__header {
  padding: 0 clamp(24px,5vw,60px);
  margin-bottom: 40px;
}
.team__grid {
  padding: 0 clamp(24px,5vw,60px);
}

/* ── HERO VIDEO ──────────────────────────────────────────────── */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.45);
  z-index: 0;
}
/* Overlay still sits on top of video */
.hero__overlay {
  z-index: 1;
}
.hero__content {
  z-index: 2;
}
.hero__scroll {
  z-index: 2;
}
/* Fallback: if video fails, show team photo */
.hero__video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/team.jpg') center/cover;
}

/* ── HERO VIDEO MOBILE ───────────────────────────────────────── */
@media (max-width: 768px) {
  .hero__video {
    object-position: center top;
  }
}

/* ── HERO TEXT VISIBILITY FIX ────────────────────────────────── */
.hero__video {
  filter: brightness(0.32) !important;
}
.hero__overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.15) 40%,
    rgba(0,0,0,0.75) 100%
  ) !important;
}
.hero__eyebrow {
  font-size: 0.82rem !important;
  letter-spacing: 0.38em !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}
.hero__title {
  text-shadow: 0 2px 20px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.9) !important;
  font-size: clamp(3.8rem, 10vw, 8rem) !important;
}
.hero__title em {
  text-shadow: 0 2px 20px rgba(0,0,0,0.5) !important;
}
.hero__tagline {
  font-size: clamp(1.1rem, 2.8vw, 1.5rem) !important;
  color: rgba(245,240,232,0.92) !important;
  text-shadow: 0 1px 10px rgba(0,0,0,0.9) !important;
  letter-spacing: 0.04em !important;
}
.hero__cta .btn--gold {
  font-size: 0.8rem !important;
  padding: 16px 38px !important;
  letter-spacing: 0.22em !important;
  box-shadow: 0 4px 20px rgba(184,146,42,0.4) !important;
}
.hero__cta .btn--outline {
  font-size: 0.8rem !important;
  padding: 16px 38px !important;
  letter-spacing: 0.22em !important;
  border-color: rgba(245,240,232,0.7) !important;
  color: var(--cream) !important;
  backdrop-filter: blur(4px) !important;
}
.hero__scroll {
  color: rgba(245,240,232,0.55) !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.28em !important;
}

/* ── NAV ON VIDEO ─────────────────────────────────────────────── */
.nav__links a {
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.lang-toggle {
  text-shadow: none !important;
  background: rgba(184,146,42,0.2) !important;
  border: 1.5px solid var(--gold) !important;
}

/* ── LANG TOGGLE — HIGHLY VISIBLE ───────────────────────────── */
#lang-toggle {
  background: var(--gold) !important;
  border: 2px solid var(--gold) !important;
  color: var(--black) !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  padding: 10px 20px !important;
  border-radius: 3px !important;
  margin-left: 20px !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  box-shadow: 0 2px 12px rgba(184,146,42,0.45) !important;
}
#lang-toggle:hover {
  background: var(--gold-lt) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 18px rgba(184,146,42,0.6) !important;
}
#lang-toggle .lang-active {
  color: var(--black) !important;
  font-weight: 900 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}
#lang-toggle .lang-sep {
  color: rgba(0,0,0,0.4) !important;
  margin: 0 6px !important;
}

/* ── HOME SPLIT — TRULY EDGE TO EDGE ────────────────────────── */
body > main,
main {
  padding: 0 !important;
  margin: 0 !important;
}
.home-split {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  min-height: 650px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-top: 1px solid var(--border) !important;
  border-bottom: 1px solid var(--border) !important;
}
.home-split__img {
  width: 100% !important;
  height: 100% !important;
  min-height: 650px !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
}
.home-split__img img {
  width: 100% !important;
  height: 100% !important;
  min-height: 650px !important;
  object-fit: cover !important;
  object-position: center 20% !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ── ABOUT TEAM PHOTO — TRUE FULL WIDTH ─────────────────────── */
.team {
  padding: clamp(60px,8vw,100px) 0 !important;
}
.team__header {
  padding-left: clamp(24px,5vw,60px) !important;
  padding-right: clamp(24px,5vw,60px) !important;
}
.team__group-photo {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 0 52px 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}
.team__group-img {
  width: 100% !important;
  height: 500px !important;
  object-fit: cover !important;
  object-position: center 28% !important;
  display: block !important;
  margin: 0 !important;
}
.team__grid {
  padding-left: clamp(24px,5vw,60px) !important;
  padding-right: clamp(24px,5vw,60px) !important;
}

@media (max-width: 768px) {
  #lang-toggle {
    margin-left: 0 !important;
    font-size: 0.9rem !important;
    padding: 11px 22px !important;
  }
  .home-split {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  .home-split__img {
    min-height: 380px !important;
    height: 380px !important;
  }
  .home-split__img img {
    min-height: 380px !important;
    height: 380px !important;
  }
  .team__group-img {
    height: 320px !important;
  }
}

/* ── WORK GALLERY ────────────────────────────────────────────── */
.gallery {
  padding: clamp(60px,8vw,100px) 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.gallery__header {
  text-align: center;
  padding: 0 clamp(24px,5vw,60px);
  margin-bottom: 40px;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.gallery__item {
  overflow: hidden;
  aspect-ratio: 1/1;
  position: relative;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.gallery__item:hover img {
  transform: scale(1.06);
}

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

/* ── VIDEO SPLIT SECTION ─────────────────────────────────────── */
.video-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.video-split__video {
  overflow: hidden;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
}
.video-split__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  min-height: 560px;
}
.video-split__text {
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px,7vw,96px) clamp(40px,6vw,80px);
}
.video-split__text p {
  color: rgba(245,240,232,0.7);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 14px;
}
@media(max-width: 768px) {
  .video-split { grid-template-columns: 1fr; }
  .video-split__video { min-height: 380px; }
  .video-split__video video { min-height: 380px; }
  .video-split__text { padding: 48px 24px; }
}

/* ── NAV INSTAGRAM ICON ──────────────────────────────────────── */
.nav__ig {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-dim);
  transition: color 0.2s, transform 0.2s;
  padding: 2px;
}
.nav__ig:hover {
  color: var(--gold);
  transform: scale(1.15);
}
.nav__ig svg {
  display: block;
}

/* Mobile — show in open menu */
@media(max-width: 768px) {
  .nav__ig svg {
    width: 26px;
    height: 26px;
  }
}

/* ── UTILITY ─────────────────────────────────────────────────── */
.btn--mt { margin-top: 28px; }
.info-phone {
  color: var(--cream);
  transition: color 0.2s;
}
.info-phone:hover { color: var(--gold); }

/* ── CSS CLEANUP — remove duplicate rules ────────────────────── */

/* ── MOBILE NAV OVERHAUL ─────────────────────────────────────── */

/* Hide mobile right group on desktop */
.nav__mobile-right { display: none; }

@media(max-width: 900px) {

  /* Hide desktop elements */
  .nav__links,
  #lang-toggle { display: none !important; }

  /* Show mobile right group */
  .nav__mobile-right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
  }

  /* Instagram icon mobile */
  .nav__ig--mobile {
    display: flex;
    align-items: center;
    color: var(--cream-dim);
    transition: color 0.2s;
  }
  .nav__ig--mobile:hover { color: var(--gold); }

  /* Compact lang toggle mobile */
  .lang-toggle--mobile {
    background: transparent !important;
    border: 1px solid var(--gold) !important;
    color: var(--cream) !important;
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.15em !important;
    padding: 5px 10px !important;
    border-radius: 3px !important;
    margin-left: 0 !important;
    box-shadow: none !important;
    cursor: pointer;
    white-space: nowrap;
  }
  .lang-toggle--mobile .lang-active {
    color: var(--gold) !important;
  }
  .lang-toggle--mobile .lang-sep {
    color: rgba(184,146,42,0.5) !important;
    margin: 0 4px !important;
  }

  /* Hamburger button */
  .nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
  }
  .nav__toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--cream);
    transition: all 0.3s ease;
  }
}

/* ── SIDE DRAWER ─────────────────────────────────────────────── */
.nav__drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100dvh;
  background: var(--dark);
  border-left: 1px solid var(--border);
  z-index: 300;
  transition: right 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow-y: auto;
}
.nav__drawer.open { right: 0; }

.nav__drawer-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.nav__drawer-links {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
}
.nav__drawer-links a {
  font-family: var(--font-b);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  padding: 18px 28px;
  border-bottom: 1px solid var(--border-lt);
  transition: color 0.2s, background 0.2s;
  display: block;
}
.nav__drawer-links a:hover,
.nav__drawer-links a.active {
  color: var(--gold);
  background: rgba(184,146,42,0.05);
}
.nav__drawer-links a:last-child { border-bottom: none; }

/* Overlay */
.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 299;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  backdrop-filter: blur(2px);
}
.nav__overlay.open {
  opacity: 1;
  pointer-events: all;
}
