/* ═══════════════════════════════════════════
   FOXX EVENT v3 — Bold & Dynamic
   Asymmetric Split + Full-Bleed
   Mobile-First
═══════════════════════════════════════════ */

:root {
  /* Colors — preserved from original */
  --bg:           #ffe2d2;
  --bg-2:         #fff5ef;
  --bg-white:     #ffffff;
  --brand:        #4a4b7d;
  --brand-lt:     #7172a8;
  --brand-dk:     #363769;
  --brand-faint:  rgba(74,75,125,0.08);
  --text:         #2a2b45;
  --text-mid:     #5f6088;
  --text-lt:      #9ea0bc;
  --pink:         #e94f7a;
  --yellow:       #f7c948;
  --purple:       #7c5cbf;

  /* Typography */
  --font-d: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'Inter', system-ui, sans-serif;

  /* Spacing */
  --header-h: 72px;
  --container: 1200px;
  --spad: clamp(80px, 10vw, 140px);
  --spad-sm: clamp(48px, 8vw, 80px);

  /* Easing */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-b);
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; font: inherit; border: none; background: none; }

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ── Typography ── */
h1 { font-family: var(--font-d); font-weight: 300; font-size: clamp(3rem, 6vw, 6rem); line-height: 1.05; }
h2 { font-family: var(--font-d); font-weight: 300; font-size: clamp(2rem, 4vw, 4rem); line-height: 1.1; }
h3 { font-family: var(--font-d); font-weight: 400; font-size: clamp(1.5rem, 2.5vw, 2.5rem); line-height: 1.2; }
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
  position: relative;
}
.section-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand);
  margin-top: 12px;
}
.section-label.light {
  color: rgba(255,226,210,0.7);
}
.section-label.light::after {
  background: rgba(255,226,210,0.5);
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: var(--brand); color: #fff;
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; border-radius: 2px;
  transition: background .3s, transform .2s;
}
.btn-primary:hover { background: var(--brand-dk); transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex; align-items: center;
  padding: 14px 32px; border: 1.5px solid rgba(74,75,125,0.35);
  color: var(--brand); font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; border-radius: 2px;
  transition: border-color .3s, background .3s;
}
.btn-secondary:hover { border-color: var(--brand); background: var(--brand-faint); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border: 1.5px solid var(--brand);
  color: var(--brand); font-size: 12px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; border-radius: 2px;
  transition: background .3s, color .3s;
}
.btn-outline:hover { background: var(--brand); color: #fff; }

.btn-outline--light {
  border-color: rgba(255,226,210,.55); color: var(--bg);
}
.btn-outline--light:hover { background: var(--bg); color: var(--brand); border-color: var(--bg); }

.btn-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 32px; background: var(--brand); color: #fff;
  font-size: 12px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; border-radius: 2px;
  transition: background .3s, transform .2s;
}
.btn-submit:hover { background: var(--brand-dk); transform: translateY(-1px); }
.btn-submit svg { transition: transform .3s; }
.btn-submit:hover svg { transform: translateX(4px); }

/* ── Preloader ── */
#preloader {
  position: fixed; inset: 0; background: var(--brand);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
}
.preloader-inner { text-align: center; }
.preloader-logo {
  display: block;
  height: clamp(88px, 16vw, 128px);
  width: auto;
  margin: 0 auto 24px;
  filter: brightness(0) invert(1);
}
.preloader-line-wrap { width: 160px; margin: 0 auto; overflow: hidden; }
.preloader-line { height: 2px; background: var(--bg); width: 0; }

/* ── Header ── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  transition: background .4s var(--ease), box-shadow .4s var(--ease), transform .4s var(--ease);
}
#header.hidden {
  transform: translateY(-100%);
}
#header.scrolled {
  background: rgba(255,245,239, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(74,75,125, 0.1);
}
.nav-container {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px); height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 50px; width: auto; }
.nav-links { display: flex; align-items: center; gap: clamp(24px, 2.5vw, 40px); }
.nav-links a {
  font-size: 12px; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text);
  position: relative; padding-bottom: 4px; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--brand);
  transition: width .3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--brand); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.nav-cta {
  padding: 8px 20px; border: 1.5px solid var(--brand);
  color: var(--brand); border-radius: 2px;
  transition: background .3s, color .3s;
}
.nav-links a.nav-cta::after { display: none; }
.nav-links a.nav-cta:hover { background: var(--brand); color: var(--bg-white); }

/* Language switcher */
.lang-switcher { display: flex; align-items: center; gap: 2px; }
.lang-btn {
  font: 600 11px/1 var(--font-b); letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-lt);
  padding: 6px 10px; border-radius: 2px; transition: color .2s, background .2s;
}
.lang-btn:hover { color: var(--brand); }
.lang-btn.active { color: var(--brand); background: var(--brand-faint); }

/* Mobile toggle */
.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.menu-toggle span {
  display: block; width: 26px; height: 1.5px;
  background: var(--text); transition: all .3s var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: absolute; top: 0; left: 0; right: 0; height: 100dvh; background: var(--brand);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 40px;
  transform: translateX(100%); transition: transform .5s var(--ease);
  z-index: 99;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-logo { height: 48px; width: auto; opacity: .9; margin-bottom: 8px; }
.mobile-menu-close {
  position: absolute; top: 20px; right: 20px;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: var(--bg); opacity: .8;
  transition: opacity .2s, transform .2s;
}
.mobile-menu-close:hover { opacity: 1; transform: rotate(90deg); }
.mobile-menu-close svg { width: 30px; height: 30px; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 32px; text-align: center; }
.mobile-menu a {
  font-family: var(--font-d);
  font-size: clamp(2rem, 7vw, 3.5rem); font-weight: 300;
  color: var(--bg); transition: color .3s;
}
.mobile-menu a:hover { color: rgba(255,226,210, .7); }
.mobile-lang { display: flex; gap: 12px; }
.mobile-lang .lang-btn {
  color: rgba(255,226,210, .5);
  border: 1px solid rgba(255,226,210, .2);
  padding: 10px 20px;
}
.mobile-lang .lang-btn.active { color: var(--bg); border-color: var(--bg); }

/* ═══════════ HERO ═══════════ */
#hero {
  min-height: 100svh;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  gap: clamp(16px, 3vw, 40px);
  padding: 0 clamp(24px, 4vw, 48px);
  min-height: 100svh;
  align-items: center;
}
.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--header-h) + 40px) 0 40px;
  position: relative; z-index: 2;
}
.hero-overline {
  display: block; font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-d);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 300; line-height: 1.05;
  color: var(--text); margin-bottom: 28px;
}
.hero-title em { font-style: italic; color: var(--brand); }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: block; }
.hero-desc {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--text-mid); line-height: 1.75;
  margin-bottom: 40px; max-width: 440px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Initial states for GSAP entrance */
.hero-overline, .hero-desc, .hero-actions, .hero-scroll-hint { opacity: 0; }
.hero-overline { transform: translateY(12px); }
.hero-desc { transform: translateY(16px); }
.hero-actions { transform: translateY(16px); }
.hero-title .line > span { transform: translateY(110%); }

/* Hero scene — photo */
.hero-scene {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border-radius: 12px;
  min-height: clamp(320px, 55vh, 680px);
}
.hero-main-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-main-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  animation: photo-breathe 9s ease-in-out infinite;
}

@keyframes shape-float { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-18px) rotate(5deg); } }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-lt);
}
.scroll-line { width: 48px; height: 1.5px; background: var(--brand); }

/* ═══════════ STATS ═══════════ */
#istatistikler { background: var(--brand); }
.stats-grid {
  max-width: var(--container); margin: 0 auto;
  padding: clamp(40px, 6vw, 64px) clamp(24px, 4vw, 48px);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item { text-align: center; padding: 28px 16px; position: relative; }
.stat-item + .stat-item::before {
  content: ''; position: absolute; left: 0; top: 20%; height: 60%;
  width: 1px; background: rgba(255,226,210, .15);
}
.stat-number {
  font-family: var(--font-d);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300; color: var(--bg); line-height: 1;
}
.stat-suffix {
  font-family: var(--font-d);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: rgba(255,226,210, .65);
  vertical-align: top; margin-top: 4px; display: inline-block;
}
.stat-label {
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,226,210, .42); margin-top: 8px;
}

/* ═══════════ ABOUT ═══════════ */
#hakkimizda { background: var(--bg-white); padding: var(--spad) 0; overflow: hidden; }
.about-grid {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px);
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(48px, 7vw, 100px); align-items: center;
}
.about-image-col { position: relative; }
.about-img-frame {
  aspect-ratio: 4/5; overflow: hidden; border-radius: 2px;
  transform: translateX(clamp(-20px, -3vw, -48px));
}
.about-img-frame img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-badge {
  position: absolute; bottom: -24px; right: -20px;
  width: 100px; height: 100px; background: var(--brand);
  border-radius: 50%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2px;
  z-index: 2;
}
.about-badge span:first-child {
  font-family: var(--font-d); font-size: 1.5rem;
  font-weight: 600; color: var(--bg); line-height: 1;
}
.about-badge span:last-child {
  font-size: 9px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,226,210, .65);
}
#hakkimizda h2 {
  font-family: var(--font-d);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300; line-height: 1.1; color: var(--text);
  margin-bottom: 24px;
}
#hakkimizda h2 em { font-style: italic; color: var(--brand); }
.about-divider { width: 48px; height: 2px; background: var(--brand); margin-bottom: 28px; }
#hakkimizda p { color: var(--text-mid); line-height: 1.8; margin-bottom: 20px; }
#hakkimizda blockquote {
  border-left: 3px solid var(--brand); padding: 16px 24px;
  margin: 32px 0; background: var(--brand-faint);
  border-radius: 0 2px 2px 0;
}
#hakkimizda blockquote p {
  font-family: var(--font-d); font-size: 1.25rem;
  font-style: italic; color: var(--brand); margin: 0;
}

/* ═══════════ SERVICES ═══════════ */
#hizmetler { background: var(--bg); padding: var(--spad) 0; }
.section-header {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px);
  margin-bottom: clamp(48px, 6vw, 80px); text-align: center;
}
#hizmetler h2 {
  font-family: var(--font-d);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300; color: var(--text); line-height: 1.1;
}
#hizmetler h2 em { font-style: italic; color: var(--brand); }
.services-grid {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px);
  display: flex; flex-direction: column; gap: 3px;
}
.service-card {
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden; border: 1.5px solid rgba(74,75,125, .12);
  border-radius: 8px; background: var(--bg-white);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease),
              border-color .4s;
}
.service-card:hover {
  border-color: rgba(74,75,125, .28);
  box-shadow: 0 8px 48px rgba(74,75,125, .1);
  transform: translateY(-4px);
}
.service-card--alt { direction: rtl; }
.service-card--alt > * { direction: ltr; }
.service-card-inner {
  padding: clamp(40px, 5vw, 64px);
  display: flex; flex-direction: column; justify-content: center;
}
.service-icon { width: 44px; height: 44px; color: var(--brand); margin-bottom: 24px; }
.service-card h3 {
  font-family: var(--font-d);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400; color: var(--text); margin-bottom: 16px;
}
.service-card p { color: var(--text-mid); line-height: 1.75; margin-bottom: 28px; }
.service-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px 24px; margin-bottom: 32px;
}
.service-list li {
  font-size: 13px; color: var(--text-mid);
  padding-left: 16px; position: relative; line-height: 1.5;
}
.service-list li::before {
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%); width: 6px; height: 1.5px;
  background: var(--brand);
}
.service-link {
  font-size: 13px; font-weight: 500; color: var(--brand);
  display: inline-flex; gap: 6px; transition: gap .3s;
}
.service-link:hover { gap: 12px; }
.service-image { overflow: hidden; min-height: 360px; }
.service-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.service-card:hover .service-image img { transform: scale(1.04); }

/* ═══════════ GALLERY ═══════════ */
#galeri { background: var(--bg-white); padding: var(--spad) 0 calc(var(--spad) + 40px); }
.gallery-header {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px);
  margin-bottom: clamp(40px, 5vw, 64px);
}
#galeri h2 {
  font-family: var(--font-d);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300; line-height: 1.1; color: var(--text);
}
#galeri h2 em { font-style: italic; color: var(--brand); }

.gallery-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  cursor: grab;
}
.gallery-scroll:active { cursor: grabbing; }
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-track {
  display: flex; gap: 20px; padding: 0 clamp(24px, 4vw, 48px);
}
.gallery-item {
  flex-shrink: 0;
  width: clamp(280px, 32vw, 460px);
  height: clamp(200px, 22vw, 340px);
  overflow: hidden; border-radius: 8px; margin: 0;
  scroll-snap-align: start;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
  pointer-events: none;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ═══════════ TEAM ═══════════ */
#ekip { background: var(--brand); padding: var(--spad) 0; overflow: hidden; }
.team-grid {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px); align-items: center;
}
#ekip h2 {
  font-family: var(--font-d);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300; color: var(--bg); line-height: 1.1;
  margin-bottom: 28px;
}
#ekip h2 em { font-style: italic; color: rgba(255,226,210, .85); }
#ekip p { color: rgba(255,226,210, .62); line-height: 1.8; margin-bottom: 20px; }
.team-img-frame {
  aspect-ratio: 4/3; overflow: hidden; border-radius: 2px;
  transform: translateX(clamp(20px, 3vw, 48px));
}
.team-img-frame img {
  width: 100%; height: 100%; object-fit: cover;
}
.team-img-frame:hover img { transform: scale(1.04); transition: transform .8s var(--ease); }

/* ═══════════ CONTACT ═══════════ */
#iletisim { background: var(--bg); padding: var(--spad) 0; position: relative; }
.contact-grid {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px);
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(48px, 7vw, 100px); align-items: start;
}
#iletisim h2 {
  font-family: var(--font-d);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300; color: var(--text); line-height: 1.1;
  margin-bottom: 20px;
}
#iletisim h2 em { font-style: italic; color: var(--brand); }
.contact-info > p { color: var(--text-mid); line-height: 1.7; margin-bottom: 32px; }
.contact-persons { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-person { display: flex; flex-direction: column; gap: 5px; }
.contact-person strong { font-size: 14px; font-weight: 600; color: var(--text); }
.contact-person a { font-size: 14px; color: var(--text-mid); transition: color .2s; }
.contact-person a:hover { color: var(--brand); }
.contact-location { display: flex; align-items: center; gap: 10px; color: var(--text-mid); font-size: 14px; }
.contact-location svg { color: var(--brand); flex-shrink: 0; }

/* Form wrapper with floating shapes */
.contact-form-wrapper { position: relative; }
.cf-shape { position: absolute; border-radius: 3px; z-index: 0; pointer-events: none; }
.cf-rect {
  width: clamp(60px, 8vw, 100px); height: clamp(60px, 8vw, 100px);
  background: var(--pink); opacity: .12;
  top: -30px; right: -30px;
  animation: shape-float 6s ease-in-out infinite;
}
.cf-dot {
  width: clamp(40px, 5vw, 56px); height: clamp(40px, 5vw, 56px);
  background: var(--yellow); border-radius: 50%; opacity: .15;
  bottom: -20px; left: -20px;
  animation: shape-float 5.5s ease-in-out infinite .6s;
}
.cf-mini {
  width: 22px; height: 22px; background: var(--purple);
  border-radius: 50%; opacity: .2;
  top: 40%; right: -10px;
  animation: shape-float 4s ease-in-out infinite 1.2s;
}

.contact-form {
  display: flex; flex-direction: column; gap: 20px;
  background: var(--bg-white); padding: clamp(32px, 4vw, 48px);
  border-radius: 8px; box-shadow: 0 4px 48px rgba(74,75,125, .1);
  position: relative; z-index: 1;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 11px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-lt);
}
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border: 1.5px solid rgba(74,75,125, .14);
  border-radius: 4px; font: inherit; font-size: 14px;
  color: var(--text); background: var(--bg-2); outline: none;
  transition: border-color .2s, background .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--brand); background: var(--bg-white);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ═══════════ FOOTER ═══════════ */
#footer { background: #1e1e38; padding: clamp(60px, 8vw, 100px) 0 0; }
.footer-top {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px) clamp(48px, 6vw, 64px);
  display: grid; grid-template-columns: 1.5fr 2fr;
  gap: clamp(40px, 6vw, 80px);
  border-bottom: 1px solid rgba(255,226,210, .06);
}
.footer-logo-link { display: inline-block; }
.footer-logo-link:hover .footer-logo { opacity: 1; }
.footer-logo { height: 44px; width: auto; opacity: .85; margin-bottom: 20px; transition: opacity 0.2s; }
.footer-brand p { font-size: 14px; color: rgba(255,226,210, .38); line-height: 1.7; max-width: 300px; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 48px); }
.footer-nav-col { display: flex; flex-direction: column; gap: 12px; }
.footer-nav-col strong {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--bg); margin-bottom: 4px;
}
.footer-nav-col a, .footer-nav-col address {
  font-size: 13px; color: rgba(255,226,210, .4); transition: color .2s;
}
.footer-nav-col a:hover { color: var(--bg); }
.footer-bottom {
  max-width: var(--container); margin: 0 auto;
  padding: 24px clamp(24px, 4vw, 48px);
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 12px; color: rgba(255,226,210, .22); }
.footer-tagline {
  font-family: var(--font-d) !important; font-size: 1rem !important;
  font-style: italic; color: rgba(255,226,210, .22) !important;
}

/* ═══════════ LIGHTBOX ═══════════ */
#lightbox {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
#lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 10, 20, 0.9);
  cursor: pointer;
}
.lightbox-img-wrap {
  position: relative; z-index: 1;
  max-width: min(90vw, 1200px);
  max-height: 90vh;
  transform: scale(0.92);
  transition: transform 0.35s var(--ease);
}
#lightbox.open .lightbox-img-wrap { transform: scale(1); }
.lightbox-img {
  display: block;
  max-width: 100%; max-height: 90vh;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 32px 96px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: fixed; top: 20px; right: 20px; z-index: 2;
  width: 48px; height: 48px;
  background: rgba(255,245,239, 0.12);
  border-radius: 50%; color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: 1px solid rgba(255,245,239,0.2);
}
.lightbox-close:hover { background: rgba(255,245,239, 0.24); transform: scale(1.08); }

/* ═══════════ SHARED ANIMATIONS ═══════════ */
@keyframes photo-breathe {
  0%, 100% { transform: scale(1) translateY(0); }
  50%      { transform: scale(1.015) translateY(-5px); }
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .service-card, .service-card--alt {
    grid-template-columns: 1fr; direction: ltr;
  }
  .service-card--alt > * { direction: ltr; }
  .service-image { min-height: 280px; }
  .gallery-item {
    width: clamp(240px, 50vw, 360px);
    height: clamp(160px, 34vw, 260px);
  }
}

@media (max-width: 768px) {
  :root { --spad: clamp(60px, 12vw, 80px); }

  #header.hidden { transform: none; }

  .nav-links, .lang-switcher { display: none; }
  .menu-toggle { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 0; padding: 0; }
  .hero-content {
    padding: calc(var(--header-h) + 48px) clamp(24px, 6vw, 40px) 32px;
  }
  .hero-scene { min-height: 60vw; max-height: 380px; border-radius: 0; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item + .stat-item::before { display: none; }

  .about-grid, .team-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-img-frame { transform: translateX(0); }
  .about-badge { right: 16px; bottom: -16px; width: 80px; height: 80px; }
  .about-badge span:first-child { font-size: 1.2rem; }

  .about-image-col { margin-bottom: 40px; }
  .nav-logo img { height: 36px; }

  .team-img-frame { transform: translateX(0); }

  .cf-rect { top: -16px; right: -12px; }
  .cf-dot { bottom: -12px; left: -8px; }

  .form-row { grid-template-columns: 1fr; }
  .footer-top, .footer-nav { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .stats-grid { grid-template-columns: 1fr; }
  .service-list { grid-template-columns: 1fr; }
  .cf-rect, .cf-dot, .cf-mini { display: none; }
  .gallery-item { width: clamp(220px, 70vw, 280px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .gallery-track { animation: none; }
}
