*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background: #fff7ed;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 100% - 32px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: #ffe9a8;
  border-bottom: 1px solid rgba(248, 171, 120, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: #111827;
}

.logo span {
  color: #f97316;
}

.logo.small {
  font-size: 16px;
}

.nav {
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.nav a {
  color: #111827;
  padding: 4px 0;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #fb923c, #f97316);
  transition: width 0.2s ease-out;
}

.nav a:hover::after {
  width: 100%;
}

.hero {
  padding: 72px 0 56px;
  background: #ffe9a8;
  color: #111827;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 40px;
  align-items: stretch;
}

.hero-text h1 {
  font-size: clamp(32px, 5vw, 40px);
  margin: 8px 0 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  color: #ea580c;
}

.subtitle {
  color: #111827;
  max-width: 34rem;
  font-size: 15px;
  line-height: 1.7;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-tags span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(248, 171, 120, 0.7);
  background: rgba(255, 248, 237, 0.95);
}

.hero-card {
  border-radius: 18px;
  padding: 20px 20px 22px;
  background: radial-gradient(circle at top, rgba(251, 146, 60, 0.22), transparent 70%),
              #ffffff;
  border: 1px solid rgba(248, 171, 120, 0.7);
  box-shadow: 0 18px 45px rgba(180, 83, 9, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #ea580c;
  margin-bottom: 4px;
}

.hero-card h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.hero-card-text {
  font-size: 14px;
  color: #111827;
  line-height: 1.7;
}

.section {
  padding: 56px 0;
  background: #fff3b0;
  color: #111827;
}

.section-alt {
  background: #ffe9a8;
}

.section-title {
  font-size: 22px;
  margin: 0 0 8px;
}

.section-lead {
  margin: 0 0 24px;
  color: #111827;
  font-size: 14px;
  max-width: 38rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.card {
  border-radius: 16px;
  padding: 18px 18px 20px;
  background: radial-gradient(circle at top left, rgba(251, 146, 60, 0.16), transparent 70%),
              #ffffff;
  border: 1px solid rgba(248, 171, 120, 0.7);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.card p {
  margin: 0;
  font-size: 14px;
  color: #111827;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.logo-pill {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(248, 171, 120, 0.7);
  background: #ffffff;
  font-size: 13px;
}

.careers-box {
  border-radius: 16px;
  padding: 18px 18px 20px;
  background: #ffffff;
  border: 1px solid rgba(248, 171, 120, 0.7);
}

.careers-box h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.careers-box ul {
  margin: 0 0 12px;
  padding-left: 20px;
  font-size: 14px;
  color: #111827;
}

.careers-box li + li {
  margin-top: 4px;
}

.careers-note {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 14px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  background: linear-gradient(to right, #fb923c, #f97316);
  color: #111827;
  font-weight: 600;
  border: none;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 32px;
}

.company-details dl {
  margin: 0;
}

.company-details .row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.4);
}

.company-details dt {
  font-size: 13px;
  color: #4b5563;
}

.company-details dd {
  margin: 0;
  font-size: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.contact-box {
  border-radius: 16px;
  padding: 18px 18px 20px;
  background: #ffffff;
  border: 1px solid rgba(248, 171, 120, 0.7);
}

.contact-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #4b5563;
  margin: 0 0 6px;
}

.contact-link {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: #ea580c;
  margin-bottom: 6px;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-note {
  font-size: 13px;
  color: #4b5563;
  margin: 0;
}

.site-footer {
  background: #ffe9a8;
  border-top: 1px solid rgba(248, 171, 120, 0.7);
  padding: 14px 0;
  color: #4b5563;
  font-size: 13px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-copy {
  margin: 4px 0 0;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  color: #4b5563;
  font-size: 13px;
}

@media (max-width: 800px) {
  .nav {
    display: none;
  }

  .hero-inner,
  .company-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 60px;
  }

  .hero-card {
    order: -1;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}


