:root {
  color-scheme: light;
  --canvas: #ed9636;
  --ink: #17130f;
  --muted-ink: rgba(23, 19, 15, 0.64);
  --line: rgba(23, 19, 15, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--canvas);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 222, 171, 0.24), transparent 38%),
    var(--canvas);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: clamp(64px, 8vw, 118px) clamp(64px, 8vw, 118px);
  opacity: 0.12;
  content: "";
  pointer-events: none;
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 72%);
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.site-shell {
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(22px, 3.5vw, 52px);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-brand {
  display: block;
  width: clamp(138px, 14vw, 196px);
  color: inherit;
}

.site-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-contact {
  color: inherit;
  text-decoration: none;
}

.site-contact::after {
  display: inline-block;
  margin-left: 8px;
  content: "\2197";
  transition: transform 180ms ease;
}

.site-contact:hover::after,
.site-contact:focus-visible::after {
  transform: translate(2px, -2px);
}

.site-contact:focus-visible,
.contact-card a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

.hero {
  display: grid;
  min-height: calc(100vh - clamp(92px, 9vw, 130px));
  min-height: calc(100svh - clamp(92px, 9vw, 130px));
  align-items: center;
  padding: clamp(72px, 12vh, 150px) 0;
}

.hero__panel {
  display: grid;
  width: 100%;
  min-height: clamp(560px, 68vh, 760px);
  grid-template-rows: minmax(0, 1fr) auto;
  padding: clamp(28px, 4.4vw, 72px);
  overflow: hidden;
  border-radius: clamp(20px, 3vw, 48px);
  background: var(--ink);
  color: #f7efe5;
  box-shadow: 0 32px 80px rgba(86, 45, 10, 0.18);
}

.hero__panel h1 {
  display: grid;
  align-self: center;
  justify-items: center;
  margin: 0;
  text-align: center;
}

.hero__script {
  position: relative;
  z-index: 1;
  margin: 0 0 0.12em;
  color: var(--canvas);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 8.7vw, 9rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.78;
}

.hero__solid {
  font-size: clamp(4rem, 9.8vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.82;
  white-space: nowrap;
}

.hero__scope {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(247, 239, 229, 0.24);
  color: rgba(247, 239, 229, 0.58);
  font-size: clamp(0.68rem, 1vw, 0.78rem);
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.hero__scope span {
  color: var(--canvas);
}

.eyebrow {
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.intro {
  display: grid;
  min-height: min(840px, 90vh);
  min-height: min(840px, 90svh);
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(64px, 10vw, 180px);
  margin-inline: calc(clamp(22px, 3.5vw, 52px) * -1);
  padding: clamp(78px, 10vw, 150px) clamp(22px, 5.5vw, 96px);
  background: var(--ink);
  color: #f7efe5;
}

.intro__lead {
  align-self: start;
}

.eyebrow {
  margin: 0 0 24px;
  color: rgba(247, 239, 229, 0.55);
}

h2 {
  margin: 0;
  font-size: clamp(3.6rem, 8vw, 8.5rem);
  font-weight: 780;
  letter-spacing: -0.075em;
  line-height: 0.98;
}

h2 em {
  color: var(--canvas);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.intro__content {
  align-self: start;
}

.intro__summary {
  max-width: 670px;
  margin: 0 0 clamp(60px, 8vw, 108px);
  color: #f7efe5;
  font-size: clamp(1.5rem, 2.7vw, 2.65rem);
  font-weight: 520;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.services {
  margin: 0;
}

.service {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(220px, 1.2fr);
  gap: 28px;
  padding: 24px 0;
  border-top: 1px solid rgba(247, 239, 229, 0.22);
}

.service:last-child {
  border-bottom: 1px solid rgba(247, 239, 229, 0.22);
}

.service dt,
.service dd {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.service dt {
  font-weight: 720;
}

.service dd {
  color: rgba(247, 239, 229, 0.6);
}

.contact-card {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-top: clamp(60px, 8vw, 100px);
}

.contact-card span {
  color: rgba(247, 239, 229, 0.55);
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card a {
  color: #f7efe5;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  text-decoration-color: var(--canvas);
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.site-footer {
  margin-inline: calc(clamp(22px, 3.5vw, 52px) * -1);
  padding: 18px clamp(22px, 3.5vw, 52px) 20px;
  background: var(--canvas);
}

.site-footer p {
  width: min(100%, 980px);
  margin: 0;
  color: var(--muted-ink);
  font-size: clamp(0.68rem, 1.1vw, 0.78rem);
  letter-spacing: 0.018em;
  line-height: 1.55;
  text-align: left;
}

@media (max-width: 620px) {
  .site-shell {
    padding: 20px;
  }

  .site-header {
    align-items: flex-start;
    padding-bottom: 16px;
    font-size: 0.62rem;
  }

  .hero {
    min-height: calc(100svh - 54px);
    padding: 48px 0 64px;
  }

  .hero__panel {
    min-height: clamp(570px, 76svh, 680px);
    padding: 26px 22px;
    border-radius: 24px;
  }

  .hero__script {
    margin: 0 0 0.18em;
    font-size: clamp(3.25rem, 17vw, 5.2rem);
    line-height: 0.8;
  }

  .hero__solid {
    max-width: 6.4ch;
    font-size: clamp(4.1rem, 20vw, 6.2rem);
    line-height: 0.8;
    white-space: normal;
  }

  .hero__scope {
    gap: 7px 10px;
    padding-top: 18px;
    font-size: 0.59rem;
  }

  .intro {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 64px;
    margin-inline: -20px;
    padding: 78px 20px 84px;
  }

  h2 {
    font-size: clamp(3.7rem, 19vw, 5.8rem);
  }

  .intro__summary {
    margin-bottom: 56px;
    font-size: 1.55rem;
  }

  .service {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }

  .contact-card {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 58px;
  }

  .site-footer {
    margin-inline: -20px;
    padding: 16px 20px 18px;
  }

  .site-footer p {
    font-size: 0.64rem;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
