:root {
  --bg: #f5efe5;
  --bg-soft: #fcf8f2;
  --panel: rgba(255, 255, 255, 0.74);
  --ink: #17212b;
  --muted: #556270;
  --line: rgba(23, 33, 43, 0.12);
  --brand: #0e2433;
  --brand-2: #c96d42;
  --brand-3: #ecd8bc;
  --shadow: 0 24px 60px rgba(14, 36, 51, 0.14);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(201, 109, 66, 0.20), transparent 28%),
    linear-gradient(180deg, #f7f1e9 0%, #f1e7d6 100%);
}

a {
  color: inherit;
}

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

.hero {
  position: relative;
  overflow: clip;
  padding: 5rem 0 4rem;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(201, 109, 66, 0.30), transparent 18%),
    radial-gradient(circle at 82% 16%, rgba(14, 36, 51, 0.18), transparent 20%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.08));
  pointer-events: none;
}

.hero__content,
.section,
.footer {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-label {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-2);
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 8vw, 5.8rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.45rem;
}

.lead,
.panel p,
.service-card p,
.footer,
.benefits,
.contact-list,
.checklist {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.lead {
  max-width: 44rem;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

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

.button--primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 18px 28px rgba(14, 36, 51, 0.24);
}

.button--ghost {
  border-color: rgba(14, 36, 51, 0.18);
  background: rgba(255, 255, 255, 0.55);
}

.section {
  padding: 1.5rem 0 4rem;
}

.section--light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.72));
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid rgba(14, 36, 51, 0.06);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

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

.panel {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.panel--accent {
  background:
    linear-gradient(135deg, rgba(14, 36, 51, 0.92), rgba(14, 36, 51, 0.78)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.02));
  color: #f7f1e9;
}

.panel--accent p,
.panel--accent h2,
.panel--accent .section-label {
  color: inherit;
}

.checklist ul,
.benefits {
  padding-left: 1.2rem;
  margin-bottom: 0;
}

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

.service-card {
  min-height: 100%;
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 30px rgba(14, 36, 51, 0.08);
}

.contact-panel {
  background:
    linear-gradient(180deg, rgba(201, 109, 66, 0.08), rgba(255, 255, 255, 0.78)),
    #fff;
}

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

.contact-list div {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.contact-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-list dt {
  margin-bottom: 0.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.contact-list dd {
  margin: 0;
}

.footer {
  padding: 0 0 2rem;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(14, 36, 51, 0.12);
}

@media (max-width: 920px) {
  .grid--two,
  .service-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 4rem;
  }

  .panel,
  .service-card {
    padding: 1.4rem;
  }

  .footer__content {
    flex-direction: column;
  }
}
