:root {
  color-scheme: light;
  --page: #d9d9d9;
  --panel: rgba(255, 255, 255, 0.36);
  --ink: #383a3d;
  --muted: #56585a;
  --soft: #747678;
  --orange: #ef4b21;
  --orange-dark: #cc3715;
  --line: rgba(56, 58, 61, 0.14);
  --shadow: 0 22px 60px rgba(65, 65, 65, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.42), transparent 32rem),
    linear-gradient(135deg, #e5e5e5 0%, var(--page) 46%, #cfcfcf 100%);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

a {
  color: inherit;
  text-decoration-color: rgba(239, 75, 33, 0.45);
  text-underline-offset: 0.16em;
}

a:hover {
  color: var(--orange-dark);
}

.page-shell {
  width: min(1420px, calc(100% - 96px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px) 0 10px;
}

.hero {
  display: flex;
  align-items: flex-start;
  padding-bottom: clamp(20px, 3.4vh, 32px);
}

.brand-lockup {
  width: min(650px, 100%);
}

.roofmark {
  display: block;
  width: min(340px, 74vw);
  height: auto;
  margin-left: 4px;
}

.roof-orange {
  fill: var(--orange);
}

.roof-charcoal {
  fill: #4f5052;
}

.roof-light {
  fill: #77797b;
}

h1 {
  display: grid;
  margin: -42px 0 8px;
  color: #525456;
  font-size: clamp(4rem, 7.15vw, 5.25rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.76;
}

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

h1 strong {
  display: block;
  font-size: 0.82em;
  font-weight: 700;
  letter-spacing: -0.065em;
}

.brand-lockup p {
  position: relative;
  margin: 10px 0 0;
  padding-bottom: 18px;
  color: #595b5d;
  font-size: clamp(1.5rem, 2.8vw, 2.05rem);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-lockup p::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--orange);
  content: "";
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.68fr);
  gap: clamp(46px, 9vw, 136px);
  align-items: start;
}

.left-column {
  display: grid;
  gap: clamp(26px, 4vw, 36px);
}

.panel {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.expertise,
.contact {
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
}

.legal {
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  margin-top: clamp(18px, 3vw, 30px);
  padding: 0;
}

.section-label {
  margin: 0 0 16px;
  color: #343638;
  font-size: clamp(1.22rem, 2.2vw, 1.56rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.expertise ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 7px 22px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  list-style: none;
}

.expertise li {
  position: relative;
  min-height: 25px;
  padding-left: 34px;
}

.expertise li::before {
  position: absolute;
  top: 1px;
  left: 0;
  color: #4e5052;
  content: "\2714";
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}

.contact dl,
.legal dl {
  display: grid;
  gap: 6px;
  margin: 0;
}

.contact div,
.legal div {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

dt {
  color: #55575a;
  font-weight: 700;
}

dd {
  margin: 0;
  color: var(--muted);
}

.contact {
  font-size: clamp(1rem, 1.65vw, 1.2rem);
}

.legal h2 {
  margin: 0 0 18px;
  color: #333537;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.72rem, 3vw, 2.22rem);
  font-weight: 500;
}

.legal dl {
  gap: 8px;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.legal div {
  justify-content: flex-start;
  border-bottom: 0;
  padding-bottom: 0;
}

.legal dd {
  color: var(--soft);
}

@media (max-width: 920px) {
  .page-shell {
    width: min(720px, calc(100% - 32px));
  }

  .hero {
    min-height: auto;
    padding-bottom: 44px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .legal {
    margin-top: 0;
  }

  .expertise ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 580px) {
  .page-shell {
    width: min(100% - 24px, 480px);
    padding-top: 28px;
  }

  .brand-lockup p {
    font-size: 1.34rem;
  }

  .expertise,
  .contact,
  .legal {
    padding: 22px;
  }

  .expertise ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .legal div {
    display: grid;
    gap: 2px;
    justify-content: start;
  }
}
