:root {
  color-scheme: light;
  --ink: #0a0a0a;
  --paper: #ffffff;
  --soft: #f2f2f0;
  --muted: #686868;
  --line: #d8d8d4;
  --orange: #f6aa2a;
  --shell: min(94vw, 1440px);
  --radius-lg: 28px;
  --radius-md: 18px;
  --font: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -5rem;
  left: 1rem;
  padding: .75rem 1rem;
  background: var(--paper);
  color: var(--ink);
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 96px;
  padding-top: 41px;
  padding-inline: clamp(22px, 3vw, 48px);
}

.brand {
  display: block;
  width: clamp(150px, 16vw, 200px);
  line-height: 0;
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.3rem, 2.6vw, 2.8rem);
  padding: .72rem 1rem;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  background: rgba(14, 14, 14, .2);
  backdrop-filter: blur(12px);
}

.primary-nav a,
.site-footer nav a {
  font-size: .78rem;
  font-weight: 600;
  text-decoration: none;
}

.primary-nav a {
  color: rgba(255, 255, 255, .88);
  transition: color 180ms ease;
}

.primary-nav a:hover {
  color: var(--orange);
  text-decoration: none;
}

.site-footer nav a:hover,
.contact-links a:hover {
  text-decoration: underline;
  text-underline-offset: .35em;
}

.call-link,
.mobile-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .7rem 1.1rem;
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  font-size: .78rem;
  font-weight: 750;
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease;
}

.call-link:hover,
.mobile-call:hover {
  background: #ffbb4b;
  transform: translateY(-2px);
}

.call-link-header {
  justify-self: end;
}

.hero {
  position: relative;
  min-height: min(880px, 92vh);
  margin-top: 16px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: #fff;
  background: #171717;
}

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

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

.hero-shade {
  background: linear-gradient(180deg, rgba(0, 0, 0, .34) 0%, rgba(0, 0, 0, .08) 37%, rgba(0, 0, 0, .7) 100%);
}

.hero-copy {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 5vw, 76px);
  bottom: clamp(170px, 21vh, 215px);
}

.hero h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(3rem, 5.1vw, 5.6rem);
  font-weight: 650;
  line-height: .9;
  letter-spacing: -.072em;
  white-space: nowrap;
}

.proof-row {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 138px;
  padding-inline: clamp(24px, 5vw, 76px);
  color: var(--ink);
  background: rgba(255, 255, 255, .97);
}

.proof-row p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding-inline: clamp(0px, 3vw, 44px);
}

.proof-row p:first-child {
  padding-left: 0;
}

.proof-row p + p {
  border-left: 1px solid var(--line);
}

.proof-row strong {
  margin-bottom: .25rem;
  color: var(--muted);
  font-size: .67rem;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.proof-row span {
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 650;
  letter-spacing: -.035em;
}

.section {
  padding-block: clamp(96px, 12vw, 180px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) 3fr;
  align-items: start;
  gap: 2rem;
  margin-bottom: clamp(54px, 7vw, 100px);
}

.eyebrow {
  margin: .55rem 0 0;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-heading h2,
.contact h2 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(2.8rem, 4.6vw, 4.8rem);
  font-weight: 620;
  line-height: .92;
  letter-spacing: -.067em;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-item {
  display: flex;
  min-height: clamp(300px, 31vw, 460px);
  flex-direction: column;
  padding: 26px clamp(24px, 3vw, 50px) 42px 0;
}

.service-item + .service-item {
  padding-left: clamp(24px, 3vw, 50px);
  border-left: 1px solid var(--line);
}

.service-number {
  color: var(--orange);
  font-size: .72rem;
  font-weight: 750;
}

.service-item h3 {
  max-width: 12ch;
  margin: auto 0 0;
  font-size: clamp(2.2rem, 4.2vw, 4.6rem);
  font-weight: 620;
  line-height: .92;
  letter-spacing: -.06em;
}

.owner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--ink);
}

.owner-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(32px, 6vw, 86px);
}

.owner-copy .eyebrow {
  margin-bottom: auto;
  color: var(--orange);
}

.owner-copy h2 {
  margin: 0;
  font-size: clamp(4rem, 8vw, 8.5rem);
  font-weight: 620;
  line-height: .9;
  letter-spacing: -.075em;
}

.owner-copy > p:last-child {
  margin: 2rem 0 0;
  color: #bcbcbc;
  font-size: clamp(.9rem, 1.3vw, 1.1rem);
}

.owner-copy > p:last-child span {
  margin-inline: .5em;
  color: var(--orange);
}

.owner-photo {
  min-height: 520px;
  padding: clamp(16px, 2vw, 30px);
  padding-left: 0;
}

.owner-photo img {
  height: 100%;
  border-radius: calc(var(--radius-lg) - 8px);
  object-fit: cover;
  object-position: center 32%;
  filter: saturate(.72) contrast(1.03);
}

.gallery-heading {
  margin-bottom: clamp(44px, 6vw, 76px);
}

.gallery-grid {
  columns: 3;
  column-gap: 10px;
}

.gallery-grid figure {
  display: inline-block;
  width: 100%;
  margin: 0 0 10px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--soft);
  break-inside: avoid;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  transition: transform 500ms cubic-bezier(.2, .7, .2, 1);
}

.gallery-grid figure:hover img {
  transform: scale(1.025);
}

.contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 680px;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--ink);
}

.contact-copy {
  display: flex;
  flex-direction: column;
  padding: clamp(34px, 6vw, 86px);
}

.contact-copy .eyebrow {
  margin: 0 0 clamp(48px, 8vw, 112px);
  color: var(--orange);
}

.contact h2 {
  max-width: 12ch;
  font-size: clamp(2.6rem, 4vw, 4rem);
}

.contact address {
  margin-top: auto;
  padding-top: 4rem;
  color: #bcbcbc;
  font-style: normal;
}

.contact address strong {
  color: #fff;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 1.4rem;
}

.contact-links a {
  font-weight: 650;
  text-decoration: none;
}

.contact-links a:first-child {
  color: var(--orange);
}

.map-wrap {
  min-height: 460px;
  padding: clamp(16px, 2vw, 30px);
  padding-left: 0;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: calc(var(--radius-lg) - 8px);
  filter: grayscale(1) contrast(1.05);
}

.site-footer {
  padding-block: 38px 46px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.footer-brand {
  width: clamp(175px, 18vw, 220px);
}

.site-footer nav {
  display: flex;
  gap: clamp(1rem, 2.4vw, 2.4rem);
}

.footer-inner > .call-link {
  justify-self: end;
  background: var(--ink);
  color: #fff;
}

.mobile-call {
  display: none;
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 80px;
  }

  .site-header {
    position: absolute;
  }

  .header-inner {
    grid-template-columns: 1fr;
    min-height: 96px;
    padding: 22px 32px;
  }

  .call-link-header {
    display: none;
  }

  .primary-nav {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .hero-copy {
    bottom: 260px;
  }

  .proof-row {
    min-height: 148px;
    padding-inline: 24px;
  }

  .proof-row p {
    padding-inline: 20px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-item {
    min-height: clamp(280px, 36vw, 360px);
  }

  .owner {
    min-height: 650px;
  }

  .gallery-grid {
    columns: 2;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    min-height: 600px;
  }

  .map-wrap {
    min-height: 520px;
    padding: 0 20px 20px;
  }

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

  .site-footer nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: space-between;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 20px);
    --radius-lg: 20px;
    --radius-md: 14px;
  }

  .header-inner {
    padding-inline: 30px;
  }

  .hero {
    min-height: 760px;
    margin-top: 10px;
  }

  .hero-media img {
    object-position: 55% center;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, .38), rgba(0, 0, 0, .16) 32%, rgba(0, 0, 0, .78) 72%);
  }

  .hero-copy {
    bottom: 300px;
    left: 18px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(1.9rem, 8.5vw, 2.4rem);
    white-space: nowrap;
  }

  .proof-row {
    grid-template-columns: 1fr;
    min-height: 212px;
    padding: 8px 18px;
  }

  .proof-row p,
  .proof-row p:first-child {
    padding: 9px 0;
  }

  .proof-row p + p {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .proof-row strong {
    margin-bottom: 0;
  }

  .proof-row span {
    font-size: 1.1rem;
  }

  .section {
    padding-block: 88px;
  }

  .section-heading {
    margin-bottom: 50px;
  }

  .section-heading h2,
  .contact h2 {
    font-size: clamp(2.55rem, 12vw, 4.1rem);
  }

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

  .service-item {
    min-height: 240px;
    padding: 22px 0 28px;
  }

  .service-item + .service-item {
    margin-top: 0;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-item h3 {
    font-size: 2.7rem;
  }

  .owner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .owner-copy {
    min-height: 0;
    padding: 30px 22px 34px;
  }

  .owner-copy .eyebrow {
    margin-bottom: 52px;
  }

  .owner-copy h2 {
    font-size: clamp(4rem, 19vw, 5.5rem);
    line-height: .92;
  }

  .owner-copy > p:last-child {
    margin-top: 24px;
  }

  .owner-photo {
    min-height: 390px;
    padding: 0 10px 10px;
  }

  .gallery-grid {
    columns: 2;
    column-gap: 8px;
  }

  .gallery-grid figure {
    margin-bottom: 8px;
  }

  .contact {
    margin-bottom: 10px;
  }

  .contact-copy {
    min-height: 560px;
    padding: 32px 22px 38px;
  }

  .contact-copy .eyebrow {
    margin-bottom: 70px;
  }

  .contact address {
    padding-top: 64px;
  }

  .map-wrap {
    min-height: 420px;
    padding: 0 10px 10px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding-bottom: 74px;
  }

  .site-footer nav {
    grid-column: auto;
    grid-row: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: start;
  }

  .footer-inner > .call-link {
    display: none;
  }

  .mobile-call {
    position: fixed;
    z-index: 50;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    min-height: 52px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, .22);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
