:root {
  color-scheme: dark;
  --ink: #0b0c0d;
  --charcoal: #151719;
  --slate: #24282b;
  --steel: #7f878a;
  --mist: #f5f3ed;
  --soft: #c8c1b4;
  --brass: #b18a56;
  --line: rgba(245, 243, 237, 0.16);
  --panel: rgba(21, 23, 25, 0.88);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(245, 243, 237, 0.08);
  background: rgba(11, 12, 13, 0.68);
  backdrop-filter: blur(20px);
}

.brand-mark {
  display: grid;
  gap: 0;
  text-transform: uppercase;
}

.brand-mark span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  letter-spacing: 0.18em;
}

.brand-mark small {
  color: var(--brass);
  font-size: 0.66rem;
  letter-spacing: 0.38em;
}

.nav-links {
  display: flex;
  gap: clamp(16px, 2.4vw, 34px);
  color: var(--soft);
  font-size: 0.85rem;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--mist);
}

.hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px clamp(20px, 6vw, 82px) 72px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("assets/02_at_console_wide.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(11, 12, 13, 0.96) 0%, rgba(11, 12, 13, 0.78) 42%, rgba(11, 12, 13, 0.34) 100%),
    linear-gradient(0deg, rgba(11, 12, 13, 0.82) 0%, rgba(11, 12, 13, 0.05) 58%);
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.04;
}

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 9vw, 7.8rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.1rem, 5.2vw, 5rem);
}

h3 {
  margin-bottom: 14px;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--soft);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

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

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--brass);
  color: var(--ink);
}

.button.secondary {
  border-color: var(--line);
  color: var(--mist);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--mist);
}

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

.section-pad {
  padding: clamp(76px, 11vw, 150px) clamp(20px, 6vw, 82px);
}

.intro {
  background: var(--mist);
  color: var(--ink);
}

.intro .section-label {
  color: #8a673e;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.intro-grid p {
  max-width: 680px;
  color: #3d4144;
  font-size: clamp(1.05rem, 1.9vw, 1.3rem);
}

.philosophy {
  background:
    radial-gradient(circle at 80% 0%, rgba(177, 138, 86, 0.16), transparent 34%),
    var(--charcoal);
}

.section-heading {
  max-width: 980px;
  margin-bottom: clamp(34px, 6vw, 72px);
}

.statement-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.statement-grid article,
.service-card {
  min-height: 260px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--charcoal);
}

.statement-grid p,
.service-card p,
.process-copy p,
.about-copy p,
.contact p,
.credit-list p {
  color: var(--soft);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  padding: clamp(34px, 5vw, 64px) clamp(20px, 6vw, 82px);
  background: #101214;
  border-block: 1px solid var(--line);
}

.feature-band img {
  width: min(430px, 100%);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.feature-band div {
  max-width: 680px;
}

.services {
  background: var(--ink);
}

.process {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 90px);
  padding: clamp(76px, 11vw, 150px) clamp(20px, 6vw, 82px);
  background:
    linear-gradient(rgba(11, 12, 13, 0.86), rgba(11, 12, 13, 0.88)),
    url("assets/05_studio_rear_view.png") center / cover;
}

.process-copy {
  max-width: 620px;
}

.process-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  background: rgba(11, 12, 13, 0.54);
  box-shadow: var(--shadow);
}

.process-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 72px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  color: var(--mist);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.process-list li:last-child {
  border-bottom: 0;
}

.process-list span {
  color: var(--brass);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.image-row {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 0.95fr;
  gap: 1px;
  background: var(--line);
}

.image-row img {
  width: 100%;
  height: clamp(260px, 42vw, 520px);
  object-fit: cover;
}

.about {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(300px, 1fr);
  gap: clamp(30px, 7vw, 96px);
  align-items: center;
  background: var(--mist);
  color: var(--ink);
}

.about .section-label {
  color: #8a673e;
}

.about-image img {
  width: min(440px, 100%);
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.about-copy {
  max-width: 760px;
}

.about-copy p {
  color: #44484b;
}

.credits {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  background: var(--charcoal);
  border-top: 1px solid var(--line);
}

.credit-list {
  display: grid;
  gap: 18px;
  align-content: start;
}

.credit-list p {
  margin: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact {
  padding: clamp(86px, 11vw, 150px) clamp(20px, 6vw, 82px);
  background:
    linear-gradient(90deg, rgba(11, 12, 13, 0.92), rgba(11, 12, 13, 0.52)),
    url("assets/06_side_profile_working.png") center right / cover;
}

.contact-inner {
  width: min(760px, 100%);
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 22px;
  color: var(--soft);
  font-weight: 700;
}

.contact-details a {
  border-bottom: 1px solid rgba(245, 243, 237, 0.34);
  transition: border-color 180ms ease, color 180ms ease;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--mist);
  border-color: var(--brass);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  padding: 24px clamp(20px, 6vw, 82px);
  border-top: 1px solid var(--line);
  color: var(--steel);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    gap: 18px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 760px;
    align-items: end;
  }

  .hero-media {
    background-position: 62% center;
  }

  .intro-grid,
  .feature-band,
  .process,
  .about,
  .credits {
    grid-template-columns: 1fr;
  }

  .statement-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .statement-grid article,
  .service-card {
    min-height: auto;
  }

  .feature-band img,
  .about-image img {
    width: 100%;
    max-height: 560px;
  }

  .image-row {
    grid-template-columns: 1fr;
  }

  .image-row img {
    height: auto;
    max-height: none;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 16px 18px;
  }

  .hero {
    min-height: 700px;
    padding: 118px 18px 48px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(11, 12, 13, 0.98) 0%, rgba(11, 12, 13, 0.74) 100%),
      linear-gradient(0deg, rgba(11, 12, 13, 0.82) 0%, rgba(11, 12, 13, 0.12) 58%);
  }

  .button {
    width: 100%;
  }

  .section-pad,
  .process,
  .contact {
    padding-inline: 18px;
  }

  .process-list li {
    grid-template-columns: 48px 1fr;
    padding: 16px;
  }
}
