:root {
  --cream: #fbf7ef;
  --ivory: #fffdf8;
  --ink: #23242a;
  --muted: #767985;
  --green: #0d493f;
  --green-soft: #e4efe7;
  --gold: #d99c13;
  --gold-soft: #fff2cf;
  --line: #e8decd;
  --coral: #cf6354;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  min-height: 100vh;
}

.nav {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1080px;
  padding: 22px;
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
}

.brand img {
  border-radius: 18px;
  height: 48px;
  width: 48px;
}

.brand strong {
  color: var(--green);
  font-size: 22px;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.hero {
  margin: 0 auto;
  max-width: 1080px;
  padding: 52px 22px 44px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: 1.05fr 0.95fr;
}

.eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.2px;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1 {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 8vw, 86px);
  letter-spacing: 0;
  line-height: 0.95;
  margin: 0 0 22px;
}

h2 {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1;
  margin: 0 0 18px;
}

h3 {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 8px;
}

.lead {
  color: var(--muted);
  font-size: 20px;
  max-width: 620px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  align-items: center;
  background: var(--green);
  border-radius: 16px;
  color: var(--ivory);
  display: inline-flex;
  font-weight: 900;
  min-height: 52px;
  padding: 0 20px;
}

.button.secondary {
  background: var(--green-soft);
  color: var(--green);
}

.phone {
  background: #0b3d35;
  border-radius: 34px;
  box-shadow: 0 24px 60px rgba(13, 73, 63, 0.22);
  color: var(--ivory);
  margin: 0 auto;
  max-width: 330px;
  overflow: hidden;
  padding: 22px;
}

.phone-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 34px;
}

.pill {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #eaf5ef;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 12px;
}

.timer {
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  line-height: 1;
  margin-bottom: 10px;
}

.phone-title {
  color: var(--ivory);
  font-size: 21px;
  font-weight: 900;
  margin-bottom: 22px;
}

.phone-row {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  gap: 12px;
  padding: 14px 0;
}

.dot {
  background: var(--gold);
  border-radius: 50%;
  height: 14px;
  width: 14px;
}

.dot.green {
  background: #58b892;
}

.band {
  background: var(--ivory);
  border-top: 1px solid var(--line);
  padding: 58px 22px;
}

.section {
  margin: 0 auto;
  max-width: 1080px;
}

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

.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.card-icon {
  align-items: center;
  background: var(--gold-soft);
  border-radius: 18px;
  color: var(--gold);
  display: flex;
  font-size: 26px;
  height: 52px;
  justify-content: center;
  margin-bottom: 18px;
  width: 52px;
}

.content {
  margin: 0 auto;
  max-width: 900px;
  padding: 44px 22px 72px;
}

.doc {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 5vw, 52px);
}

.doc h1 {
  font-size: clamp(38px, 7vw, 62px);
}

.doc h2 {
  border-top: 1px solid var(--line);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 21px;
  margin-top: 30px;
  padding-top: 24px;
}

.doc p,
.doc li {
  color: var(--muted);
  font-size: 16px;
}

.doc strong {
  color: var(--ink);
}

.notice {
  background: var(--green-soft);
  border-radius: 8px;
  color: var(--green);
  font-weight: 800;
  padding: 16px;
}

.footer {
  color: var(--muted);
  margin: 0 auto;
  max-width: 1080px;
  padding: 30px 22px 46px;
}

@media (max-width: 760px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero {
    padding-top: 28px;
  }

  .phone {
    max-width: 100%;
  }
}
