:root {
  --ink: #171717;
  --muted: #686868;
  --paper: #fffdf8;
  --cream: #f5efe4;
  --orange: #e95721;
  --gold: #f4b51d;
  --line: rgba(23, 23, 23, .12);
  --shadow: 0 22px 55px rgba(30, 20, 10, .13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

a { color: inherit; }

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, .94);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  color: white;
  background: var(--ink);
  box-shadow: inset 0 -3px 0 var(--orange);
}

.nav-call {
  font-weight: 800;
  text-decoration: none;
}

.hero {
  padding: 88px 0 76px;
  background:
    radial-gradient(circle at 15% 10%, rgba(244,181,29,.18), transparent 34%),
    linear-gradient(135deg, #fffdf8 0%, #f8f0e3 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

h1, h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -.045em;
}

h1 {
  max-width: 700px;
  font-size: clamp(3rem, 7vw, 6.25rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.7rem);
}

.lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  color: white;
  background: var(--ink);
  box-shadow: 0 10px 24px rgba(23,23,23,.18);
}

.secondary {
  border: 1px solid var(--ink);
  background: transparent;
}

.logo-card {
  padding: 22px;
  border: 1px solid rgba(23,23,23,.08);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.logo-card img {
  width: 100%;
  border-radius: 10px;
}

.contact-section {
  padding: 90px 0;
  background: #151515;
  color: white;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.contact-card {
  min-height: 145px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 12px;
  background: rgba(255,255,255,.045);
  overflow-wrap: anywhere;
}

.contact-card .label {
  margin-bottom: 8px;
  color: rgba(255,255,255,.62);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.contact-card strong,
.contact-card a,
.contact-card > span:last-child {
  font-size: 1.08rem;
  font-weight: 800;
}

.contact-card a {
  text-decoration-color: var(--orange);
  text-underline-offset: 4px;
}

.simple-section {
  padding: 88px 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: end;
}

.split p:not(.eyebrow) {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.12rem;
}

.text-link {
  color: var(--orange);
  font-weight: 900;
  text-decoration: none;
}

footer {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 850px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-card {
    max-width: 620px;
    transform: none;
  }
}

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

  .brand span:last-child {
    display: none;
  }

  .nav-call {
    font-size: .9rem;
  }

  .hero {
    padding-top: 56px;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4rem);
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-row {
    flex-direction: column;
  }
}
