:root {
  --page: #d4d4d0;
  --paper: #f6f5f1;
  --ink: #111111;
  --muted: #5e5e5a;
  --line: rgba(17, 17, 17, 0.16);
  --black: #050505;
  --white: #ffffff;
  --warm: #b8a88d;
  --charcoal: #232321;
  --header-height: 124px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: flex;
  width: 100%;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #000000;
  padding: 6px clamp(20px, 5vw, 72px);
  color: var(--white);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-width: 0;
  min-height: 0;
}

.logo-image {
  display: block;
  width: clamp(98px, 8.8vw, 132px);
  height: auto;
  image-rendering: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  border-bottom: 1px solid transparent;
  padding: 8px 0;
  transition: border-color 160ms ease, opacity 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--white);
}

.nav-quote {
  border: 1px solid rgba(255, 255, 255, 0.65) !important;
  padding: 10px 18px !important;
}

.nav-quote:hover,
.nav-quote:focus-visible {
  background: var(--white);
  color: var(--black);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

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

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

main {
  padding-top: var(--header-height);
}

.section-frame {
  margin: 0 clamp(12px, 2.2vw, 28px);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.34) 48%, rgba(0, 0, 0, 0.14)),
    url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=2200&q=85") center / cover;
  transform: scale(1.01);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(820px, 92%);
  min-height: calc(100svh - var(--header-height));
  flex-direction: column;
  justify-content: center;
  padding: clamp(72px, 10vw, 150px) clamp(22px, 6vw, 96px);
}

.eyebrow {
  margin: 0 0 14px;
  color: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.08;
}

h1 {
  max-width: 770px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7.8vw, 90px);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 5vw, 62px);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 34px);
}

.hero p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions,
.portfolio-content .button {
  margin-top: 6px;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  padding: 12px 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button-light {
  background: var(--white);
  color: var(--black);
}

.button-light:hover,
.button-light:focus-visible {
  background: transparent;
  color: var(--white);
}

.button-ghost {
  color: var(--white);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: var(--white);
  color: var(--black);
}

.button-dark {
  width: fit-content;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
}

.button-dark:hover,
.button-dark:focus-visible {
  background: transparent;
  color: var(--black);
}

.section-pad {
  padding: clamp(78px, 10vw, 136px) clamp(20px, 6vw, 86px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(36px, 7vw, 98px);
  align-items: start;
}

.intro-grid .eyebrow,
.section-heading .eyebrow,
.feature-panel .eyebrow,
.portfolio-content .eyebrow,
.contact-aside .eyebrow {
  color: var(--muted);
}

.intro-copy {
  max-width: 690px;
  color: var(--charcoal);
  font-size: clamp(17px, 2vw, 21px);
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.feature-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  min-height: 560px;
  margin: 0 clamp(12px, 2.2vw, 28px);
  background: var(--paper);
}

.feature-image,
.service-photo {
  min-height: 420px;
  background-position: center;
  background-size: cover;
}

.feature-image-one {
  background-image: url("https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=1500&q=85");
}

.feature-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 7vw, 84px);
}

.feature-panel p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(36px, 5vw, 64px);
}

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

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

.service-card {
  display: flex;
  min-height: 100%;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--paper);
}

.service-photo {
  aspect-ratio: 4 / 3;
  min-height: 250px;
  min-width: 0;
}

.service-photo-one {
  background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1200&q=85");
}

.service-photo-two {
  background-image: url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1200&q=85");
}

.service-photo-three {
  background-image: url("https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=1200&q=85");
}

.service-copy {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  padding: 28px;
}

.service-copy span,
.process-grid span {
  margin-bottom: 22px;
  color: var(--warm);
  font-size: 12px;
  font-weight: 800;
}

.service-copy p,
.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.portfolio-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
  margin: 0 clamp(12px, 2.2vw, 28px);
  background: var(--black);
  color: var(--white);
  padding: clamp(56px, 8vw, 96px);
}

.portfolio-content {
  max-width: 560px;
}

.portfolio-content .eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.portfolio-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.portfolio-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  min-height: 430px;
}

.portfolio-preview div {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background-position: center;
  background-size: cover;
  filter: grayscale(0.35);
}

.portfolio-preview div:nth-child(1) {
  align-self: start;
  height: 78%;
  background-image: url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=900&q=85");
}

.portfolio-preview div:nth-child(2) {
  align-self: end;
  height: 92%;
  background-image: url("https://images.unsplash.com/photo-1560185007-cde436f6a4d0?auto=format&fit=crop&w=900&q=85");
}

.portfolio-preview div:nth-child(3) {
  align-self: center;
  height: 84%;
  background-image: url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=900&q=85");
}

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

.process-grid div {
  border-top: 1px solid var(--line);
  padding: 28px 20px 0 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
  margin: 0 clamp(12px, 2.2vw, 28px) clamp(12px, 2.2vw, 28px);
  background: var(--paper);
  padding: clamp(54px, 8vw, 96px);
}

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

.contact-aside p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
}

.contact-lines {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  color: var(--ink);
  font-weight: 700;
}

.quote-form {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: clamp(24px, 5vw, 48px);
}

.quote-form h2 {
  margin-bottom: 6px;
  font-size: clamp(30px, 4vw, 48px);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.24);
  border-radius: 0;
  background: #fafafa;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  background: #000000;
  color: rgba(255, 255, 255, 0.72);
  padding: 24px clamp(20px, 5vw, 72px);
  font-size: 13px;
}

.site-footer .logo-image {
  width: 104px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1020px) {
  .service-list,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1fr);
  }

  .service-photo {
    min-height: 100%;
  }

  .portfolio-band,
  .contact-section,
  .feature-strip,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-preview {
    min-height: 320px;
  }

  .contact-aside {
    position: static;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  :root {
    --header-height: 84px;
  }

  .site-header {
    min-height: var(--header-height);
    padding: 10px 18px;
  }

  main {
    padding-top: var(--header-height);
  }

  .logo-image {
    width: 72px;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding: 10px 18px 18px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 0;
  }

  .nav-quote {
    margin-top: 8px;
    text-align: center;
  }

  .hero,
  .hero-content {
    min-height: calc(100svh - var(--header-height));
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.44)),
      url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1200&q=85") center / cover;
  }

  .hero-content {
    width: 100%;
    justify-content: flex-end;
    padding-bottom: 58px;
  }

  .section-pad,
  .portfolio-band,
  .contact-section {
    padding: 56px 22px;
  }

  .feature-panel {
    padding: 42px 22px;
  }

  .service-card {
    display: flex;
    width: 100%;
  }

  .service-photo {
    min-height: 240px;
  }

  .portfolio-preview {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .portfolio-preview div,
  .portfolio-preview div:nth-child(1),
  .portfolio-preview div:nth-child(2),
  .portfolio-preview div:nth-child(3) {
    height: 220px;
  }

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

  .site-footer .logo-image {
    width: 86px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .button-dark {
    width: 100%;
  }
}
