:root {
  --ink: #0b0b0a;
  --ink-2: #111311;
  --charcoal: #181a18;
  --slate: #73706a;
  --stone: #f5f1e9;
  --stone-2: #ebe4d7;
  --paper: #fffdf8;
  --gold: #c79b48;
  --gold-2: #e2c077;
  --gold-3: #8a6429;
  --line: rgba(35, 31, 24, .12);
  --line-dark: rgba(255, 255, 255, .12);
  --shadow: 0 26px 80px rgba(0, 0, 0, .14);
  --radius: 26px;
  --radius-sm: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
::selection { background: rgba(199, 155, 72, .26); }

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 96px 0; }
.section.tight { padding: 64px 0; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.display, h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
  letter-spacing: -.04em;
  font-weight: 500;
}
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(3rem, 7vw, 6.8rem); }
h2 { font-size: clamp(2.35rem, 5vw, 4.6rem); }
h3 { font-size: clamp(1.45rem, 2.3vw, 2.2rem); }
p { color: rgba(11, 11, 10, .72); }
.lead { font-size: clamp(1.05rem, 1.9vw, 1.3rem); max-width: 760px; }
.muted { color: rgba(11, 11, 10, .64); }
.text-light { color: rgba(255, 255, 255, .74); }
.text-light p, .text-light .muted { color: rgba(255,255,255,.72); }
.gold { color: var(--gold-2); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-130%);
  background: var(--gold);
  color: var(--ink);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 9, 8, .82);
  border-bottom: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(18px);
}
.nav {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.logo { display: flex; align-items: center; width: 280px; min-width: 220px; }
.logo img { width: 100%; height: auto; }
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 34px);
  color: rgba(255,255,255,.83);
  font-size: .9rem;
  font-weight: 700;
}
.nav-links a { position: relative; padding: 32px 0; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--gold-2);
  transition: transform .28s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.menu-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  background: transparent;
  border-radius: 999px;
  padding: 10px 14px;
  min-width: 46px;
}
.menu-toggle span { display: block; width: 20px; height: 2px; background: #fff; margin: 4px 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(0,0,0,.13); }
.btn-primary { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #17130a; }
.btn-dark { background: #0d0e0d; color: #fff; border-color: rgba(255,255,255,.14); }
.btn-outline { color: #fff; border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.04); }
.btn-outline-dark { color: var(--ink); border-color: rgba(11,11,10,.18); background: transparent; }
.btn-small { min-height: 40px; padding: 10px 14px; font-size: .86rem; }
.arrow { font-size: 1.15em; line-height: 1; }

.hero {
  min-height: calc(100vh - 86px);
  position: relative;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background: #090909;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,5,4,.95) 0%, rgba(6,7,8,.76) 35%, rgba(6,7,8,.22) 74%, rgba(6,7,8,.74) 100%), url('/assets/hero-development.svg') center/cover no-repeat;
  transform: scale(1.02);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 210px;
  background: linear-gradient(0deg, rgba(8,8,7,.95), transparent);
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 48px;
  padding: 80px 0;
}
.hero-copy { max-width: 790px; }
.hero-copy p { color: rgba(255,255,255,.74); max-width: 665px; font-size: clamp(1.05rem, 1.7vw, 1.24rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 0; }
.hero-panel {
  align-self: end;
  justify-self: end;
  width: min(100%, 440px);
  padding: 26px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.07);
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
  backdrop-filter: blur(14px);
}
.hero-panel .label { color: var(--gold-2); text-transform: uppercase; letter-spacing: .16em; font-weight: 900; font-size: .74rem; margin-bottom: 20px; }
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; border-radius: 18px; border: 1px solid rgba(255,255,255,.1); }
.metric { background: rgba(0,0,0,.25); padding: 18px 16px; }
.metric strong { display: block; font-family: Georgia, serif; color: #fff; font-size: 1.6rem; line-height: 1; }
.metric span { display: block; margin-top: 8px; color: rgba(255,255,255,.62); font-size: .78rem; line-height: 1.35; }
.hero-note { margin: 22px 0 0; color: rgba(255,255,255,.68); font-size: .9rem; }

.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -62px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.trust-item { background: var(--paper); padding: 24px; }
.trust-item small { display: block; color: var(--gold); font-weight: 900; letter-spacing: .16em; text-transform: uppercase; font-size: .7rem; }
.trust-item strong { display: block; margin-top: 8px; font-size: 1.02rem; }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
  box-shadow: 0 20px 60px rgba(0,0,0,.06);
  overflow: hidden;
}
.service-card { padding: 30px; min-height: 285px; display: flex; flex-direction: column; justify-content: space-between; }
.icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(199,155,72,.3);
  border-radius: 18px;
  color: var(--gold);
  font-weight: 900;
  font-size: 1.42rem;
  background: rgba(199,155,72,.08);
}
.service-card h3 { font-size: 1.5rem; margin: 20px 0 12px; letter-spacing: -.03em; }
.service-card p { margin: 0; font-size: .96rem; }

.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 72px; align-items: start; }
.split.reverse { grid-template-columns: 1.12fr .88fr; }
.feature-list { display: grid; gap: 16px; }
.feature-row {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}
.feature-row h3 { font-size: 1.28rem; margin-bottom: 6px; }
.feature-row p { margin: 0; }

.dark-band {
  background: radial-gradient(circle at 16% 10%, rgba(199,155,72,.18), transparent 34%), linear-gradient(135deg, #080909, #161816 55%, #090909);
  color: #fff;
}
.projects-layout { display: grid; grid-template-columns: 320px 1fr; gap: 28px; align-items: stretch; }
.projects-intro { padding: 10px 22px 10px 0; }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.project-card {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
  display: flex;
  align-items: end;
  isolation: isolate;
}
.project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform .6s ease;
}
.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(0,0,0,.88), rgba(0,0,0,.18) 58%, rgba(0,0,0,.04));
}
.project-card:hover img { transform: scale(1.05); }
.project-body { padding: 24px; width: 100%; }
.project-body h3 { color: #fff; font-size: 1.55rem; margin-bottom: 8px; }
.project-body p { color: rgba(255,255,255,.72); margin-bottom: 18px; }
.project-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 7px 10px;
  color: rgba(255,255,255,.82);
  font-size: .76rem;
  font-weight: 800;
  background: rgba(255,255,255,.05);
}
.pill.gold-pill { color: #1b160c; background: var(--gold-2); border-color: var(--gold-2); }

.process-grid { display: grid; grid-template-columns: 360px 1fr; gap: 46px; align-items: center; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.timeline::before { content:""; position:absolute; top:30px; left:8%; right:8%; border-top:1px dashed rgba(199,155,72,.45); }
.step { position: relative; z-index: 1; }
.step-number {
  width: 60px; height: 60px; border-radius: 50%; display:grid; place-items:center;
  border: 1px solid rgba(226,192,119,.7); color: var(--gold-2); background: #0e0f0e; font-weight: 900; margin-bottom: 20px;
}
.step h3 { color: #fff; font-size: 1.35rem; margin-bottom: 10px; }
.step p { color: rgba(255,255,255,.68); font-size: .94rem; margin: 0; }

.statement { padding: 92px 0; background: var(--stone); }
.statement-box {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
  border-radius: 34px;
  padding: clamp(32px, 5vw, 62px);
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.statement h2 { margin-bottom: 0; }
.statement p { font-size: 1.08rem; }

.contact-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr .74fr;
  gap: 0;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: #fff;
}
.contact-copy { padding: 44px; background: var(--paper); }
.contact-form { padding: 44px; display: grid; gap: 14px; border-inline: 1px solid var(--line); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.field { display: grid; gap: 7px; }
.field label { font-weight: 800; font-size: .86rem; color: rgba(11,11,10,.78); }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid rgba(11,11,10,.16);
  border-radius: 14px;
  padding: 14px 14px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(199,155,72,.14); }
textarea { min-height: 132px; resize: vertical; }
.full { grid-column: 1 / -1; }
.checkbox { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; font-size: .88rem; color: rgba(11,11,10,.64); }
.checkbox input { margin-top: 4px; }
.honeypot { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form-status { min-height: 24px; font-size: .92rem; font-weight: 700; }
.form-status.success { color: #0b6b3a; }
.form-status.error { color: #9c2a1d; }
.contact-details { padding: 44px; background: #10110f; color: #fff; }
.contact-details p { color: rgba(255,255,255,.72); }
.detail { padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.detail small { display:block; color: var(--gold-2); font-weight:900; letter-spacing:.12em; text-transform:uppercase; font-size:.68rem; margin-bottom:5px; }
.detail a, .detail span { color: rgba(255,255,255,.86); }

.page-hero {
  background: radial-gradient(circle at 12% 20%, rgba(199,155,72,.2), transparent 32%), linear-gradient(135deg, #080909, #171915 65%, #0b0b0a);
  color: #fff;
  padding: 105px 0 80px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.page-hero p { color: rgba(255,255,255,.72); }
.breadcrumbs { color: rgba(255,255,255,.54); font-size: .86rem; margin-bottom: 28px; }
.breadcrumbs a { color: rgba(255,255,255,.82); }

.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.info-card { padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.info-card h3 { font-size: 1.42rem; }
.kv { display: grid; gap: 14px; margin-top: 20px; }
.kv div { display: grid; grid-template-columns: 165px 1fr; gap: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.kv dt { font-weight: 900; color: rgba(11,11,10,.56); }
.kv dd { margin: 0; font-weight: 800; }

.legal-content { max-width: 880px; }
.legal-content h2 { font-size: 2.15rem; margin-top: 54px; }
.legal-content h3 { font-size: 1.45rem; margin-top: 34px; }
.legal-content ul { padding-left: 1.25rem; color: rgba(11,11,10,.72); }
.legal-content li + li { margin-top: 8px; }
.notice-box { padding: 24px; border-radius: var(--radius-sm); background: var(--stone); border: 1px solid var(--line); }

.site-footer {
  background: #080909;
  color: #fff;
  padding: 58px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 1.1fr .7fr .7fr .8fr; gap: 36px; }
.footer-logo { width: 260px; margin-bottom: 22px; }
.footer-grid h3 { font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: .88rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 16px; }
.footer-grid p, .footer-grid a { color: rgba(255,255,255,.66); font-size: .94rem; }
.footer-links { display: grid; gap: 10px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display:flex; justify-content:space-between; gap:20px; align-items:center; margin-top: 42px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.5); font-size: .88rem; }
.social { display:flex; gap: 10px; }
.social a { width: 36px; height:36px; display:grid; place-items:center; border-radius:50%; border:1px solid rgba(255,255,255,.14); color: var(--gold-2); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .nav-cta { display: none; }
  .service-grid, .project-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-layout, .process-grid, .split, .split.reverse, .statement-box { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .contact-panel { grid-template-columns: 1fr; }
  .contact-form { border: 0; border-block: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { grid-template-columns: 1fr; align-items: end; }
  .hero-panel { justify-self: start; }
}
@media (max-width: 820px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 70px 0; }
  .nav { height: 76px; }
  .logo { width: 226px; min-width: 0; }
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 24px;
    background: rgba(9,9,8,.97);
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  body.menu-open .nav-links { display: flex; }
  .nav-links a { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-links a::after { display: none; }
  .hero, .hero-content { min-height: auto; }
  .hero-content { padding: 80px 0 118px; }
  .hero-panel { width: 100%; }
  .trust-strip { margin-top: -48px; }
  .trust-grid, .service-grid, .project-grid, .info-grid { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .kv div { grid-template-columns: 1fr; gap: 2px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .page-hero { padding: 82px 0 62px; }
}
@media (max-width: 560px) {
  .btn { width: 100%; }
  .hero-actions { width: 100%; }
  .project-card { min-height: 360px; }
  .timeline { grid-template-columns: 1fr; }
  .contact-copy, .contact-form, .contact-details { padding: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

.footer-email-list { display: grid; gap: 10px; margin-bottom: 16px; }
.footer-email-list p { margin: 0; }
.footer-email-list strong { color: rgba(255,255,255,.82); font-size: .82rem; }
