:root {
  color-scheme: light;
  --bg: #f7f6f2;
  --surface: #ffffff;
  --text: #242424;
  --muted: #707070;
  --line: #dedbd2;
  --accent: #f45532;
  --accent-dark: #d84425;
  --shadow: 0 18px 60px rgba(36, 36, 36, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(244, 85, 50, 0.09), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.page-shell {
  width: min(1120px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 28px 0 72px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  width: 22px;
  height: 22px;
  border: 6px solid var(--text);
  border-right-color: var(--accent);
  border-radius: 50%;
}

.contact-link,
.secondary-action {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.contact-link:hover,
.secondary-action:hover {
  color: var(--text);
}

.hero {
  display: grid;
  align-content: center;
  min-height: 64vh;
  padding: 92px 0 80px;
}

.eyebrow,
.section-kicker,
.card-label {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(56px, 9vw, 112px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 500;
  line-height: 1.35;
}

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

.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
}

.primary-action {
  background: var(--text);
  color: var(--surface);
  font-size: 15px;
  font-weight: 700;
}

.primary-action:hover {
  background: var(--accent-dark);
}

.secondary-action {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.work-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 40px;
  border-top: 1px solid var(--line);
  padding-top: 44px;
}

h2 {
  max-width: 380px;
  margin-bottom: 0;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

.work-grid {
  display: grid;
  gap: 16px;
}

.work-card {
  border: 1px solid rgba(222, 219, 210, 0.75);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  padding: 28px;
}

.work-card h3 {
  margin: 16px 0 10px;
  font-size: 26px;
  line-height: 1.15;
}

.work-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 72px;
  padding-top: 24px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 32px, 1120px);
    padding-top: 22px;
  }

  .hero {
    min-height: 58vh;
    padding: 76px 0 60px;
  }

  .work-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer {
    margin-top: 56px;
  }
}
