/* ============================================================
   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;
}

/* ── GALLERY TABS ────────────────────────────────────────────── */
.gallery__tabs {
  display: flex;
  gap: 0;
  margin-top: 28px;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.gallery__tab {
  background: transparent;
  border: none;
  color: var(--cream-dim);
  font-family: var(--font-b);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 11px 32px;
  cursor: pointer;
  transition: all 0.2s;
}
.gallery__tab:first-child {
  border-right: 1px solid var(--border);
}
.gallery__tab.active {
  background: var(--gold);
  color: var(--black);
}
.gallery__tab:not(.active):hover {
  background: rgba(184,146,42,0.1);
  color: var(--gold);
}

/* ── HOME SPLIT PHOTO FIX ────────────────────────────────────── */
.home-split__img img {
  object-fit: cover !important;
  object-position: center top !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 650px !important;
}

/* ============================================================
   MOBILE OPTIMIZATION — All phones Android & Apple
   Breakpoints: 320px (small), 375px (iPhone SE/standard),
   390px (iPhone 14/15), 412px (Pixel/Samsung), 768px (tablet)
   ============================================================ */

/* ── GLOBAL MOBILE BASE ─────────────────────────────────────── */
@media (max-width: 768px) {

  :root {
    --nav-h: 72px;
    font-size: 15px;
  }

  /* Prevent text overflow */
  * { word-break: break-word; }

  /* Better tap targets — minimum 44px */
  a, button { min-height: 44px; }

  /* Smooth scrolling on iOS */
  html { -webkit-overflow-scrolling: touch; }

  /* No horizontal scroll */
  body { overflow-x: hidden; width: 100%; }

  /* ── NAV ── */
  .nav {
    padding: 0 16px !important;
    height: var(--nav-h) !important;
  }
  .nav__logo-img {
    width: 52px !important;
    height: 52px !important;
  }
  .nav__mobile-right { gap: 8px !important; }

  /* ── HERO ── */
  .hero {
    height: 100svh !important;
    min-height: 580px !important;
  }
  .hero__title {
    font-size: clamp(2.8rem, 12vw, 4.5rem) !important;
    line-height: 1.05 !important;
  }
  .hero__tagline {
    font-size: clamp(0.9rem, 3.5vw, 1.15rem) !important;
    margin-bottom: 28px !important;
  }
  .hero__cta {
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 0 24px !important;
  }
  .hero__cta .btn {
    width: 100% !important;
    max-width: 300px !important;
    padding: 15px 24px !important;
    font-size: 0.75rem !important;
  }

  /* ── HOME SPLIT ── */
  .home-split {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  .home-split__img img {
    min-height: 400px !important;
    max-height: 480px !important;
    object-position: center 15% !important;
  }
  .home-split__text {
    padding: 40px 20px !important;
  }
  .home-split__text p { font-size: 0.93rem !important; }

  /* ── SECTION TITLES ── */
  .section-title {
    font-size: clamp(1.8rem, 7vw, 2.8rem) !important;
    line-height: 1.2 !important;
  }
  .section-label {
    font-size: 0.65rem !important;
    letter-spacing: 0.22em !important;
  }

  /* ── INFO STRIP ── */
  .info-strip__inner {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding: 0 !important;
  }
  .info-item {
    padding: 24px 20px !important;
    border-bottom: 1px solid var(--border) !important;
  }
  .info-item:last-child { border-bottom: none !important; }
  .info-item__value { font-size: 1rem !important; }

  /* ── VIDEO SPLIT ── */
  .video-split {
    grid-template-columns: 1fr !important;
  }
  .video-split__video { min-height: 280px !important; }
  .video-split__video video {
    min-height: 280px !important;
    position: relative !important;
    height: 280px !important;
  }
  .video-split__text { padding: 40px 20px !important; }

  /* ── GALLERY ── */
  .gallery { padding: 48px 0 !important; }
  .gallery__header { padding: 0 20px 24px !important; }
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2px !important;
  }
  .gallery__tabs { margin-top: 20px !important; }
  .gallery__tab {
    padding: 10px 24px !important;
    font-size: 0.72rem !important;
  }

  /* ── TESTIMONIALS ── */
  .testimonials { padding: 48px 16px !important; }
  .testimonials__grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .testimonial-card { padding: 20px !important; }
  .testimonial-card blockquote { font-size: 0.97rem !important; }

  /* ── MAP / FIND US ── */
  .find-us__inner {
    grid-template-columns: 1fr !important;
  }
  .find-us__text { padding: 40px 20px !important; }
  .find-us__map {
    min-height: 260px !important;
    position: relative !important;
  }
  .find-us__map iframe {
    position: relative !important;
    height: 260px !important;
  }
  .find-us__info { gap: 18px !important; }

  /* ── INSTAGRAM CTA ── */
  .social-cta { padding: 48px 20px !important; }
  .social-cta__btns, .ig-cta__btns {
    flex-direction: column !important;
    align-items: center !important;
  }
  .social-cta__btns .btn,
  .ig-cta__btns .btn {
    width: 100% !important;
    max-width: 300px !important;
  }

  /* ── ABOUT STORY ── */
  .story {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding: 0 !important;
  }
  .story__image { order: -1 !important; }
  .story__image .img-placeholder { min-height: 300px !important; }
  .story__text {
    padding: 40px 20px !important;
  }
  .story__quote { font-size: 1.1rem !important; }

  /* ── VALUES ── */
  .values { padding: 48px 20px !important; }
  .values__grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .value { padding: 24px 20px !important; }

  /* ── BOOK CTA ── */
  .book-cta, .about-cta {
    padding: 48px 20px !important;
  }
  .book-cta__phone, .about-cta__phone {
    font-size: 1.5rem !important;
  }
  .about-cta__btns {
    flex-direction: column !important;
    align-items: center !important;
  }
  .about-cta__btns .btn {
    width: 100% !important;
    max-width: 300px !important;
  }

  /* ── SERVICES ── */
  .services, .svc-wrap {
    padding: 40px 16px !important;
  }
  .service-category__title,
  .svc-cat__title {
    font-size: 1.5rem !important;
  }
  .service-item {
    padding: 14px 0 !important;
  }
  .service-item__dots,
  .svc-row__dots { display: none !important; }
  .service-item, .svc-row {
    flex-wrap: wrap !important;
    gap: 2px !important;
  }
  .service-item__name,
  .svc-row__name { flex: 1 0 100% !important; }
  .service-item__price,
  .svc-row__price { margin-left: auto !important; }
  .book-cta__inner { padding: 0 !important; }
  .svc-cta__inner {
    grid-template-columns: 1fr !important;
  }
  .svc-cta__img { display: none !important; }
  .svc-cta__text { padding: 40px 20px !important; }

  /* ── FOOTER ── */
  .footer__logo-wrap { padding: 40px 20px 28px !important; }
  .footer__logo-img {
    width: 100px !important;
    height: 100px !important;
  }
  .footer__cols {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 28px 20px !important;
  }
  .footer__bottom {
    flex-direction: column !important;
    gap: 6px !important;
    text-align: center !important;
    padding: 16px 20px !important;
  }

  /* ── PAGE HERO (services/about) ── */
  .page-hero {
    min-height: 28vh !important;
    padding-bottom: 36px !important;
  }
  .page-hero__title {
    font-size: clamp(2rem, 10vw, 3.5rem) !important;
  }
}

/* ── SMALL PHONES (iPhone SE, Galaxy A series) ──────────────── */
@media (max-width: 390px) {
  .hero__title {
    font-size: clamp(2.4rem, 11vw, 3.2rem) !important;
  }
  .nav { padding: 0 12px !important; }
  .nav__logo-img { width: 46px !important; height: 46px !important; }
  .gallery__grid { grid-template-columns: repeat(2,1fr) !important; }
  .btn { padding: 13px 20px !important; font-size: 0.7rem !important; }
}

/* ── IPHONE NOTCH / DYNAMIC ISLAND (iPhone 12-15 Pro) ───────── */
@supports (padding: max(0px)) {
  .nav {
    padding-left: max(16px, env(safe-area-inset-left)) !important;
    padding-right: max(16px, env(safe-area-inset-right)) !important;
  }
  .footer {
    padding-bottom: max(20px, env(safe-area-inset-bottom)) !important;
  }
}

/* ── LANDSCAPE PHONE ────────────────────────────────────────── */
@media (max-width: 900px) and (orientation: landscape) {
  .hero {
    height: 100svh !important;
    min-height: 400px !important;
  }
  .hero__title { font-size: clamp(2rem, 6vw, 3rem) !important; }
  .home-split { grid-template-columns: 1fr 1fr !important; }
  .home-split__img img { min-height: 300px !important; max-height: 360px !important; }
}

/* ── TABLET (iPad mini, iPad Air) ───────────────────────────── */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero__title { font-size: clamp(3.5rem, 7vw, 5.5rem) !important; }
  .home-split { grid-template-columns: 1fr 1fr !important; min-height: 560px !important; }
  .gallery__grid { grid-template-columns: repeat(3,1fr) !important; }
  .testimonials__grid { grid-template-columns: repeat(2,1fr) !important; }
  .values__grid { grid-template-columns: repeat(3,1fr) !important; }
}

/* ── TOUCH DEVICE IMPROVEMENTS ──────────────────────────────── */
@media (hover: none) and (pointer: coarse) {
  /* Remove hover effects on touch - prevents sticky hover states */
  .gallery__item:hover img { transform: none !important; }
  .home-split__img:hover img { transform: none !important; }
  .btn:hover { transform: none !important; }
  .testimonial-card:hover { border-color: var(--border) !important; }

  /* Larger tap targets */
  .nav__drawer-links a {
    padding: 20px 28px !important;
    min-height: 56px !important;
  }
  .footer__col a {
    padding: 6px 0 !important;
    display: inline-block !important;
  }
}

/* ── MAP MOBILE FIX ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .find-us__inner {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  .find-us__text {
    padding: 36px 20px !important;
    order: 1 !important;
  }
  .find-us__map {
    order: 2 !important;
    min-height: 220px !important;
    height: 220px !important;
    position: relative !important;
    overflow: hidden !important;
  }
  .find-us__map iframe {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }

  /* ── VIDEO SPLIT MOBILE FIX ────────────────────────────────── */
  .video-split {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  .video-split__video {
    height: 260px !important;
    min-height: 260px !important;
    position: relative !important;
    overflow: hidden !important;
  }
  .video-split__video video {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    min-height: unset !important;
  }
  .video-split__text {
    padding: 36px 20px !important;
  }
}

/* ── INSTAGRAM CTA & FOOTER CENTERING FIX ───────────────────── */
@media (max-width: 768px) {
  /* Instagram CTA */
  .ig-cta, .social-cta {
    padding: 52px 20px !important;
    text-align: center !important;
  }
  .ig-cta p, .social-cta p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .ig-cta__btns, .social-cta__btns {
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
  }
  .ig-cta__btns .btn, .social-cta__btns .btn {
    width: 100% !important;
    max-width: 320px !important;
    text-align: center !important;
  }

  /* Footer centering */
  .footer__logo-wrap {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .footer__cols {
    text-align: center !important;
  }
  .footer__col {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .footer__col a,
  .footer__col p {
    text-align: center !important;
  }
  .footer__bottom {
    text-align: center !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
  }

  /* Testimonials note centered */
  .testimonials__note {
    text-align: center !important;
  }

  /* Gallery header centered */
  .gallery__header {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
}

/* ── FINAL LAYOUT POLISH — MOBILE & DESKTOP ──────────────────── */

/* Desktop max-width consistency */
@media (min-width: 769px) {
  .ig-cta__inner,
  .social-cta__inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }
  .ig-cta__btns,
  .social-cta__btns {
    justify-content: center;
  }
  .find-us__text .btn { align-self: flex-start; }
}

/* Mobile - global section padding consistency */
@media (max-width: 768px) {
  section { width: 100% !important; overflow-x: hidden !important; }

  /* Home split text padding */
  .home-split__text {
    padding: 40px 24px !important;
  }

  /* Map - show address info above map */
  .find-us__text { order: 1 !important; }
  .find-us__map  { order: 2 !important; }

  /* Compact find-us on mobile */
  .find-us__info { gap: 16px !important; }
  .find-us__label { margin-bottom: 2px !important; }
  .find-us__item p { font-size: 0.9rem !important; }
  .find-us__item a { font-size: 1rem !important; }

  /* Marquee strip font */
  .marquee-track span {
    font-size: 0.65rem !important;
    padding: 0 20px !important;
  }

  /* Story section on about page */
  .story__text { padding: 40px 24px !important; }
  .story__quote {
    font-size: 1.05rem !important;
    padding-left: 16px !important;
    margin: 20px 0 !important;
  }

  /* Book CTA sections */
  .book-cta__inner,
  .about-cta__inner {
    padding: 0 !important;
    text-align: center !important;
  }
  .book-cta__phone,
  .about-cta__phone {
    font-size: 1.6rem !important;
    text-align: center !important;
    display: block !important;
  }
  .about-cta__btns {
    justify-content: center !important;
  }

  /* Services page disclaimer */
  .services__disclaimer,
  .svc-disclaimer {
    padding: 20px 0 !important;
    font-size: 0.8rem !important;
  }

  /* Page hero sections */
  .page-hero {
    padding-top: calc(var(--nav-h) + 10px) !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Values section */
  .value-item__title { font-size: 1.15rem !important; }
  .value-item__text { font-size: 0.85rem !important; }
}

/* ── REMOVE VIDEO SPLIT CSS ──────────────────────────────────── */
/* (section removed from HTML, keeping CSS harmless) */
