:root {
  color-scheme: dark;
  --ink: #f7f2e8;
  --muted: #c9bda9;
  --soft: #968a77;
  --line: rgba(247, 242, 232, 0.16);
  --line-strong: rgba(247, 242, 232, 0.28);
  --charcoal: #11100e;
  --black: #070706;
  --clay: #c4694b;
  --sage: #87956d;
  --brass: #d2aa62;
  --blue: #6fa7a5;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --font-display: "Inter Tight", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Avenir Next", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 16%, rgba(196, 105, 75, 0.18), transparent 28rem),
    radial-gradient(circle at 86% 20%, rgba(111, 167, 165, 0.16), transparent 30rem),
    linear-gradient(135deg, #070706 0%, #15120f 42%, #0c0d0b 100%);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  min-width: 320px;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(22px);
  background: rgba(7, 7, 6, 0.62);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 16px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 180ms ease, padding 180ms ease;
  z-index: 20;
}

.site-header.is-scrolled {
  background: rgba(7, 7, 6, 0.88);
  padding-block: 10px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  color: var(--black);
  display: inline-flex;
  font-family: Georgia, serif;
  font-size: 0.76rem;
  font-weight: 700;
  justify-content: center;
  min-width: 42px;
  padding-inline: 6px;
  width: 38px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: 0;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.92rem;
}

.site-nav a,
.mobile-nav a {
  color: var(--muted);
  transition: color 160ms ease;
}

.site-nav a:hover,
.mobile-nav a:hover {
  color: var(--ink);
}

.menu-button {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  display: none;
  height: 42px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 42px;
}

.menu-button span {
  background: currentColor;
  height: 2px;
  position: absolute;
  transition: transform 180ms ease;
  width: 18px;
}

.menu-button span:first-child {
  transform: translateY(-4px);
}

.menu-button span:last-child {
  transform: translateY(4px);
}

.menu-button.is-open span:first-child {
  transform: rotate(45deg);
}

.menu-button.is-open span:last-child {
  transform: rotate(-45deg);
}

.mobile-nav {
  background: rgba(7, 7, 6, 0.96);
  border-bottom: 1px solid var(--line);
  display: none;
  gap: 18px;
  left: 0;
  padding: 82px 24px 24px;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateY(-100%);
  transition: transform 200ms ease;
  z-index: 12;
}

.mobile-nav.is-open {
  transform: translateY(0);
}

.hero {
  min-height: 96vh;
  overflow: hidden;
  padding: clamp(112px, 16vh, 180px) clamp(18px, 4vw, 56px) 28px;
  position: relative;
}

.hero::after {
  background: linear-gradient(90deg, rgba(7, 7, 6, 0.92), rgba(7, 7, 6, 0.42) 52%, rgba(7, 7, 6, 0.08));
  content: "";
  inset: 0;
  position: absolute;
}

.hero-media {
  inset: 0;
  position: absolute;
}

.hero-media img {
  filter: saturate(0.9) contrast(1.02);
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3.5rem, 10vw, 8.8rem);
  margin-bottom: 24px;
  max-width: 10ch;
}

h2 {
  font-size: clamp(2rem, 5vw, 4.6rem);
  max-width: 12ch;
}

h3 {
  font-size: 1.28rem;
}

.hero-copy {
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  max-width: 580px;
}

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

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button.ghost {
  background: rgba(247, 242, 232, 0.08);
  border-color: var(--line-strong);
  color: var(--ink);
}

.hero-stats {
  border: 1px solid var(--line);
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  width: min(48vw, 720px);
  z-index: 2;
}

.hero-stats div {
  backdrop-filter: blur(18px);
  background: rgba(7, 7, 6, 0.46);
  min-height: 126px;
  padding: 20px;
}

.hero-stats div + div {
  border-left: 1px solid var(--line);
}

.hero-stats strong {
  display: block;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}

.hero-stats span {
  color: var(--muted);
  display: block;
  font-size: 0.88rem;
  margin-top: 10px;
}

.intro,
.section,
.quote-band,
.site-footer {
  padding: clamp(70px, 10vw, 128px) clamp(18px, 4vw, 56px);
}

.intro p {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 4vw, 4rem);
  line-height: 1.08;
  margin: 0 auto;
  max-width: 1180px;
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto 34px;
  max-width: 1240px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.project-grid,
.service-grid,
.timeline,
.contact-section {
  margin-inline: auto;
  max-width: 1240px;
}

.project-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1.35fr 0.85fr;
}

.project-card {
  aspect-ratio: 1 / 1;
  background: #1c1914;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.project-card.feature {
  aspect-ratio: auto;
  grid-row: span 2;
}

.project-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease, filter 450ms ease;
  width: 100%;
}

.project-card:hover img {
  filter: brightness(0.76);
  transform: scale(1.045);
}

.project-overlay {
  background: linear-gradient(transparent, rgba(7, 7, 6, 0.9));
  bottom: 0;
  left: 0;
  padding: clamp(20px, 4vw, 38px);
  position: absolute;
  right: 0;
}

.project-overlay span {
  color: var(--brass);
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.project-overlay h3 {
  margin-bottom: 8px;
}

.project-overlay p {
  color: var(--muted);
  margin-bottom: 0;
  max-width: 420px;
}

.services {
  background: rgba(247, 242, 232, 0.035);
  border-block: 1px solid var(--line);
}

.service-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid article {
  background: rgba(7, 7, 6, 0.38);
  border: 1px solid var(--line);
  min-height: 310px;
  padding: 26px;
  transition: background 180ms ease, transform 180ms ease;
}

.service-grid article:hover {
  background: rgba(196, 105, 75, 0.12);
  transform: translateY(-3px);
}

.service-number,
.timeline span {
  color: var(--blue);
  display: inline-block;
  font-family: Georgia, serif;
  font-size: 2rem;
  margin-bottom: 42px;
}

.service-grid p,
.timeline p,
.contact-copy p {
  color: var(--muted);
}

.quote-band {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.6fr);
  margin-inline: auto;
  max-width: 1352px;
}

.quote-band > div {
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 6vw, 76px);
}

blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 5.2rem);
  line-height: 1.02;
  margin: 0 0 24px;
}

cite {
  color: var(--muted);
  font-style: normal;
}

.quote-band img {
  border-radius: var(--radius);
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  width: 100%;
}

.timeline {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline article {
  border-right: 1px solid var(--line);
  padding: 28px 24px 0 0;
}

.timeline article:last-child {
  border-right: 0;
}

.timeline span {
  color: var(--clay);
}

.contact-section {
  align-items: start;
  display: grid;
  gap: clamp(28px, 6vw, 80px);
  grid-template-columns: 0.8fr 1fr;
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.contact-copy h2 {
  margin-bottom: 20px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 30px;
}

.contact-details a {
  color: var(--brass);
  font-weight: 800;
}

.contact-form {
  background: rgba(247, 242, 232, 0.06);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 38px);
}

.contact-form label {
  color: var(--muted);
  display: grid;
  font-size: 0.86rem;
  font-weight: 800;
  gap: 8px;
  margin-bottom: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(7, 7, 6, 0.62);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--ink);
  min-height: 48px;
  outline: none;
  padding: 12px 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
  width: 100%;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 4px rgba(210, 170, 98, 0.14);
}

.contact-form .button {
  width: 100%;
}

.form-status {
  color: var(--sage);
  margin: 14px 0 0;
  min-height: 1.5em;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding-block: 28px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding-bottom: 0;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(7, 7, 6, 0.74), rgba(7, 7, 6, 0.92));
  }

  .hero-content {
    padding-bottom: 44px;
  }

  .hero-stats {
    margin-top: 18px;
    position: relative;
    right: auto;
    width: 100%;
  }

  .section-heading,
  .project-grid,
  .service-grid,
  .quote-band,
  .timeline,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    display: block;
  }

  .section-heading h2 {
    max-width: 14ch;
  }

  .project-card.feature {
    aspect-ratio: 1 / 1.12;
    grid-row: auto;
  }

  .service-grid article {
    min-height: 230px;
  }

  .timeline article {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    padding: 24px 0;
  }

  .contact-copy {
    position: static;
  }
}

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

  .menu-button,
  .mobile-nav {
    display: flex;
  }

  .mobile-nav {
    flex-direction: column;
  }

  h1 {
    font-size: clamp(3.2rem, 17vw, 5.8rem);
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .hero-stats div {
    min-height: auto;
  }

  .intro,
  .section,
  .quote-band,
  .site-footer {
    padding-block: 58px;
  }

  .quote-band img {
    min-height: 320px;
  }

  .site-footer {
    display: block;
  }

  .site-footer p + p {
    margin-top: 8px;
  }
}
