:root {
  --oxford-blue: #16213E;
  --deep-blue: #10172A;
  --sage-green: #A8BFA3;
  --warm-coral: #D96C5F;
  --soft-cream: #F7F3EA;
  --paper: #FFFFFF;
  --text: #202434;
  --muted-text: #626B7A;
  --line: #E4E1D8;
  --shadow: 0 18px 60px rgba(16, 23, 42, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(168, 191, 163, 0.22), transparent 36rem),
    linear-gradient(180deg, var(--soft-cream) 0%, #ffffff 42%, var(--soft-cream) 100%);
}

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

.site-header {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 260px;
  max-width: 100%;
  height: auto;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted-text);
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--oxford-blue);
}

.hero {
  width: min(1120px, calc(100% - 40px));
  margin: 56px auto 92px;
  padding: clamp(42px, 8vw, 86px);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(228, 225, 216, 0.9);
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--warm-coral);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

h1 {
  max-width: 920px;
  margin: 0;
  color: var(--deep-blue);
  font-size: clamp(2.3rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.hero-text {
  max-width: 690px;
  margin: 28px 0 0;
  color: var(--muted-text);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 760;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--oxford-blue);
  color: #ffffff;
}

.button.secondary {
  background: #ffffff;
  color: var(--oxford-blue);
  border-color: var(--line);
}

.section {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto 34px;
  padding: clamp(30px, 5vw, 54px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 30px;
}

.section.muted {
  background: rgba(247, 243, 234, 0.76);
}

.section h2 {
  max-width: 720px;
  margin: 0;
  color: var(--deep-blue);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section p {
  max-width: 760px;
  color: var(--muted-text);
  font-size: 1.05rem;
  line-height: 1.72;
}

.cards {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  min-height: 170px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.card h3 {
  margin: 0 0 12px;
  color: var(--oxford-blue);
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.62;
}

.steps {
  margin: 28px 0 0;
  padding-left: 1.35rem;
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.9;
}

.contact {
  text-align: left;
}

.small {
  font-size: 0.94rem !important;
  color: var(--muted-text);
}

.site-footer {
  width: min(1040px, calc(100% - 40px));
  margin: 22px auto 0;
  padding: 38px 0 50px;
  color: var(--muted-text);
  font-size: 0.95rem;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .hero {
    margin-top: 24px;
    border-radius: 28px;
  }

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

  .brand-logo {
  width: 220px;
}
}

@media (max-width: 520px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    width: min(100% - 28px, 1040px);
  }

  .hero {
    padding: 34px 24px;
  }

  .section {
    padding: 28px 22px;
  }

  .nav {
    gap: 16px;
    font-size: 0.88rem;
  }

  .button {
    width: 100%;
  }

  .brand-logo {
  width: 190px;
}
}
