/* ============ Base ============ */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #060606;
  --bg-2: #0a0a0a;
  --text: #f2f2f2;
  --muted: rgba(255,255,255,0.7);
  --border: rgba(255,255,255,0.1);
}
html, body { background: var(--bg); color: var(--text); }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

.display { font-family: 'Bebas Neue', 'Oswald', sans-serif; letter-spacing: 0.02em; line-height: 0.92; }
.chrome-text {
  background: linear-gradient(180deg, #ffffff 0%, #d0d0d0 45%, #8a8a8a 55%, #ffffff 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  display: block;
}
.muted { color: var(--muted); }
.small { font-size: 12px; }
.tiny { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.14em; text-transform: uppercase; font-family: 'Oswald', sans-serif; }
.center { text-align: center; }

.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.eyebrow .line { display: inline-block; height: 1px; width: 40px; background: rgba(255,255,255,0.5); }
.center-eyebrow { justify-content: center; }
.lead { color: var(--muted); font-size: 17px; margin-top: 20px; max-width: 620px; }

/* ============ Buttons ============ */
.btn-chrome {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  font-family: 'Oswald', sans-serif; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; font-size: 13px;
  color: #0a0a0a;
  background: linear-gradient(180deg, #f7f7f7 0%, #cfcfcf 50%, #9a9a9a 51%, #e6e6e6 100%);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.6);
  white-space: nowrap;
}
.btn-chrome:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 12px 30px rgba(200,200,200,0.25), inset 0 1px 0 rgba(255,255,255,0.7); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px;
  font-family: 'Oswald', sans-serif; letter-spacing: 0.14em; text-transform: uppercase;
  font-size: 13px; font-weight: 600;
  color: #f2f2f2;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 2px;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.6); }

/* ============ Preloader ============ */
#preloader {
  position: fixed; inset: 0; z-index: 999;
  display: flex; align-items: center; justify-content: center;
  background: #060606;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; }
@keyframes wheel-spin { to { transform: rotate(720deg); } }
.wheel-spin { animation: wheel-spin 1.6s cubic-bezier(0.7,0,0.3,1) infinite; }

/* ============ Header ============ */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 16px 0;
  transition: background 0.5s ease, padding 0.5s ease, border-color 0.5s ease;
  border-bottom: 1px solid transparent;
}
#header.scrolled { background: rgba(0,0,0,0.8); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 8px 0; border-bottom-color: var(--border); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand img { height: 56px; width: auto; object-fit: contain; }
.nav-desktop { display: none; gap: 36px; }
.nav-desktop a { font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.8); position: relative; }
.nav-desktop a::after { content: ''; position: absolute; left: 0; bottom: -8px; height: 1px; width: 0; background: #fff; transition: width 0.3s ease; }
.nav-desktop a:hover { color: #fff; }
.nav-desktop a:hover::after { width: 100%; }
.nav-cta { display: none; align-items: center; gap: 16px; }
.phone-link { display: flex; align-items: center; gap: 8px; font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 0.14em; color: rgba(255,255,255,0.8); }
.phone-link:hover { color: #fff; }
.menu-toggle { display: flex; padding: 8px; color: #fff; }
@media (min-width: 1024px) {
  .nav-desktop, .nav-cta { display: flex; }
  .menu-toggle { display: none; }
}
#mobile-menu {
  display: none;
  padding: 24px;
  background: rgba(0,0,0,0.95); border-top: 1px solid var(--border);
  flex-direction: column; gap: 20px;
}
#mobile-menu.open { display: flex; }
#mobile-menu a { font-family: 'Oswald', sans-serif; font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.85); }

/* ============ Hero ============ */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh;
  background: radial-gradient(1200px 600px at 50% -10%, rgba(180,180,180,0.08), transparent 60%), #060606;
  padding: 160px 0 100px;
}
.hero-wheel-right { position: absolute; right: -15%; top: 50%; transform: translateY(-50%); width: 90vw; max-width: 900px; aspect-ratio: 1/1; opacity: 0.28; pointer-events: none; }
.hero-wheel-right img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; -webkit-mask-image: radial-gradient(circle, black 60%, transparent 72%); mask-image: radial-gradient(circle, black 60%, transparent 72%); }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; pointer-events: none; }
.hero-slide.active { opacity: 1; }
.hero-wheel-left { position: absolute; left: -10%; top: 10%; width: 45vw; max-width: 520px; aspect-ratio: 1/1; opacity: 0.4; }
.hero-wheel-left img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; -webkit-mask-image: radial-gradient(circle, black 55%, transparent 70%); mask-image: radial-gradient(circle, black 55%, transparent 70%); }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.spin-slow { animation: spin-slow 40s linear infinite; width: 100%; height: 100%; }
.spin-slower { animation: spin-slow 90s linear infinite; width: 100%; height: 100%; }
.hero-vignette-top { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent, rgba(0,0,0,1)); pointer-events: none; }
.hero-vignette-left { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,0.6), transparent); pointer-events: none; }
.hero-content { position: relative; z-index: 2; min-height: calc(100vh - 260px); display: flex; flex-direction: column; justify-content: center; }
.hero-text { display: none; }
.hero-text.active { display: block; animation: fadeInUp 0.9s ease forwards; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-text .display { font-size: 52px; }
@media (min-width: 768px) { .hero-text .display { font-size: 92px; } }
@media (min-width: 1024px) { .hero-text .display { font-size: 112px; } }
.hero-accent { display: block; color: rgba(255,255,255,0.6); font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.08em; font-size: 22px; margin-top: 16px; }
@media (min-width: 768px) { .hero-accent { font-size: 30px; } }
.hero-sub { max-width: 560px; margin-top: 32px; color: rgba(255,255,255,0.7); font-size: 17px; }
.hero-buttons { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 16px; }
.hero-indicators { position: absolute; bottom: -80px; left: 0; display: flex; gap: 12px; }
.hero-indicators button { width: 20px; height: 2px; background: rgba(255,255,255,0.3); transition: width 0.3s ease, background 0.3s ease; }
.hero-indicators button.active { width: 40px; background: #fff; }
.hero-badges { position: absolute; bottom: -70px; right: 0; display: none; align-items: center; gap: 24px; font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.hero-badges .dot { display: inline-block; width: 1px; height: 12px; background: rgba(255,255,255,0.2); }
@media (min-width: 768px) { .hero-badges { display: flex; } }

/* Grain */
.grain::before { content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.06; mix-blend-mode: overlay; background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>"); }

/* ============ Trust Strip ============ */
.trust { padding: 32px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-2); }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item .check { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(to bottom, #fff, #a3a3a3); color: #000; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 14px; }
.trust-item span:last-child { font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.8); }

/* ============ Sections ============ */
.section { padding: 96px 0; position: relative; }
@media (min-width: 768px) { .section { padding: 128px 0; } }
.section-dark { background: radial-gradient(1200px 600px at 50% -10%, rgba(180,180,180,0.08), transparent 60%), #060606; }
.section-darker { background: #0a0a0a; }
.section-head { max-width: 640px; }
.section-head .display { font-size: 48px; }
@media (min-width: 768px) { .section-head .display { font-size: 80px; } }

.grid-12 { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 768px) { .grid-12 { grid-template-columns: repeat(12, 1fr); gap: 48px; } .col-5 { grid-column: span 5; } .col-6 { grid-column: span 6; } .col-7 { grid-column: span 7; } .col-4 { grid-column: span 4; } .col-3 { grid-column: span 3; } }
.align-end { align-items: end; }
.align-center { align-items: center; }
.order-1 { order: 1; }
.order-2 { order: 2; }
@media (min-width: 768px) { .order-1 { order: 1; } .order-2 { order: 2; } }

/* ============ Videos ============ */
.video-grid { margin-top: 56px; display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .video-grid { grid-template-columns: repeat(3, 1fr); } }
.video-card { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 2px; border: 1px solid rgba(200,200,200,0.15); text-align: left; transition: transform 0.5s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.5s ease; }
.video-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0,0,0,0.6); }
.video-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.video-card:hover img { transform: scale(1.1); }
.video-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0.4), transparent); }
.play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.4); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 24px; transition: transform 0.3s ease; }
.video-card:hover .play-btn { transform: translate(-50%, -50%) scale(1.1); }
.video-caption { position: absolute; bottom: 24px; left: 24px; right: 24px; }
.video-caption span { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 0.14em; color: rgba(255,255,255,0.6); }
.video-caption h3 { font-family: 'Bebas Neue', sans-serif; font-size: 30px; margin-top: 4px; }

/* ============ Why Choose ============ */
.glass { background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.08); border-radius: 2px; }
.why-grid { margin-top: 64px; display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card { padding: 32px; position: relative; overflow: hidden; transition: transform 0.5s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.5s ease; }
.why-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0,0,0,0.6); }
.why-card::before { content: ''; position: absolute; top: -60px; right: -60px; width: 160px; height: 160px; border-radius: 50%; background: rgba(255,255,255,0.05); filter: blur(30px); }
.icon-chrome { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(to bottom, #fff, #7a7a7a); color: #000; display: flex; align-items: center; justify-content: center; font-size: 22px; box-shadow: 0 8px 20px rgba(0,0,0,0.4); position: relative; }
.why-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 30px; margin-top: 32px; position: relative; }
.why-card p { color: var(--muted); margin-top: 16px; position: relative; }
.card-footer { margin-top: 32px; display: flex; align-items: center; justify-content: space-between; position: relative; }
.card-footer span { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 0.14em; color: rgba(255,255,255,0.4); }
.card-footer .rule { width: 96px; height: 1px; background: rgba(255,255,255,0.2); }

/* ============ Diamond Cut ============ */
.diamond-section { overflow: hidden; }
.diamond-bg-wheel { position: absolute; left: -10%; top: 50%; transform: translateY(-50%); width: 60vw; max-width: 720px; aspect-ratio: 1/1; opacity: 0.15; pointer-events: none; }
.diamond-bg-wheel img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; -webkit-mask-image: radial-gradient(circle, black 55%, transparent 72%); mask-image: radial-gradient(circle, black 55%, transparent 72%); }
.diamond-img { position: relative; aspect-ratio: 4/5; border-radius: 2px; overflow: hidden; border: 1px solid rgba(200,200,200,0.15); }
.diamond-img img { width: 100%; height: 100%; object-fit: cover; }
.diamond-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,1), transparent, transparent); }
.diamond-img-caption { position: absolute; bottom: 24px; left: 24px; right: 24px; z-index: 1; }
.diamond-img-caption span { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.diamond-img-caption p { font-family: 'Bebas Neue', sans-serif; font-size: 24px; margin-top: 4px; }
.check-list { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,0.85); }
.check-list .check { flex-shrink: 0; margin-top: 2px; width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(to bottom, #fff, #7a7a7a); color: #000; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 12px; }

/* ============ Services ============ */
.services-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.services-head .display { font-size: 48px; }
@media (min-width: 768px) { .services-head .display { font-size: 80px; } }
.services-head .muted { max-width: 320px; }
.services-grid { margin-top: 64px; display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card { position: relative; aspect-ratio: 3/4; overflow: hidden; border-radius: 2px; border: 1px solid rgba(200,200,200,0.15); transition: transform 0.5s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.5s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0,0,0,0.6); }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.service-card:hover img { transform: scale(1.1); }
.service-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0.5), rgba(0,0,0,0.1)); transition: background 0.5s ease; }
.service-card:hover .service-overlay { background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.8), rgba(0,0,0,0.5)); }
.service-content { position: relative; height: 100%; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; }
.service-content .num { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 0.14em; color: rgba(255,255,255,0.5); }
.service-content h3 { font-family: 'Bebas Neue', sans-serif; font-size: 30px; margin-top: 8px; }
.service-content p { color: var(--muted); margin-top: 12px; max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.5s ease, opacity 0.5s ease; }
.service-card:hover .service-content p { max-height: 120px; opacity: 1; }
.learn-more { display: flex; align-items: center; gap: 8px; margin-top: 20px; font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.learn-more .arrow { transition: transform 0.3s ease; }
.service-card:hover .learn-more .arrow { transform: translateX(4px); }

/* ============ Marquee ============ */
.marquee-strip { padding: 40px 0; background: #000; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.marquee { display: flex; overflow: hidden; white-space: nowrap; }
.marquee-track { display: flex; gap: 48px; animation: marquee 35s linear infinite; font-family: 'Bebas Neue', sans-serif; font-size: 48px; }
@media (min-width: 768px) { .marquee-track { font-size: 72px; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { display: flex; align-items: center; gap: 48px; }
.marquee-item .m-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.4); }
.marquee-item .faded { color: rgba(255,255,255,0.2); -webkit-text-fill-color: rgba(255,255,255,0.2); background: none; }

/* ============ About ============ */
.about-images { position: relative; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.about-img { aspect-ratio: 3/4; overflow: hidden; border-radius: 2px; border: 1px solid rgba(200,200,200,0.15); }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img.shifted { margin-top: 40px; }
.about-badge { position: absolute; bottom: -24px; right: -24px; padding: 20px; background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.08); }
.about-badge .years { font-family: 'Bebas Neue', sans-serif; font-size: 36px; }
.about-badge .years-label { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ============ Reviews ============ */
.reviews-grid { margin-top: 56px; display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
.review-card { padding: 32px; position: relative; overflow: hidden; transition: transform 0.5s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.5s ease; }
.review-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0,0,0,0.6); }
.stars { color: #fff; letter-spacing: 0.2em; font-size: 14px; }
.review-card p { color: rgba(255,255,255,0.8); font-size: 17px; margin-top: 20px; line-height: 1.6; }
.review-author { margin-top: 24px; display: flex; align-items: center; gap: 12px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(to bottom, #e5e5e5, #737373); color: #000; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.review-author .name { font-family: 'Oswald', sans-serif; font-size: 14px; letter-spacing: 0.08em; }
.review-author .role { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ============ CTA ============ */
.cta-section { position: relative; padding: 96px 0; overflow: hidden; background: #000; }
@media (min-width: 768px) { .cta-section { padding: 128px 0; } }
.cta-bg-wheel { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.cta-bg-wheel > div { width: 90vw; max-width: 900px; aspect-ratio: 1/1; opacity: 0.15; }
.cta-bg-wheel img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; -webkit-mask-image: radial-gradient(circle, black 55%, transparent 72%); mask-image: radial-gradient(circle, black 55%, transparent 72%); }
.cta-veil { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.5), rgba(0,0,0,1)); }
.cta-section .container { position: relative; max-width: 720px; }
.huge { font-size: 60px; margin-top: 24px; }
@media (min-width: 768px) { .huge { font-size: 96px; } }

/* ============ Contact ============ */
.contact-info { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.contact-row { display: flex; align-items: flex-start; gap: 16px; }
.icon-circle { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.8); }
.contact-row .label { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.contact-row a, .contact-row span:last-child { color: rgba(255,255,255,0.9); }
.contact-row a:hover { color: #fff; }
.form { padding: 24px; }
@media (min-width: 768px) { .form { padding: 40px; } }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .form-grid { grid-template-columns: repeat(2, 1fr); } .field.full { grid-column: span 2; } }
.field label { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.field input, .field textarea { width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding: 12px 0; color: #fff; font-family: inherit; font-size: 15px; outline: none; margin-top: 8px; resize: none; transition: border-color 0.3s ease; }
.field input:focus, .field textarea:focus { border-bottom-color: #fff; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-footer { margin-top: 32px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.form-message { margin-top: 20px; color: #a3f7bf; font-size: 14px; opacity: 0; transition: opacity 0.3s ease; }
.form-message.show { opacity: 1; }

/* ============ Footer ============ */
footer { background: #000; border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer-logo { height: 64px; }
footer .col-5 p { margin-top: 24px; color: rgba(255,255,255,0.6); max-width: 400px; }
.socials { margin-top: 24px; display: flex; gap: 12px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: color 0.3s ease, border-color 0.3s ease; }
.socials a:hover { color: #fff; border-color: #fff; }
footer h4 { font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-bottom: 20px; }
footer ul { display: flex; flex-direction: column; gap: 12px; color: rgba(255,255,255,0.7); }
footer ul a:hover { color: #fff; }
.footer-bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: rgba(255,255,255,0.5); font-size: 14px; }

/* ============ Video Modal ============ */
.video-modal { position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,0.9); backdrop-filter: blur(10px); display: none; align-items: center; justify-content: center; padding: 20px; }
.video-modal.open { display: flex; }
.video-close { position: absolute; top: 24px; right: 24px; color: #fff; font-size: 24px; padding: 8px; transition: transform 0.3s ease; }
.video-close:hover { transform: rotate(90deg); }
.video-wrap { width: 100%; max-width: 1000px; aspect-ratio: 16/9; }
.video-wrap iframe { width: 100%; height: 100%; border: none; }

/* ============ Reveal ============ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #7a7a7a, #2a2a2a); border-radius: 4px; }
::selection { background: rgba(220,220,220,0.35); color: #fff; }

html { scroll-behavior: smooth; }

/* ============ Before / After Slider ============ */
.ba-wrap { margin-top: 56px; }
.ba-slider { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; border-radius: 2px; border: 1px solid rgba(200,200,200,0.15); user-select: none; cursor: ew-resize; background: #000; }
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; -webkit-user-drag: none; }
.ba-after { z-index: 1; }
.ba-before-wrap { position: absolute; inset: 0; z-index: 2; overflow: hidden; clip-path: inset(0 50% 0 0); will-change: clip-path; }
.ba-before { filter: saturate(0.85) brightness(0.9); }
.ba-label { position: absolute; top: 20px; padding: 6px 12px; font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; z-index: 4; }
.ba-label-before { left: 20px; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.2); color: #fff; }
.ba-label-after { right: 20px; background: #fff; color: #000; }
.ba-divider { position: absolute; top: 0; bottom: 0; width: 2px; background: #fff; z-index: 3; left: 50%; transform: translateX(-1px); box-shadow: 0 0 20px rgba(255,255,255,0.6); pointer-events: none; }
.ba-handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(to bottom, #fff, #a3a3a3); color: #000; display: flex; align-items: center; justify-content: center; z-index: 4; box-shadow: 0 10px 30px rgba(0,0,0,0.5); cursor: ew-resize; }
.ba-vignette { position: absolute; inset: 0; z-index: 3; pointer-events: none; background: linear-gradient(to top, rgba(0,0,0,0.4), transparent, rgba(0,0,0,0.2)); }
.ba-hint { text-align: center; margin-top: 20px; font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 0.2em; color: rgba(255,255,255,0.5); text-transform: uppercase; }
