:root {
  --red: #d71920;
  --red-dark: #a80f16;
  --ink: #161719;
  --ink-soft: #25282c;
  --steel: #5f6670;
  --line: #d9dde3;
  --paper: #ffffff;
  --mist: #f4f5f7;
  --warm: #f1eee8;
}

* {
  box-sizing: border-box;
  letter-spacing: 0 !important;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

:focus-visible {
  outline: 3px solid rgba(215, 25, 32, 0.35);
  outline-offset: 3px;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(22, 23, 25, 0.78);
  color: var(--paper);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

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

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  color: var(--paper);
  border-bottom-color: var(--red);
}

nav a.active {
  color: var(--paper);
  border-bottom-color: var(--red);
}

.page-main {
  padding-top: 72px;
}

.page-main .section:first-child {
  padding-top: 88px;
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 13, 15, 0.9), rgba(12, 13, 15, 0.56) 42%, rgba(12, 13, 15, 0.16) 100%),
    linear-gradient(0deg, rgba(12, 13, 15, 0.78), rgba(12, 13, 15, 0) 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  min-height: 72svh;
  margin-left: max(20px, calc((100vw - 1180px) / 2));
  padding-top: 140px;
  padding-bottom: 170px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-heading-link {
  display: inline-block;
}

.section-heading-link:hover {
  color: var(--red-dark);
}

.hero h1 {
  margin: 0;
  max-width: 740px;
  font-size: 66px;
  line-height: 0.96;
  font-weight: 800;
}

.hero h1 span {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 30px;
  line-height: 1.18;
  font-weight: 500;
}

.hero-content > p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button.primary {
  background: var(--red);
  color: var(--paper);
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--paper);
}

.button.secondary:hover {
  border-color: var(--paper);
  background: rgba(255, 255, 255, 0.1);
}

.hero-metrics {
  position: absolute;
  z-index: 1;
  left: 50%;
  right: auto;
  bottom: 0;
  display: grid;
  width: min(860px, calc(100% - 40px));
  grid-template-columns: repeat(3, 1fr);
  overflow: visible;
  transform: translateX(-50%);
}

.metric-card {
  position: relative;
  min-height: 116px;
  outline: 0;
}

.metric-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  min-height: 116px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  padding: 28px 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(22, 23, 25, 0.88);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0);
  backdrop-filter: blur(10px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
  transition:
    min-height 260ms ease,
    transform 260ms ease,
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.metric-card:last-child .metric-panel {
  border-right: 0;
}

.metric-card:hover,
.metric-card:focus-visible {
  z-index: 2;
}

.metric-card:hover .metric-panel,
.metric-card:focus-visible .metric-panel {
  min-height: 226px;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(22, 23, 25, 0.94);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.metric-panel strong,
.metric-panel span {
  display: block;
}

.metric-panel strong {
  color: var(--red);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.16;
  transition: transform 260ms ease;
}

.metric-panel span {
  position: absolute;
  left: 24px;
  right: 24px;
  top: calc(50% + 24px);
  color: #ffffff;
  font-size: 22px;
  line-height: 1.22;
  font-weight: 900;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.metric-card:hover .metric-panel strong,
.metric-card:focus-visible .metric-panel strong {
  transform: translateY(-34px);
}

.metric-card:hover .metric-panel span,
.metric-card:focus-visible .metric-panel span {
  opacity: 1;
  transform: translateY(0);
}

.intro-band {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 54px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 42px;
  align-items: start;
}

.intro-grid h2 {
  margin: 0;
  max-width: 470px;
  font-size: 32px;
  line-height: 1.18;
}

.trade-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.trade-list article,
.value-card,
.service-card,
.timeline article,
.project-card,
.reason-grid article,
.contact-form {
  border-radius: 8px;
}

.trade-list article {
  position: relative;
  min-height: 202px;
  padding: 18px 22px 24px;
  border: 1px solid var(--line);
  background: var(--mist);
}

.trade-list article::before {
  position: absolute;
  top: 66px;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--ink);
  content: "";
}

.trade-list span,
.timeline span,
.reason-grid span {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

.trade-list h3 {
  min-height: 40px;
  margin: 0 0 34px;
  color: var(--red);
  font-size: 20px;
  line-height: 1.18;
}

.trade-list span {
  display: block;
  min-height: 34px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.2;
}

.trade-list p,
.body-copy,
.section-heading p,
.value-card p,
.service-card p,
.timeline p,
.project-card p,
.project-card dd,
.contact-section p,
address {
  color: var(--steel);
  line-height: 1.68;
}

.section {
  padding: 88px 0;
}

.section.light {
  background: var(--paper);
}

.section.dark {
  background: var(--ink);
  color: var(--paper);
}

.section.dark .section-heading p,
.section.dark .service-card p,
.section.dark li,
.section.dark .deliverable {
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 40px;
}

.section-heading h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.08;
}

.section-heading p:last-child {
  max-width: 700px;
  margin: 18px 0 0;
  font-size: 17px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 58px;
  align-items: center;
}

.body-copy {
  max-width: 720px;
  margin: 0;
  font-size: 17px;
}

.monogram-panel {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.monogram {
  display: grid;
  place-items: center;
  width: min(310px, 100%);
  margin: 0 auto 24px;
}

.monogram-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.monogram-panel p {
  margin: 0;
  color: var(--steel);
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.value-card {
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.value-card > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 26px;
  background: var(--ink);
  color: var(--paper);
  font-size: 22px;
  font-weight: 900;
}

.value-card h3 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.22;
}

.services-grid {
  display: grid;
  gap: 18px;
}

.service-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--ink-soft);
}

.service-card h3 {
  margin: 0;
  font-size: 28px;
}

.service-card > p {
  max-width: 820px;
  margin: 12px 0 24px;
}

.service-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 22px;
}

.service-card h4 {
  margin: 0 0 12px;
  color: var(--paper);
  font-size: 15px;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
}

.service-card li::before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 7px;
  height: 2px;
  background: var(--red);
  content: "";
}

.deliverable {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.deliverable strong {
  color: var(--paper);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.timeline article {
  position: relative;
  min-height: 238px;
  overflow: hidden;
  padding: 28px 22px 24px;
  border: 1px solid var(--line);
  background: var(--mist);
}

.timeline article > * {
  position: relative;
  z-index: 1;
}

.timeline span {
  position: absolute;
  right: 8px;
  bottom: -42px;
  z-index: 0;
  color: rgba(215, 25, 32, 0.14);
  font-size: clamp(150px, 13vw, 210px);
  font-weight: 900;
  line-height: 0.8;
  pointer-events: none;
  transition:
    bottom 260ms ease,
    color 260ms ease;
}

.timeline article:hover span,
.timeline article:focus-within span {
  bottom: 8px;
  color: rgba(215, 25, 32, 0.2);
}

.timeline h3 {
  margin: 34px 0 12px;
  font-size: 20px;
}

.projects-section {
  background: var(--mist);
}

.projects-grid {
  display: grid;
  gap: 24px;
}

.project-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  color: inherit;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.project-card:hover {
  border-color: rgba(215, 25, 32, 0.45);
  box-shadow: 0 16px 36px rgba(22, 23, 25, 0.1);
  transform: translateY(-2px);
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.project-content {
  padding: 32px;
}

.project-content h3 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.14;
}

.project-content > p:not(.eyebrow) {
  margin: 0 0 22px;
}

.project-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.project-card dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.project-card dt {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.project-card dd {
  margin: 0;
}

.section-more,
.projects-more {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.why-more {
  justify-content: flex-start;
  margin-top: 68px;
}

.why-section {
  background: var(--ink);
  color: var(--paper);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 42px;
}

.why-grid h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.08;
}

.why-content {
  display: grid;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.reason-grid article {
  position: relative;
  min-height: 148px;
  overflow: hidden;
  padding: 26px 22px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--ink-soft);
}

.reason-grid article > * {
  position: relative;
  z-index: 1;
}

.reason-grid span {
  position: absolute;
  right: 12px;
  bottom: -46px;
  z-index: 0;
  color: rgba(215, 25, 32, 0.3);
  font-size: clamp(130px, 10vw, 180px);
  font-weight: 900;
  line-height: 0.8;
  pointer-events: none;
  transform: translate(0, 0);
  transition:
    transform 280ms ease,
    color 280ms ease;
  will-change: transform;
}

.reason-grid article:hover span,
.reason-grid article:focus-within span {
  color: rgba(215, 25, 32, 0.42);
  transform: translate(-28px, -48px);
}

.reason-grid h3 {
  margin: 56px 0 0;
  font-size: 18px;
  line-height: 1.24;
}

.contact-section {
  background: var(--warm);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.9fr);
  gap: 58px;
  align-items: start;
}

.contact-section h2 {
  margin: 0;
  font-size: 46px;
  line-height: 1.08;
}

.contact-section p {
  max-width: 590px;
  margin: 20px 0 0;
  font-size: 17px;
}

address {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  font-style: normal;
}

address strong {
  color: var(--ink);
}

address a {
  color: var(--red-dark);
  font-weight: 800;
}

.map-panel {
  position: relative;
  display: grid;
  place-items: center;
  height: 230px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(22, 23, 25, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(22, 23, 25, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(22, 23, 25, 0.06) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px;
}

.map-panel iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0.18;
  filter: grayscale(1) contrast(1.08);
}

.map-fallback {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  min-width: 190px;
  padding: 18px 22px;
  border-left: 4px solid var(--red);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
}

.map-fallback strong,
.map-fallback span {
  display: block;
}

.map-fallback span {
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 800;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(22, 23, 25, 0.14);
  background: var(--paper);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.contact-form .field-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  padding: 12px 13px;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form .button {
  width: 100%;
  margin-top: 4px;
  border: 0;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.faq-item summary {
  position: relative;
  display: block;
  padding: 24px 58px 24px 24px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--red);
  content: "+";
  font-size: 22px;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--steel);
  line-height: 1.68;
}

@media (max-width: 1020px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    gap: 14px;
  }

  nav {
    max-width: 440px;
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-content {
    min-height: 0;
    padding-top: 150px;
    padding-bottom: 220px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero h1 span {
    font-size: 25px;
  }

  .intro-grid,
  .split,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .trade-list,
  .values-grid,
  .reason-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline {
    grid-template-columns: repeat(3, 1fr);
  }

  .project-card {
    grid-template-columns: 1fr;
  }

  .project-card img {
    min-height: 340px;
    aspect-ratio: 16 / 8;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand small {
    display: none;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero > img {
    height: 100%;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 13, 15, 0.92), rgba(12, 13, 15, 0.52)),
      linear-gradient(0deg, rgba(12, 13, 15, 0.9), rgba(12, 13, 15, 0.2));
  }

  .hero-content {
    width: min(100% - 28px, 760px);
    margin: 0 auto;
    padding-top: 118px;
    padding-bottom: 30px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.02;
  }

  .hero h1 span {
    font-size: 20px;
  }

  .hero-content > p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-metrics {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: min(100% - 28px, 680px);
    margin: 0 auto 18px;
    grid-template-columns: 1fr;
    transform: none;
  }

  .metric-card {
    min-height: 116px;
  }

  .metric-panel {
    position: relative;
    min-height: 116px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .metric-card:last-child .metric-panel {
    border-bottom: 0;
  }

  .metric-panel span {
    position: static;
    margin-top: 12px;
    font-size: 18px;
    opacity: 1;
    transform: none;
  }

  .metric-card:hover .metric-panel,
  .metric-card:focus-visible .metric-panel {
    min-height: 116px;
  }

  .metric-card:hover .metric-panel strong,
  .metric-card:focus-visible .metric-panel strong {
    transform: none;
  }

  .section {
    padding: 62px 0;
  }

  .intro-band {
    padding: 42px 0;
  }

  .intro-grid h2,
  .section-heading h2,
  .why-grid h2,
  .contact-section h2 {
    font-size: 31px;
    line-height: 1.14;
  }

  .trade-list,
  .values-grid,
  .service-columns,
  .timeline,
  .reason-grid {
    grid-template-columns: 1fr;
  }

  .monogram-panel,
  .service-card,
  .project-content,
  .contact-form {
    padding: 22px;
  }

  .monogram {
    width: min(240px, 100%);
  }

  .project-card img {
    min-height: 260px;
  }

  .project-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .trade-list article,
  .value-card,
  .service-card,
  .timeline article,
  .project-card,
  .reason-grid article,
  .contact-form {
    animation: fade-in 500ms ease both;
  }

  @keyframes fade-in {
    from {
      opacity: 0;
      transform: translateY(8px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
