:root {
  --bg: #f4efe8;
  --surface: #fffaf4;
  --surface-strong: #ffffff;
  --ink: #1d1a16;
  --muted: #62574b;
  --line: rgba(29, 26, 22, 0.08);
  --brand: #b85c2f;
  --brand-dark: #8b3d1d;
  --accent: #264653;
  --shadow: 0 24px 60px rgba(42, 30, 17, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(184, 92, 47, 0.16), transparent 32%),
    linear-gradient(180deg, #f6f1eb 0%, #f4efe8 42%, #efe7dc 100%);
}

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(244, 239, 232, 0.75);
  border-bottom: 1px solid rgba(29, 26, 22, 0.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand,
.nav a,
.eyebrow,
.button,
.service-card h3,
.hero-card h2,
.section-heading h2,
.company h2,
.footer h2 {
  font-family: "Outfit", sans-serif;
}

.brand {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  gap: 1.25rem;
  color: var(--muted);
}

.hero {
  padding: 5.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 420px);
  gap: 2rem;
  align-items: stretch;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.hero h1,
.section-heading h2,
.company h2,
.footer h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(2.9rem, 7vw, 5.4rem);
  max-width: 12ch;
}

.hero-text,
.company-copy p,
.footer p,
.highlight-grid p,
.hero-card p,
.service-card li {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  font-size: 1.08rem;
  max-width: 62ch;
  margin: 1.4rem 0 0;
}

.hero-actions,
.footer-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button-primary {
  background: var(--ink);
  color: #fff;
}

.button-primary:hover {
  background: var(--brand-dark);
}

.button-secondary {
  border: 1px solid rgba(29, 26, 22, 0.12);
  background: rgba(255, 255, 255, 0.55);
}

.hero-points {
  display: grid;
  gap: 0.85rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li::before {
  content: "";
  display: inline-block;
  width: 0.65rem;
  height: 0.65rem;
  margin-right: 0.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), #e7a774);
  box-shadow: 0 0 0 6px rgba(184, 92, 47, 0.1);
}

.hero-card,
.service-card,
.highlight-grid article {
  background: rgba(255, 250, 244, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -2rem -2rem auto;
  width: 10rem;
  height: 10rem;
  background: radial-gradient(circle, rgba(184, 92, 47, 0.2), transparent 68%);
}

.badge {
  display: inline-flex;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(38, 70, 83, 0.1);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-card h2 {
  margin: 1rem 0 0.6rem;
  font-size: 2rem;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 0;
}

.contact-list dt {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.contact-list dd {
  margin: 0.3rem 0 0;
  font-size: 1rem;
}

.highlights {
  padding: 0 0 2rem;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.highlight-grid article {
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.highlight-grid strong {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.section {
  padding: 4rem 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 5vw, 3.3rem);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.service-card {
  padding: 1.6rem;
  border-radius: var(--radius-md);
}

.service-card h3 {
  margin: 0 0 1rem;
  font-size: 1.45rem;
}

.service-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.service-card li + li {
  margin-top: 0.55rem;
}

.company-grid,
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.company-copy,
.footer-grid {
  max-width: 720px;
}

.footer {
  padding: 4rem 0 5rem;
  background: linear-gradient(180deg, rgba(38, 70, 83, 0.06), rgba(38, 70, 83, 0.14));
  border-top: 1px solid rgba(38, 70, 83, 0.1);
}

@media (max-width: 900px) {
  .topbar-inner,
  .hero-grid,
  .highlight-grid,
  .service-grid,
  .company-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .hero {
    padding-top: 4rem;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 2.7rem;
  }

  .hero-card,
  .service-card,
  .highlight-grid article {
    padding: 1.25rem;
  }

  .button {
    width: 100%;
  }
}
