:root {
  color-scheme: light;
  --ink: #080808;
  --muted: #6d6a63;
  --paper: #f7f4ec;
  --white: #ffffff;
  --yellow: #f4c430;
  --yellow-soft: #fff3b7;
  --line: rgba(8, 8, 8, 0.14);
  --shadow: 0 24px 70px rgba(8, 8, 8, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 64px);
  background: rgba(247, 244, 236, 0.9);
  border-bottom: 1px solid rgba(8, 8, 8, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 210px;
}

.brand-mark {
  position: relative;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
}

.ear {
  position: absolute;
  top: 4px;
  width: 16px;
  height: 34px;
  background: var(--ink);
  border-radius: 92% 92% 24% 24%;
  transform-origin: bottom center;
}

.ear::after {
  content: "";
  position: absolute;
  inset: 8px 5px 8px;
  border-radius: inherit;
  background: rgba(251, 247, 241, 0.16);
}

.ear-left {
  left: 8px;
  transform: rotate(-20deg);
}

.ear-right {
  right: 8px;
  transform: rotate(20deg);
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 3px;
  width: 14px;
  height: 4px;
  border-radius: 999px;
  background: var(--yellow);
}

.brand-name,
.brand-subtitle {
  display: block;
  line-height: 1;
  text-transform: lowercase;
}

.brand-name {
  font-weight: 850;
  font-size: 1.18rem;
  letter-spacing: 0;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  margin-top: 5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(8, 8, 8, 0.72);
  font-weight: 700;
  font-size: 0.9rem;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta,
.button,
.contact-form button {
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta {
  padding: 12px 18px;
  color: var(--ink);
  background: var(--yellow);
}

.nav-cta:hover,
.button:hover,
.contact-form button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 130px clamp(20px, 6vw, 78px) 76px;
  background: var(--ink);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.72) 38%, rgba(0, 0, 0, 0.14) 72%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.02) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-weight: 850;
  line-height: 0.98;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3.1rem, 7.4vw, 6.3rem);
}

.hero-copy {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
}

.button.primary {
  color: var(--ink);
  background: var(--yellow);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-band div {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px clamp(20px, 4vw, 54px);
  background: var(--white);
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}

.metric {
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
  text-transform: lowercase;
}

.section,
.split-section,
.contact-section,
.about-section {
  padding: clamp(64px, 8vw, 104px) clamp(20px, 6vw, 78px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 32px;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2.1rem, 4.6vw, 4rem);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 230px;
  padding: 26px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 8px 8px 0 var(--yellow);
}

.service-icon {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
}

.service-card h3,
.work-copy h3,
.timeline h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
}

.service-card p,
.work-copy p,
.timeline p,
.contact-copy p,
.about-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(260px, 440px) minmax(320px, 720px);
  gap: clamp(32px, 7vw, 92px);
  align-items: center;
  background: var(--white);
}

.about-photo {
  min-height: 480px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow) 50%, var(--yellow-soft) 50%, var(--yellow-soft) 100%);
  box-shadow: 10px 10px 0 var(--ink);
}

.about-photo::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 2px dashed rgba(8, 8, 8, 0.38);
  border-radius: 6px;
}

.about-photo span {
  position: relative;
  z-index: 1;
  align-self: end;
  margin-bottom: 28px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  text-transform: lowercase;
}

.about-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 5.2vw, 4.8rem);
  line-height: 0.98;
  font-weight: 850;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.about-points span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-size: 0.9rem;
  font-weight: 850;
  text-transform: lowercase;
}

.split-section {
  background: var(--ink);
  color: var(--white);
}

.split-section .section-heading h2 {
  max-width: 900px;
}

.work-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) 1.5fr;
  gap: 20px;
  align-items: stretch;
}

.work-copy {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.work-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.work-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.work-list span {
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 20px;
  background: #111111;
  text-align: center;
  font-weight: 800;
}

.process {
  background: var(--paper);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.timeline article {
  padding: 28px;
  border-left: 6px solid var(--yellow);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(8, 8, 8, 0.06);
}

.timeline span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--ink);
  font-weight: 900;
  font-size: 0.84rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 560px);
  gap: clamp(32px, 8vw, 100px);
  align-items: start;
  background: var(--ink);
  color: var(--white);
}

.contact-copy p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-copy a {
  color: var(--yellow);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  border: 2px solid var(--yellow);
  box-shadow: 10px 10px 0 rgba(244, 196, 48, 0.36);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(8, 8, 8, 0.24);
  border-radius: 6px;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(8, 8, 8, 0.46);
}

.contact-form button {
  min-height: 50px;
  color: var(--ink);
  background: var(--yellow);
  font: inherit;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 22px;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.form-status.success {
  color: #1d7a3a;
}

.form-status.error {
  color: #b3261e;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 6vw, 78px);
  background: #100d0b;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .service-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-band,
  .work-panel,
  .contact-section,
  .about-section {
    grid-template-columns: 1fr;
  }

  .work-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
  }

  .brand {
    min-width: 0;
  }

  .nav-cta {
    padding: 11px 14px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 86vh;
    padding-top: 112px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.72) 55%, rgba(0, 0, 0, 0.28) 100%),
      linear-gradient(0deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.08) 48%);
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 17vw, 4.2rem);
  }

  .intro-band div {
    min-height: 104px;
  }

  .service-grid,
  .timeline,
  .work-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 210px;
  }

  .about-photo {
    min-height: 340px;
  }

  .service-icon {
    margin-bottom: 38px;
  }

  .site-footer {
    flex-direction: column;
  }
}
