:root {
  --ink: #10100f;
  --ink-soft: #24221f;
  --paper: #f3efe6;
  --paper-deep: #e3dacb;
  --white: #ffffff;
  --accent: #d4a64e;
  --accent-dark: #a97725;
  --muted: #716c63;
  --line: rgba(16,16,15,.14);
  --shadow: 0 22px 70px rgba(16,16,15,.18);
  --radius: 24px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, video, iframe { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }

.skip-link {
  position: fixed; left: 12px; top: -80px; z-index: 1000;
  padding: 12px 16px; background: var(--white); border-radius: 10px;
}
.skip-link:focus { top: 12px; }

.topbar {
  position: fixed; inset: 0 0 auto; z-index: 100;
  background: linear-gradient(to bottom, rgba(16,16,15,.88), rgba(16,16,15,.18), transparent);
  transition: background .25s ease, box-shadow .25s ease;
}
.topbar.scrolled { background: rgba(16,16,15,.94); box-shadow: 0 10px 30px rgba(0,0,0,.15); backdrop-filter: blur(16px); }
.nav { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 156px; height: auto; filter: drop-shadow(0 5px 14px rgba(0,0,0,.25)); }
.navlinks { display: flex; align-items: center; gap: 8px; color: var(--white); }
.navlinks > a { padding: 10px 12px; border-radius: 999px; font-weight: 750; font-size: .92rem; letter-spacing: .01em; }
.navlinks > a:hover, .navlinks > a[aria-current="page"] { background: rgba(255,255,255,.12); }
.navlinks .nav-cta { background: var(--accent); color: var(--ink); padding-inline: 18px; }
.navlinks .nav-cta:hover { background: #e3bb6b; }
.lang-switch { display: flex; gap: 4px; padding-left: 8px; }
.lang-switch button { border: 1px solid rgba(255,255,255,.24); background: transparent; color: var(--white); border-radius: 999px; padding: 7px 9px; cursor: pointer; font-size: .76rem; font-weight: 800; }
.lang-switch button.active { border-color: var(--accent); background: var(--accent); color: var(--ink); }
.menu-btn { display: none; border: 0; background: transparent; color: var(--white); font-size: 2rem; cursor: pointer; }

.hero {
  position: relative; min-height: 100svh; display: grid; align-items: end; overflow: hidden;
  color: var(--white); background: var(--ink);
}
.hero-media { position: absolute; inset: 0; }
.hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(8,8,7,.88) 0%, rgba(8,8,7,.54) 48%, rgba(8,8,7,.16) 78%),
              linear-gradient(to top, rgba(8,8,7,.78), transparent 55%);
}
.hero-inner { position: relative; z-index: 2; padding: 180px 0 92px; }
.hero-copy-wrap { max-width: 820px; }
.eyebrow, .kicker { font-size: .78rem; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow { color: #ead2a1; margin-bottom: 22px; }
.kicker { color: var(--accent); margin-bottom: 16px; }
.hero h1, .page-hero h1, .display {
  margin: 0; font-family: Georgia, "Times New Roman", serif;
  font-weight: 600; letter-spacing: -.055em; line-height: .94;
}
.hero h1 { max-width: 920px; font-size: clamp(4.1rem, 9vw, 8.5rem); }
.hero-copy { max-width: 680px; margin: 26px 0 0; font-size: clamp(1.05rem, 1.8vw, 1.35rem); color: rgba(255,255,255,.86); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 52px; padding: 13px 20px; border: 1px solid var(--ink); border-radius: 4px;
  font-weight: 900; text-transform: uppercase; letter-spacing: .09em; font-size: .78rem;
  background: transparent; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.btn.primary:hover { background: #e3bb6b; border-color: #e3bb6b; }
.btn.light { color: var(--white); border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.08); }
.btn.light:hover { background: var(--white); color: var(--ink); }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1px; max-width: 750px; margin-top: 54px;
  background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.18); border-radius: 20px; overflow: hidden;
}
.hero-stat { padding: 18px 20px; background: rgba(10,10,9,.48); backdrop-filter: blur(8px); }
.hero-stat strong { display: block; font-size: 1.03rem; }
.hero-stat span { color: rgba(255,255,255,.68); font-size: .82rem; }

section { padding: 112px 0; }
.section-head { max-width: 850px; margin-bottom: 52px; }
.display { font-size: clamp(3rem, 6.4vw, 6.7rem); }
.lead { margin: 24px 0 0; color: var(--muted); font-size: clamp(1.05rem, 1.7vw, 1.28rem); }
.dark { color: var(--white); background: var(--ink); }
.dark .lead { color: rgba(255,255,255,.68); }
.dark .kicker { color: #e3bb6b; }

.intro-grid { display: grid; grid-template-columns: .42fr 1fr; gap: 64px; align-items: start; }
.proof-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; }
.proof-card { position: relative; overflow: hidden; min-height: 520px; border-radius: var(--radius); box-shadow: var(--shadow); background: #292725; }
.proof-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.proof-card:hover img { transform: scale(1.035); }
.proof-card .caption { position: absolute; inset: auto 0 0; padding: 34px; color: var(--white); background: linear-gradient(transparent, rgba(8,8,7,.86)); }
.proof-card.small { min-height: 248px; }
.proof-stack { display: grid; gap: 24px; }
.caption span { display: block; color: #e3bb6b; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; font-size: .72rem; }
.caption strong { display: block; margin-top: 6px; font-size: 1.45rem; line-height: 1.18; }

.service-rail { display: grid; gap: 0; border-top: 1px solid rgba(255,255,255,.18); }
.service-row {
  display: grid; grid-template-columns: 90px 1fr 1.15fr 44px; gap: 26px; align-items: center;
  min-height: 150px; border-bottom: 1px solid rgba(255,255,255,.18); transition: background .22s ease, padding .22s ease;
}
.service-row:hover { background: rgba(255,255,255,.04); padding-inline: 18px; }
.service-row .num { color: var(--accent); font-weight: 900; font-size: 1.15rem; }
.service-row h3 { margin: 0; font-size: clamp(1.55rem, 3vw, 2.65rem); line-height: 1; text-transform: uppercase; }
.service-row p { margin: 0; color: rgba(255,255,255,.62); }
.service-row .arrow { font-size: 1.8rem; }

.media-wall { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.media-tile { position: relative; overflow: hidden; min-height: 260px; border-radius: 20px; background: #d9d2c6; cursor: zoom-in; border: 0; padding: 0; text-align: left; }
.media-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.media-tile:hover img { transform: scale(1.04); }
.media-tile:nth-child(1) { grid-column: span 7; min-height: 500px; }
.media-tile:nth-child(2) { grid-column: span 5; min-height: 500px; }
.media-tile:nth-child(3), .media-tile:nth-child(4), .media-tile:nth-child(5) { grid-column: span 4; }
.media-tile .media-label { position: absolute; inset: auto 16px 16px; color: var(--white); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; text-shadow: 0 2px 18px rgba(0,0,0,.85); }

.video-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.video-card { position: relative; border-radius: 22px; overflow: hidden; background: #1a1917; min-height: 420px; cursor: pointer; border: 0; padding: 0; color: var(--white); text-align: left; }
.video-card img { width: 100%; height: 100%; object-fit: cover; opacity: .82; transition: transform .55s ease, opacity .25s ease; }
.video-card:hover img { transform: scale(1.04); opacity: .68; }
.video-card::after { content: "▶"; position: absolute; left: 24px; top: 24px; display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: var(--accent); font-size: 1.05rem; box-shadow: 0 12px 30px rgba(0,0,0,.28); }
.video-card .caption { position: absolute; inset: auto 0 0; padding: 80px 26px 26px; background: linear-gradient(transparent, rgba(0,0,0,.86)); }

.process-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.process-card { border: 1px solid var(--line); padding: 32px; border-radius: 22px; background: rgba(255,255,255,.42); }
.process-card span { color: var(--accent); font-weight: 900; }
.process-card h3 { margin: 36px 0 12px; font-size: 1.35rem; text-transform: uppercase; }
.process-card p { margin: 0; color: var(--muted); }

.cta-panel { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; padding: 64px; border-radius: 18px; color: var(--white); background: linear-gradient(135deg, #191816, #30291d 58%, #6a4b1e); box-shadow: var(--shadow); }
.cta-panel .display { font-size: clamp(2.8rem, 5vw, 5.3rem); }
.cta-panel p { max-width: 700px; color: rgba(255,255,255,.7); }

.page-hero { padding: 190px 0 90px; color: var(--white); background: linear-gradient(125deg, rgba(8,8,7,.92), rgba(8,8,7,.62)), url("https://drive.google.com/thumbnail?id=1sXRyVdwIy9TCx7Y78aLaLS3r4BAKn4ni&sz=w1600") center/cover; }
.page-hero h1 { font-size: clamp(4rem, 9vw, 8.5rem); }
.page-hero .hero-copy { max-width: 720px; }

.service-showcase { display: grid; gap: 28px; }
.service-feature { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 480px; overflow: hidden; border-radius: 28px; background: var(--white); box-shadow: 0 18px 60px rgba(16,16,15,.1); }
.service-feature:nth-child(even) .service-feature-media { order: 2; }
.service-feature-media { min-height: 420px; background: #d6cfc3; }
.service-feature-media img { width: 100%; height: 100%; object-fit: cover; }
.service-feature-copy { padding: clamp(34px, 5vw, 64px); display: flex; flex-direction: column; justify-content: center; }
.service-feature-copy .num { color: var(--accent); font-weight: 900; letter-spacing: .12em; }
.service-feature-copy h2 { margin: 16px 0; font-size: clamp(2.3rem, 4vw, 4.8rem); line-height: .95; text-transform: uppercase; }
.service-feature-copy p { color: var(--muted); }
.service-feature-copy ul { padding-left: 1.1rem; color: var(--ink-soft); }

.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.filter-bar button { border: 1px solid var(--line); background: transparent; border-radius: 999px; padding: 10px 16px; cursor: pointer; font-weight: 850; }
.filter-bar button.active, .filter-bar button:hover { background: var(--ink); color: var(--white); }
.project-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.project-card { position: relative; min-height: 360px; border-radius: 20px; overflow: hidden; border: 0; padding: 0; cursor: zoom-in; background: #d9d2c6; text-align: left; }
.project-card.hidden { display: none; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.project-card:hover img { transform: scale(1.045); }
.project-card .caption { position: absolute; inset: auto 0 0; padding: 70px 22px 22px; color: var(--white); background: linear-gradient(transparent, rgba(0,0,0,.82)); }
.project-card.wide { grid-column: span 2; }
.project-card.tall { min-height: 520px; }
.project-card.video { cursor: pointer; }
.project-card.video::after { content: "▶"; position: absolute; top: 20px; left: 20px; width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--accent); }

.founder-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.founder-photo { min-height: 580px; border-radius: 28px; overflow: hidden; background: #d8d1c6; box-shadow: var(--shadow); }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.value-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.value-card { padding: 32px; border-radius: 20px; border: 1px solid rgba(255,255,255,.18); }
.value-card h3 { margin: 26px 0 10px; text-transform: uppercase; }
.value-card p { color: rgba(255,255,255,.62); }

.contact-grid-wide { display: grid; grid-template-columns: .8fr 1.2fr; gap: 58px; align-items: start; }
.contact-list { margin: 26px 0; font-size: 1.12rem; }
.contact-list a { display: inline-block; margin-bottom: 9px; font-weight: 850; }
.form { display: grid; gap: 12px; padding: clamp(26px, 5vw, 52px); border-radius: 28px; background: var(--white); box-shadow: var(--shadow); }
.form label { margin-top: 8px; font-weight: 850; }
.form input, .form select, .form textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; background: #fbfaf7; padding: 14px 15px; color: var(--ink); }
.form textarea { min-height: 150px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus { outline: 3px solid rgba(212,166,78,.28); border-color: var(--accent); }
.form-status { display: block; color: var(--muted); }
.form-status.success { color: #116329; }
.form-status.error { color: #a22216; }
.file-field { display: grid; gap: 7px; margin: 8px 0; }

.map-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 30px; align-items: stretch; }
.map-frame { width: 100%; min-height: 440px; border: 0; border-radius: 24px; filter: grayscale(.35) contrast(1.05); }

.footer { padding: 72px 0 30px; color: var(--white); background: #090908; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 34px; }
.footer img { width: 155px; }
.footer p { color: rgba(255,255,255,.56); max-width: 420px; }
.footer h4 { margin: 0 0 16px; text-transform: uppercase; letter-spacing: .08em; }
.footer a { display: block; margin: 8px 0; color: rgba(255,255,255,.72); }
.footer a:hover { color: var(--white); }
.copyright { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.48); font-size: .86rem; }
.mobile-actions { display: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

.lightbox { border: 0; padding: 0; background: transparent; width: min(1100px, calc(100% - 28px)); max-width: none; }
.lightbox::backdrop { background: rgba(0,0,0,.88); backdrop-filter: blur(6px); }
.lightbox-inner { position: relative; overflow: hidden; border-radius: 20px; background: #090908; color: var(--white); box-shadow: 0 30px 100px rgba(0,0,0,.5); }
.lightbox img { width: 100%; max-height: 82vh; object-fit: contain; background: #090908; }
.lightbox iframe { width: 100%; height: min(72vh, 720px); border: 0; }
.lightbox-close { position: absolute; z-index: 2; top: 12px; right: 12px; width: 44px; height: 44px; border: 0; border-radius: 50%; background: rgba(0,0,0,.7); color: white; font-size: 1.5rem; cursor: pointer; }
.lightbox-caption { padding: 16px 20px; }

@media (max-width: 980px) {
  .topbar.scrolled { backdrop-filter: none; }
  .menu-btn { display: block; }
  .navlinks { position: fixed; inset: 0; display: grid; place-content: center; gap: 10px; padding: 80px 24px; background: rgba(12,12,11,.98); transform: translateY(-105%); transition: transform .3s ease; }
  .navlinks.open { transform: none; }
  .navlinks > a { font-size: 1.35rem; text-align: center; }
  .lang-switch { justify-content: center; padding: 12px 0 0; }
  .intro-grid, .proof-grid, .founder-grid, .contact-grid-wide, .map-wrap { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 60px 1fr 36px; }
  .service-row p { grid-column: 2 / -1; padding-bottom: 28px; }
  .service-feature, .service-feature:nth-child(even) { grid-template-columns: 1fr; }
  .service-feature:nth-child(even) .service-feature-media { order: 0; }
  .project-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .video-grid, .process-grid, .value-grid { grid-template-columns: 1fr; }
  .cta-panel { grid-template-columns: 1fr; padding: 44px 30px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  :root { --shell: min(100% - 28px, 1180px); --radius: 20px; }
  .nav { min-height: 74px; }
  .brand img { width: 132px; }
  .hero-inner { padding: 140px 0 82px; }
  .hero h1 { font-size: clamp(3.6rem, 18vw, 6.2rem); }
  .hero-stats { grid-template-columns: 1fr; }
  section { padding: 82px 0; }
  .display { font-size: clamp(2.75rem, 14vw, 4.5rem); }
  .media-wall { grid-template-columns: 1fr; }
  .media-tile, .media-tile:nth-child(n) { grid-column: auto; min-height: 320px; }
  .service-row { grid-template-columns: 42px 1fr 28px; gap: 12px; min-height: 130px; }
  .service-row:hover { padding-inline: 8px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card.wide { grid-column: auto; }
  .project-card, .project-card.tall { min-height: 390px; }
  .founder-photo { min-height: 460px; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-actions { position: fixed; z-index: 90; inset: auto 12px 12px; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border-radius: 999px; background: var(--ink); box-shadow: 0 18px 50px rgba(0,0,0,.3); }
  .mobile-actions a { padding: 14px; color: white; text-align: center; font-weight: 900; }
  .mobile-actions a:first-child { background: var(--accent); color: var(--ink); }
  body { padding-bottom: 78px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
