:root {
  --orange: #fb641c;
  --ink: #493b35;
  --cream: #f8f5f1;
  --paper: #fffdfb;
  --line: #e7ddd5;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Aptos", "Segoe UI", sans-serif;
  line-height: 1.5;
}

.site-header {
  width: min(1160px, calc(100% - 48px));
  min-height: 94px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #000;
  box-shadow: 0 0 0 100vmax #000;
  clip-path: inset(0 -100vmax);
}

.brand img { display: block; width: 176px; height: auto; }

.header-link {
  color: #fff;
  font-size: .94rem;
  font-weight: 700;
  text-decoration: none;
}

.header-link:hover { color: var(--orange); }

.intro {
  min-height: 500px;
  padding: 104px max(24px, calc((100% - 1160px) / 2)) 108px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.intro::after {
  content: "";
  position: absolute;
  right: -105px;
  top: -135px;
  width: 440px;
  height: 440px;
  border: 72px solid var(--orange);
  border-radius: 50%;
  opacity: .95;
}

.intro > * { position: relative; z-index: 1; }
.eyebrow { margin: 0 0 15px; color: var(--orange); font-size: .76rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }

h1, h2, h3 { margin-top: 0; font-family: Georgia, "Times New Roman", serif; letter-spacing: -.035em; }

h1 { max-width: 760px; margin-bottom: 20px; font-size: clamp(3rem, 7vw, 5.9rem); line-height: .98; }

.intro-copy { max-width: 520px; margin: 0 0 34px; font-size: clamp(1.05rem, 2vw, 1.25rem); }

.button {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  padding: 14px 19px;
  border-radius: 3px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.button:hover { background: #e65311; }

.services { width: min(1160px, calc(100% - 48px)); margin: 0 auto; padding: 105px 0 120px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 42px; }
.section-heading .eyebrow { margin-bottom: 8px; }
h2 { margin-bottom: 0; font-size: clamp(2.5rem, 5vw, 4.4rem); line-height: 1; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 254px; padding: 29px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-card:hover { background: var(--cream); }
.service-number { display: block; margin-bottom: 46px; color: var(--orange); font-size: .8rem; font-weight: 800; letter-spacing: .09em; }
h3 { margin-bottom: 10px; font-size: 1.7rem; line-height: 1.05; }
.service-card p { max-width: 280px; margin: 0; font-size: .96rem; }

footer { width: min(1160px, calc(100% - 48px)); margin: 0 auto; padding: 28px 0 34px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
footer p { margin: 0; font-size: .8rem; }
.footer-brand { color: var(--orange); font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }

@media (max-width: 720px) {
  .site-header { min-height: 76px; width: min(100% - 32px, 1160px); }
  .brand img { width: 140px; }
  .intro { min-height: auto; padding: 82px 24px 90px; }
  .intro::after { right: -170px; top: -100px; width: 330px; height: 330px; border-width: 52px; opacity: .55; }
  .services { width: min(100% - 32px, 1160px); padding: 72px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; padding: 26px 22px; }
  .service-number { margin-bottom: 28px; }
  footer { width: min(100% - 32px, 1160px); }
}
