:root {
  --white: #ffffff;
  --black: #0b0b0c;
  --ink: #121214;
  --muted: #6a6a70;
  --line: #d9d9de;
  --line-soft: #ebebef;
  --panel: #ffffff;
  --panel-dark: #111113;
  --text-dark: #f4f4f6;
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.45;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.page-bg {
  display: none;
}

.wrap {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid var(--line-soft);
}

.nav-wrap {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  border: 1px solid var(--line);
  background: #fff;
}

.brand-name {
  font-family: "Outfit", sans-serif;
  text-transform: lowercase;
  letter-spacing: 0.02em;
  font-weight: 600;
  font-size: 1rem;
}

.contact-pill {
  text-decoration: none;
  color: #fff;
  background: #121214;
  border: 1px solid #121214;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.48rem 0.86rem;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.contact-pill:hover {
  background: #ffffff;
  color: #121214;
  transform: translateY(-1px);
}

main {
  overflow: hidden;
}

.hero {
  text-align: center;
  padding: 5.6rem 0 2.2rem;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.66rem;
  font-weight: 700;
  color: #55565d;
}

h1,
h2,
h3 {
  font-family: "Outfit", sans-serif;
  margin: 0;
  letter-spacing: -0.03em;
}

h1 {
  margin-top: 0.85rem;
  font-size: clamp(2.25rem, 7.2vw, 5.35rem);
  line-height: 0.98;
  font-weight: 700;
}

.hero-copy {
  max-width: 760px;
  margin: 1.2rem auto 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.7vw, 1.19rem);
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.hero-actions {
  margin-top: 1.45rem;
  display: flex;
  justify-content: center;
  gap: 0.58rem;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.62rem 1.06rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background-color 180ms ease, color 180ms ease;
}

.btn-primary {
  background: #121214;
  border: 1px solid #121214;
  color: #fff;
}

.btn-ghost {
  background: #fff;
  border: 1px solid var(--line);
  color: #171719;
}

.btn-primary:hover {
  background: #232327;
}

.btn-ghost:hover {
  border-color: #babac1;
}

.hero-media {
  margin: 2.2rem 0 0;
  border-radius: calc(var(--radius) + 10px);
  overflow: hidden;
  border: 1px solid var(--line-soft);
}

.hero-media img {
  width: 100%;
  height: min(56vw, 620px);
  object-fit: cover;
  display: block;
  filter: grayscale(0.16) contrast(1.04);
}

.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 4.4rem 0;
}

.full-bleed-dark {
  background: var(--panel-dark);
  color: var(--text-dark);
}

.full-bleed-light {
  background: #f5f5f7;
  border-top: 1px solid #e7e7eb;
  border-bottom: 1px solid #e7e7eb;
}

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 1.3rem;
  align-items: center;
}

.feature-copy .eyebrow {
  color: #a9a9b2;
}

.feature-copy h2 {
  margin-top: 0.75rem;
  font-size: clamp(2rem, 4.2vw, 3.65rem);
  line-height: 1.03;
  max-width: 14ch;
}

.feature-copy p {
  margin: 0.95rem 0 0;
  max-width: 60ch;
  color: #bcbcc6;
  font-size: 1rem;
  line-height: 1.58;
  letter-spacing: -0.01em;
}

.feature-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.feature-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  filter: grayscale(0.2) contrast(1.05);
}

.feature-cards {
  margin-top: 1.6rem;
  margin-bottom: 2.3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: #fff;
}

.card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: grayscale(0.32) contrast(1.03);
}

.card-body {
  padding: 0.95rem;
}

.card h3 {
  font-size: 1.08rem;
  line-height: 1.2;
}

.card p {
  margin: 0.44rem 0 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.5;
  letter-spacing: -0.005em;
}

.projects-wrap {
  display: block;
}

.section-head h2 {
  margin-top: 0.68rem;
  font-size: clamp(1.9rem, 4.1vw, 3.2rem);
  line-height: 1.05;
  max-width: 18ch;
}

.projects-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.project-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}

.project-card img {
  width: 100%;
  height: 226px;
  object-fit: cover;
  display: block;
  filter: grayscale(0.24) contrast(1.04);
}

.project-body {
  padding: 0.98rem;
}

.project-body h3 {
  font-size: 1.14rem;
  line-height: 1.18;
}

.project-body p {
  margin: 0.5rem 0 0;
  color: #5f6066;
  font-size: 0.915rem;
  line-height: 1.49;
}

.contact-band {
  margin: 2.2rem auto 3.2rem;
}

.panel.contact {
  border-radius: var(--radius);
  background: #f7f7f9;
  border: 1px solid var(--line);
  text-align: center;
  padding: 1.55rem 1.1rem;
}

.contact h2 {
  font-size: clamp(1.55rem, 3vw, 2.28rem);
  line-height: 1.12;
}

.contact p,
address {
  margin: 0;
  color: #5f6066;
  line-height: 1.5;
  font-size: 0.94rem;
}

.line {
  margin-top: 0.68rem;
}

.contact a {
  color: #151518;
  text-decoration: none;
  border-bottom: 1px solid #bfbfc6;
}

.contact a:hover {
  border-bottom-color: #2a2a2f;
}

address {
  margin-top: 0.45rem;
  font-style: normal;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 1000px) {
  .feature-split,
  .feature-cards,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4.2rem;
  }

  .hero-media img,
  .feature-media img,
  .project-card img {
    height: min(64vw, 420px);
  }

  .full-bleed {
    padding: 3.3rem 0;
  }
}

@media (max-width: 680px) {
  .wrap {
    width: min(1120px, 94vw);
  }

  .nav-wrap {
    min-height: 56px;
  }

  .brand-logo {
    width: 33px;
    height: 33px;
    border-radius: 8px;
  }

  .brand-name {
    font-size: 0.93rem;
  }

  .contact-pill {
    font-size: 0.75rem;
    padding: 0.42rem 0.7rem;
  }

  h1 {
    font-size: clamp(1.98rem, 9vw, 2.68rem);
    line-height: 1.02;
  }

  .hero-copy {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: 0.9rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.42rem;
    margin-top: 1.05rem;
  }

  .btn {
    width: min(285px, 86vw);
    text-align: center;
    font-size: 0.81rem;
    padding: 0.56rem 0.9rem;
  }

  .hero {
    padding: 3.5rem 0 1.3rem;
  }

  .full-bleed {
    padding: 2.7rem 0;
  }

  .feature-copy h2,
  .section-head h2 {
    line-height: 1.04;
  }

  .card-body,
  .project-body {
    padding: 0.86rem;
  }

  .panel.contact {
    padding: 1.25rem 0.9rem;
  }
}
