@font-face {
  font-family: "Oswald";
  src: url("../assets/fonts/oswald-var.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
}

@font-face {
  font-family: "Archivo";
  src: url("../assets/fonts/archivo-var.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --charcoal: #23231f;
  --charcoal-deep: #191a17;
  --bone: #eee9dc;
  --bone-dim: #c7c0b2;
  --ochre: #b68432;
  --line: rgba(238, 233, 220, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100dvh;
  overflow-x: clip;
  background: var(--charcoal);
  color: var(--bone);
  font-family: "Archivo", Arial, sans-serif;
}

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

.page {
  min-height: 100dvh;
  display: grid;
  grid-template-rows: 84px minmax(0, 1fr);
  overflow: hidden;
  background: var(--charcoal);
}

.site-header {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(230px, 1fr);
  align-items: center;
  min-height: 84px;
  padding: 0 clamp(24px, 3.9vw, 64px);
  border-bottom: 1px solid var(--line);
  background: var(--charcoal);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  position: relative;
  width: 39px;
  height: 35px;
  overflow: hidden;
  border-bottom: 3px solid var(--ochre);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  position: absolute;
  content: "";
  background: var(--bone);
  transform-origin: left center;
}

.brand-mark::before {
  left: 1px;
  top: 22px;
  width: 29px;
  height: 4px;
  transform: rotate(-45deg);
}

.brand-mark::after {
  left: 19px;
  top: 3px;
  width: 27px;
  height: 4px;
  transform: rotate(45deg);
}

.brand-mark span {
  left: 19px;
  bottom: 0;
  width: 3px;
  height: 16px;
}

.brand-type {
  display: grid;
  gap: 1px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  line-height: 1;
}

.brand-type strong {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.045em;
}

.brand-type small {
  color: var(--bone-dim);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.35em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 48px);
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  font-weight: 450;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  color: var(--bone-dim);
  transition: color 220ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--ochre);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 42px;
  padding: 0 0 0 18px;
  border-left: 1px solid var(--line);
  color: var(--bone);
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 220ms ease, transform 220ms ease;
}

.header-cta svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.header-cta:hover {
  color: var(--ochre);
}

.header-cta:hover svg {
  transform: translateX(4px);
}

.header-cta:active {
  transform: translateY(1px);
}

.hero {
  min-height: calc(100dvh - 84px);
  display: grid;
  grid-template-columns: minmax(0, 58fr) minmax(0, 42fr);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: flex;
  align-items: center;
  padding: clamp(48px, 6vh, 78px) clamp(42px, 5.7vw, 92px) clamp(34px, 5vh, 62px);
  background: var(--charcoal);
}

.copy-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(to right, transparent calc(100% - 1px), rgba(238, 233, 220, 0.13) 1px),
    linear-gradient(to bottom, transparent calc(100% - 1px), rgba(238, 233, 220, 0.09) 1px);
  background-size: 25% 100%, 100% 25%;
}

.copy-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 710px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 0 clamp(24px, 3.2vh, 38px);
  color: var(--bone-dim);
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  font-weight: 450;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--ochre);
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  content: "";
  background: var(--ochre);
}

h1 {
  max-width: 700px;
  margin: 0;
  color: var(--bone);
  font-family: "Oswald", sans-serif;
  font-size: clamp(64px, 6.35vw, 97px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-wrap: balance;
  text-transform: uppercase;
}

h1 span {
  color: var(--ochre);
}

.lede {
  max-width: 565px;
  margin: clamp(24px, 3.6vh, 40px) 0 0;
  color: var(--bone-dim);
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.65;
}

.actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: clamp(26px, 4vh, 44px);
}

.primary-cta {
  min-width: 210px;
  min-height: 57px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 18px 0 22px;
  border: 1px solid var(--ochre);
  background: var(--ochre);
  color: var(--charcoal-deep);
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.primary-cta svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.8;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.primary-cta:hover,
.primary-cta:focus-visible {
  background: transparent;
  color: var(--bone);
}

.primary-cta:hover svg,
.primary-cta:focus-visible svg {
  transform: translateX(4px);
}

.primary-cta:active {
  transform: translateY(1px) scale(0.985);
}

.actions p {
  max-width: 168px;
  margin: 0;
  color: var(--bone-dim);
  font-size: 11px;
  letter-spacing: 0.045em;
  line-height: 1.55;
  text-transform: uppercase;
}

.service-line {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 22px;
  margin-top: clamp(34px, 5vh, 58px);
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.service-label {
  margin: 0;
  color: var(--ochre);
  font-family: "Oswald", sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-line ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--bone);
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-line li {
  position: relative;
}

.service-line li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -13px;
  width: 3px;
  height: 3px;
  content: "";
  background: var(--ochre);
  transform: translateY(-50%);
}

.roof-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--charcoal-deep);
}

.ochre-plane {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--ochre);
  clip-path: polygon(0 0, 29% 0, 12% 100%, 0 100%);
}

.photo-clip {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%, 9% 55%);
  background: #60737a;
}

.photo-clip img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 57% center;
  filter: saturate(0.72) contrast(1.06);
  transform: scale(1.02);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), filter 450ms ease;
}

.roof-visual:hover .photo-clip img {
  filter: saturate(0.88) contrast(1.04);
  transform: scale(1.045);
}

.photo-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 23, 20, 0.08), rgba(22, 23, 20, 0.42)),
    linear-gradient(90deg, rgba(22, 23, 20, 0.35), transparent 40%);
}

.annotation {
  position: absolute;
  z-index: 2;
  color: var(--bone);
  font-family: "Oswald", sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.annotation p {
  margin: 0;
  padding: 7px 9px;
  border: 1px solid rgba(238, 233, 220, 0.45);
  background: rgba(25, 26, 23, 0.78);
  backdrop-filter: blur(5px);
}

.annotation b {
  margin-right: 7px;
  color: var(--ochre);
  font-weight: 600;
}

.annotation-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid var(--bone);
  border-radius: 50%;
  background: var(--ochre);
}

.annotation-line {
  position: absolute;
  height: 1px;
  background: rgba(238, 233, 220, 0.7);
  transform-origin: left center;
}

.annotation-one {
  top: 26%;
  left: 29%;
}

.annotation-one .annotation-dot {
  top: 53px;
  left: 106px;
}

.annotation-one .annotation-line {
  top: 45px;
  left: 85px;
  width: 35px;
  transform: rotate(49deg);
}

.annotation-two {
  top: 48%;
  right: 7%;
}

.annotation-two .annotation-dot {
  top: 56px;
  left: 18px;
}

.annotation-two .annotation-line {
  top: 44px;
  left: 23px;
  width: 39px;
  transform: rotate(112deg);
}

.annotation-three {
  right: 20%;
  bottom: 18%;
}

.annotation-three .annotation-dot {
  top: -33px;
  right: 13px;
}

.annotation-three .annotation-line {
  top: -14px;
  right: 13px;
  width: 31px;
  transform: rotate(-67deg);
  transform-origin: right center;
}

figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 50px;
  padding: 0 24px 0 clamp(70px, 7vw, 118px);
  border-top: 1px solid rgba(238, 233, 220, 0.25);
  background: rgba(25, 26, 23, 0.76);
  color: var(--bone);
  font-family: "Oswald", sans-serif;
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(7px);
}

figcaption span:last-child {
  max-width: 180px;
  color: rgba(238, 233, 220, 0.68);
  text-align: right;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 56fr) minmax(0, 44fr);
  }

  .hero-copy {
    padding-right: 44px;
    padding-left: 44px;
  }

  .actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .actions p {
    max-width: none;
  }
}

@media (max-width: 700px) {
  .page {
    grid-template-rows: 66px minmax(0, 1fr);
    overflow: visible;
  }

  .site-header {
    min-height: 66px;
    padding: 0 18px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 31px;
    height: 29px;
  }

  .brand-mark::before {
    top: 19px;
    width: 24px;
  }

  .brand-mark::after {
    left: 15px;
    top: 3px;
    width: 22px;
  }

  .brand-mark span {
    left: 15px;
    height: 12px;
  }

  .brand-type strong {
    font-size: 15px;
  }

  .brand-type small {
    font-size: 8px;
  }

  .header-cta {
    gap: 8px;
    min-height: 34px;
    padding-left: 12px;
    font-size: 10px;
  }

  .header-cta span {
    display: none;
  }

  .hero {
    min-height: calc(100dvh - 66px);
    grid-template-columns: 1fr;
    grid-template-rows: minmax(404px, auto) minmax(278px, 1fr);
    overflow: visible;
  }

  .hero-copy {
    align-items: flex-start;
    padding: 31px 20px 26px;
  }

  .copy-grid {
    background-size: 50% 100%, 100% 33.333%;
  }

  .eyebrow {
    gap: 9px;
    margin-bottom: 18px;
    font-size: 8px;
    letter-spacing: 0.11em;
  }

  .eyebrow::before {
    width: 20px;
  }

  h1 {
    max-width: 335px;
    font-size: clamp(49px, 14.4vw, 58px);
    line-height: 0.9;
  }

  .lede {
    max-width: 330px;
    margin-top: 18px;
    font-size: 12px;
    line-height: 1.5;
  }

  .actions {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
  }

  .primary-cta {
    min-width: 176px;
    min-height: 48px;
    padding: 0 13px 0 16px;
    font-size: 11px;
  }

  .primary-cta svg {
    width: 18px;
  }

  .actions p {
    max-width: 125px;
    font-size: 8px;
    line-height: 1.4;
  }

  .service-line {
    display: none;
  }

  .roof-visual {
    min-height: 278px;
  }

  .ochre-plane {
    clip-path: polygon(0 0, 100% 0, 100% 14%, 0 27%);
  }

  .photo-clip {
    clip-path: polygon(0 18%, 100% 4%, 100% 100%, 0 100%);
  }

  .photo-clip img {
    object-position: 58% 61%;
  }

  .annotation {
    font-size: 8px;
  }

  .annotation p {
    padding: 5px 7px;
  }

  .annotation-one {
    top: 28%;
    left: 8%;
  }

  .annotation-one .annotation-dot {
    top: 41px;
    left: 82px;
  }

  .annotation-one .annotation-line {
    top: 34px;
    left: 68px;
    width: 25px;
  }

  .annotation-two {
    top: 40%;
    right: 5%;
  }

  .annotation-two .annotation-dot {
    top: 43px;
  }

  .annotation-two .annotation-line {
    top: 34px;
    width: 30px;
  }

  .annotation-three {
    display: none;
  }

  figcaption {
    min-height: 38px;
    padding: 0 14px;
    font-size: 7px;
  }

  figcaption span:last-child {
    display: none;
  }
}

@media (max-height: 760px) and (max-width: 700px) {
  .hero {
    grid-template-rows: minmax(380px, auto) minmax(245px, 1fr);
  }

  .hero-copy {
    padding-top: 24px;
  }

  h1 {
    font-size: 48px;
  }

  .lede {
    margin-top: 14px;
  }

  .actions {
    margin-top: 16px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
