*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --steel: #c8c8c8;
  --gold: #c9a84c;
  --gold-light: #e2c47a;
  --white: #f5f5f0;
  --muted: rgba(245,245,240,0.55);
  --border: rgba(255,255,255,0.08);
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* ── Video Background ── */
.video-wrap {
  position: fixed;
  inset: 0;
  z-index: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.32);
}

/* ── Progress bar ── */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--gold);
  z-index: 1000;
  transition: width 0.05s linear;
}

/* ── Nav ── */
.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 40px;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.nav.scrolled {
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 20px;
  border-radius: 4px;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  letter-spacing: 0.12em;
  color: var(--white);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  color: rgba(245,245,240,0.8);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 9px 22px;
  border-radius: 4px;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--gold-light) !important; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  background: none;
  border: 1px solid var(--border);
  color: rgba(245,245,240,0.5);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 5px 12px;
  min-height: 32px;
  cursor: pointer;
  border-radius: 3px;
  transition: color 0.2s, border-color 0.2s;
}

.lang-toggle:hover {
  color: var(--gold);
  border-color: rgba(201,168,76,0.5);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── Scroll Driver ── */
.scroll-driver {
  position: relative;
  z-index: 10;
}

/* ── Sections base ── */
.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--nav-h) 40px 60px;
}

.section-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 52px;
}

/* ── Hero ── */
.section--hero {
  min-height: 100vh;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 80px;
  gap: 0;
}

.hero-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(72px, 11vw, 148px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-title span {
  color: var(--gold);
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 1px solid rgba(255,255,255,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transform: rotate(45deg);
  animation: arrowBounce 1.8s ease-in-out infinite;
}

@keyframes arrowBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.4; }
  50% { transform: rotate(45deg) translateY(4px); opacity: 1; }
}

.hero-stats {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 0.5px solid var(--border);
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.06em;
  color: var(--white);
}

.stat-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.stat-divider {
  width: 0.5px;
  height: 36px;
  background: var(--border);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.btn--primary {
  background: var(--gold);
  color: var(--black);
}

.btn--primary:hover { background: var(--gold-light); }

.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 0.5px solid var(--border);
  backdrop-filter: blur(4px);
}

.btn--ghost:hover { background: rgba(255,255,255,0.14); }

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--black);
}

.btn--full { width: 100%; }

/* ── Services ── */
.section--services {
  background: rgba(0,0,0,0.55);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.card {
  background: rgba(10,10,10,0.60);
  padding: 36px 28px;
  transition: background 0.25s;
}

.card:hover { background: rgba(10,10,10,0.75); }

.card-icon {
  font-size: 28px;
  margin-bottom: 18px;
  color: var(--gold);
  line-height: 1;
}

.card-icon i { font-size: 28px; }

.card h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Process ── */
.section--process {
  background: rgba(0,0,0,0.50);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 0.5px solid var(--border);
  transition: all 0.2s;
}

.step:first-child { border-top: 0.5px solid var(--border); }

.step:hover .step-num { color: var(--gold); }

.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  color: rgba(255,255,255,0.12);
  min-width: 80px;
  transition: color 0.25s;
}

.step-body h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}

.step-body p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
}

/* ── Gallery ── */
.section--gallery {
  background: rgba(0,0,0,0.52);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px 220px 220px;
  gap: 8px;
  margin-bottom: 40px;
}

/* Bento layout: item 1 spans 2 rows (tall feature left) */
.gallery-grid .gallery-item:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
.gallery-grid .gallery-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.gallery-grid .gallery-item:nth-child(3) { grid-column: 3; grid-row: 1; }
/* item 4 spans 2 columns (wide feature right) */
.gallery-grid .gallery-item:nth-child(4) { grid-column: 2 / span 2; grid-row: 2; }
/* row 3: 3 equal items */
.gallery-grid .gallery-item:nth-child(5) { grid-column: 1; grid-row: 3; }
.gallery-grid .gallery-item:nth-child(6) { grid-column: 2; grid-row: 3; }
.gallery-grid .gallery-item:nth-child(7) { grid-column: 3; grid-row: 3; }
/* row 4: 1 item + wide feature */
.gallery-grid .gallery-item:nth-child(8) { grid-column: 1; grid-row: 4; }
.gallery-grid .gallery-item:nth-child(9) { grid-column: 2 / span 2; grid-row: 4; }

.gallery-item {
  border-radius: 6px;
  overflow: hidden;
  background: var(--dark2);
  border: 0.5px solid var(--border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.03); }

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.gallery-placeholder i { font-size: 32px; opacity: 0.35; }

/* ── Entrance animations (moved from JS) ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 20px;
}

.gallery-cta p {
  font-size: 14px;
  color: var(--muted);
}

/* ── Showcase ── */
.section--showcase {
  background: transparent;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 80px;
  min-height: 100vh;
}

.showcase-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.showcase-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.showcase-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(52px, 8vw, 100px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

/* ── Contact ── */
.section--contact {
  background: rgba(0,0,0,0.58);
}

.section-inner--contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  margin-top: -24px;
  margin-bottom: 44px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}

.contact-method:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.3);
}

.contact-method-icon { font-size: 22px; color: var(--gold); line-height: 1; }
.contact-method-icon i { font-size: 22px; }

.contact-method-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

.contact-method-value {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}

/* ── Form ── */
.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 0.5px solid var(--border);
  border-radius: 6px;
  padding: 12px 16px;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group select option { background: #1a1a1a; }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ── Legal ── */
.legal {
  position: relative;
  z-index: 10;
  background: rgba(4,4,4,0.97);
  border-top: 0.5px solid var(--border);
  padding: 72px 40px;
}

.legal-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.legal-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 0.5px solid var(--border);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 48px;
  margin-bottom: 40px;
}

.legal-block-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.legal-block-header i {
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.legal-block h3 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,245,240,0.7);
}

.legal-block p {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245,245,240,0.4);
}

.legal-footer-note {
  font-size: 11px;
  color: rgba(245,245,240,0.3);
  padding-top: 20px;
  border-top: 0.5px solid var(--border);
}

.legal-footer-note strong {
  color: rgba(245,245,240,0.5);
  font-weight: 500;
}

/* ── Footer ── */
.footer {
  position: relative;
  z-index: 10;
  background: #040404;
  border-top: 0.5px solid var(--border);
  padding: 28px 40px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

.footer-location {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 12px;
  color: rgba(245,245,240,0.35);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

/* ── Responsive ── */

/* Use dynamic viewport height so sections fill screen correctly on
   mobile browsers where the address bar shrinks/grows */
.section, .section--hero, .section--showcase {
  min-height: 100dvh;
}

@media (max-width: 900px) {
  .nav { padding: 0 20px; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(16px);
    padding: 28px 24px;
    gap: 0;
    border-bottom: 0.5px solid var(--border);
    z-index: 99;
  }

  .nav-links.open li { border-bottom: 0.5px solid var(--border); }
  .nav-links.open a {
    display: block;
    padding: 16px 0;
    font-size: 16px;
  }

  .nav-burger { display: flex; }

  .section { padding: 90px 20px 60px; }
  .section--hero { padding-bottom: 48px; }

  .hero-title { font-size: clamp(52px, 14vw, 96px); }
  .hero-sub { font-size: 15px; }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px 28px;
  }
  .stat-divider { display: none; }

  .cards-grid { grid-template-columns: 1fr 1fr; }

  .section-inner--contact { grid-template-columns: 1fr; gap: 40px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px 180px 180px;
  }
  /* Reset all explicit placements for tablet */
  .gallery-grid .gallery-item:nth-child(n) { grid-column: auto; grid-row: auto; }
  /* Re-apply bento for 2 cols */
  .gallery-grid .gallery-item:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
  .gallery-grid .gallery-item:nth-child(2) { grid-column: 2; grid-row: 1; }
  .gallery-grid .gallery-item:nth-child(3) { grid-column: 2; grid-row: 2; }
  .gallery-grid .gallery-item:nth-child(4) { grid-column: 1 / span 2; grid-row: 3; }
  .gallery-grid .gallery-item:nth-child(5) { grid-column: 1; grid-row: 4; }
  .gallery-grid .gallery-item:nth-child(6) { grid-column: 2; grid-row: 4; }
  .gallery-grid .gallery-item:nth-child(7) { grid-column: 1; grid-row: 5; }
  .gallery-grid .gallery-item:nth-child(8) { grid-column: 2; grid-row: 5; }
  .gallery-grid .gallery-item:nth-child(9) { grid-column: 1 / span 2; grid-row: 6; }

  .gallery-cta { flex-direction: column; gap: 12px; text-align: center; }

  .showcase-title { font-size: clamp(44px, 11vw, 80px); }

  .footer { padding: 24px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .legal { padding: 48px 20px; }
  .legal-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-links { display: none; }
}

@media (max-width: 600px) {
  .nav { padding: 0 16px; }

  .section { padding: 80px 16px 48px; }

  .hero-title { font-size: clamp(44px, 16vw, 72px); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .hero-scroll-hint { display: none; }

  .section-title { font-size: clamp(36px, 9vw, 56px); margin-bottom: 36px; }

  .cards-grid { grid-template-columns: 1fr; }

  .step { gap: 16px; flex-wrap: wrap; }
  .step-num { font-size: 32px; min-width: auto; }
  .step-body p { max-width: 100%; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-grid .gallery-item:nth-child(n) { grid-column: 1; grid-row: auto; }
  .gallery-item { height: 200px; }

  .showcase-title { font-size: clamp(38px, 12vw, 60px); }
  .section--showcase { padding-bottom: 48px; }

  .contact-method { padding: 14px 16px; }

  .footer-copy { font-size: 11px; }
  .legal { padding: 40px 16px; }
  .legal-grid { gap: 20px; }
}
