:root {
  --ink: #111614;
  --muted: #5b635e;
  --paper: #f7f8f4;
  --panel: #ecefec;
  --sage: #667769;
  --moss: #263629;
  --gold: #c4ad72;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(17, 22, 20, .16);
  --radius: 8px;
  --hero-photo: url("assets/hero-photo.jpg");
  --residential-photo: url("assets/residential-photo.jpg");
  --interior-photo: url("assets/interior-photo.jpg");
  --hospitality-photo: url("assets/hospitality-photo.jpg");
  --workplace-photo: url("assets/workplace-photo.jpg");
  --process-photo: url("assets/process-photo.jpg");
  --model-photo: url("assets/model-photo.jpg");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 36px));
  padding: 10px 12px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: var(--radius);
  background: rgba(16, 22, 19, .48);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 900;
  letter-spacing: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

nav a {
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 700;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

nav a:hover {
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 160px max(34px, calc((100vw - 1120px) / 2)) 80px;
  overflow: hidden;
  background: #19231f;
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 12, 10, .78), rgba(8, 12, 10, .30) 48%, rgba(8, 12, 10, .05)), linear-gradient(180deg, rgba(12, 16, 14, .12), rgba(12, 16, 14, .58));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 800;
}

.eyebrow.dark {
  color: var(--sage);
}

.center {
  text-align: center;
}

#work .eyebrow {
  margin-bottom: 28px;
}

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

h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(54px, 9vw, 112px);
  line-height: .88;
  font-weight: 900;
}

h2 {
  font-size: clamp(34px, 5vw, 60px);
  line-height: .98;
  font-weight: 900;
}

h3 {
  font-size: 22px;
  line-height: 1.05;
}

.hero-copy p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(255, 255, 255, .82);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions,
.contact-band {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 900;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.btn span {
  margin-left: 10px;
  transition: transform .25s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .18);
}

.btn:hover span {
  transform: translateX(4px);
}

.btn.primary {
  background: var(--white);
  color: var(--ink);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, .34);
  color: var(--white);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, .14);
}

.btn.dark {
  background: var(--ink);
  color: var(--white);
}

.icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
}

.icon-light::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 7px rgba(17, 22, 20, .08);
}

.icon-star::before,
.icon-star::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.icon-star::after {
  transform: rotate(90deg);
}

.icon-wave::before {
  content: "";
  width: 24px;
  height: 14px;
  border: 3px solid currentColor;
  border-right: 0;
  border-bottom: 0;
  border-radius: 999px 0 0 0;
  transform: rotate(-16deg);
}

.hero-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-image: var(--hero-photo);
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.section-pad {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0;
}

.intro {
  text-align: center;
}

.intro h2,
.section-title {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.35fr .9fr .9fr;
  gap: 18px;
  margin-top: 36px;
  text-align: left;
}

.feature-card,
.panel,
.quote-box {
  border-radius: var(--radius);
  background: var(--panel);
}

.feature-card {
  min-height: 300px;
  padding: 30px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.feature-card:hover,
.work-card:hover,
.panel:hover,
.quote-box:hover,
.portrait-panel:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.feature-card.large {
  min-height: 390px;
  background-image: linear-gradient(145deg, rgba(25, 35, 31, .86), rgba(72, 92, 71, .66)), var(--interior-photo);
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.feature-card p,
.panel p,
.work-card span,
.process-row p,
.footer-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.feature-card.large p {
  color: rgba(255, 255, 255, .76);
}

.split,
.quote {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 18px;
  align-items: stretch;
}

.panel,
.quote-box {
  padding: 46px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 26px 0 30px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--muted);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(102, 119, 105, .16);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  width: 6px;
  height: 10px;
  border-right: 2px solid var(--sage);
  border-bottom: 2px solid var(--sage);
  transform: rotate(42deg);
}

.image-panel,
.portrait-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background-image: linear-gradient(180deg, rgba(255,255,255,.05), rgba(11,18,14,.34)), var(--residential-photo);
  background-position: center;
  background-size: cover;
  transition: transform .25s ease, box-shadow .25s ease;
}

.banner-art,
.work-art {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--residential-photo);
  background-position: center;
  background-size: cover;
}

.metric-card {
  position: absolute;
  right: 24px;
  bottom: 26px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: var(--radius);
  background: rgba(255,255,255,.22);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.metric-card span {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 800;
}

.metric-card strong {
  font-size: 24px;
}

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

.work-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 24px;
  color: var(--white);
  transition: transform .25s ease, box-shadow .25s ease;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(8, 12, 10, .82));
}

.work-card span,
.work-card h3 {
  position: relative;
  z-index: 1;
}

.work-card span {
  display: block;
  margin-top: 204px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 500;
}

.work-card h3 {
  max-width: calc(100% - 24px);
  margin-bottom: 0;
  font-weight: 500;
}

.work-art.art-two {
  background-image: var(--hospitality-photo);
}

.work-art.art-three {
  background-image: var(--workplace-photo);
}

.banner {
  position: relative;
  width: min(1120px, calc(100% - 48px));
  margin: 50px auto;
  padding: 86px 52px 42px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: #1a231f;
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,13,11,.2), rgba(9,13,11,.82));
}

.banner-art {
  background-image: var(--process-photo);
  background-position: center;
  background-size: cover;
}

.banner > *:not(.banner-art) {
  position: relative;
  z-index: 1;
}

.banner h2 {
  max-width: 760px;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.process-row article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  transition: transform .25s ease, background .25s ease;
}

.process-row article:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,.18);
}

.process-row span {
  color: var(--gold);
  font-weight: 900;
}

.process-row h3 {
  margin: 18px 0 10px;
}

.process-row p {
  margin-bottom: 0;
  color: rgba(255,255,255,.72);
}

.quote {
  grid-template-columns: 1.15fr .85fr;
}

.quote-box {
  min-height: 430px;
}

.quote-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 70px;
  border-radius: 50%;
  background: var(--white);
  font-size: 34px;
  font-weight: 900;
}

.quote-mark::before,
.quote-mark::after {
  content: "";
  width: 7px;
  height: 21px;
  border-radius: 999px;
  background: var(--ink);
  transform: skew(-12deg);
}

.quote-mark::after {
  position: absolute;
  left: 29px;
}

.quote-box p {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.45;
}

.signature {
  display: flex;
  align-items: center;
  margin-top: 34px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.portrait-panel {
  min-height: 430px;
  background-image: linear-gradient(180deg, rgba(255,255,255,.04), rgba(11,18,14,.32)), var(--model-photo);
  background-position: center;
  background-size: cover;
}

footer {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 34px;
  padding: 52px 52px 44px;
  border-radius: var(--radius);
  background: #111614;
  color: var(--white);
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 760px) auto;
  align-items: end;
  justify-content: space-between;
  column-gap: 48px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.contact-band h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 58px);
  line-height: .96;
}

.contact-band .eyebrow {
  margin-bottom: 22px;
}

.contact-band .btn {
  margin-bottom: 8px;
  white-space: nowrap;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(160px, .7fr) minmax(280px, 1fr);
  gap: 72px;
  align-items: start;
  padding: 42px 0 34px;
}

.footer-grid p {
  max-width: 420px;
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.copyright {
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.56);
  font-size: 12px;
  text-align: center;
}

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

  nav {
    max-width: 225px;
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .hero {
    min-height: 820px;
    padding-top: 145px;
  }

  .intro-grid,
  .split,
  .work-grid,
  .process-row,
  .quote,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-pad {
    width: min(100% - 32px, 1120px);
    padding: 62px 0;
  }

  .panel,
  .quote-box,
  footer,
  .banner {
    padding: 30px;
  }

  .banner,
  footer {
    width: calc(100% - 32px);
  }

  .contact-band {
    grid-template-columns: 1fr;
    align-items: flex-start;
    row-gap: 24px;
  }

  .contact-band h2 {
    font-size: 40px;
  }

  .contact-band .btn {
    margin-bottom: 0;
  }

}

@media (max-width: 560px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  nav a {
    padding: 8px 9px;
    font-size: 12px;
  }

  .hero {
    padding-right: 20px;
    padding-left: 20px;
  }

  h1 {
    font-size: clamp(44px, 16vw, 68px);
  }

  h2 {
    font-size: 36px;
  }

  .hero-copy p:not(.eyebrow),
  .quote-box p {
    font-size: 18px;
  }

  .image-panel,
  .portrait-panel {
    min-height: 380px;
  }
}
