* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f3ed;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --text: #1f201b;
  --muted: #5f6258;
  --accent: #2f4936;
  --accent-dark: #23382a;
  --cream: #ece7de;
  --border: rgba(31, 32, 27, 0.08);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  --radius: 18px;
  --max: 1160px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button {
  font: inherit;
}

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

.narrow {
  max-width: 780px;
}

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  padding: 1rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand:hover {
  text-decoration: none;
}

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

.nav a {
  color: #ffffff;
  font-size: 0.95rem;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: center;
  background-image: url('images/pinetrees.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 19, 15, 0.36) 0%, rgba(14, 19, 15, 0.48) 38%, rgba(14, 19, 15, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  max-width: 850px;
  padding: 8rem 0 5rem;
}

.eyebrow,
.section-label {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

.section-label {
  color: var(--accent);
}

h1, h2, h3 {
  line-height: 1.15;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  max-width: 10ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.3rem;
}

p {
  margin: 0 0 1rem;
}

.hero-text {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  margin-bottom: 1.5rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  text-decoration: none;
}

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

.button.primary {
  background: #ffffff;
  color: var(--accent-dark);
}

.button.secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.button.outline-dark {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid rgba(35, 56, 42, 0.25);
}

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

.hero-point {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 1rem;
  backdrop-filter: blur(4px);
}

.hero-point strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

.hero-point span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
}

.section {
  padding: 5.5rem 0;
}

.section.alt {
  background: var(--cream);
}

.intro-band {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.intro-grid,
.two-col,
.cta-box,
.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

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

.section-heading.left {
  margin-bottom: 2rem;
}

.info-card,
.card,
.step-card,
.quote-card,
.audience-item,
.faq-item {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-card {
  padding: 1.5rem;
}

.check-list {
  margin: 0;
  padding-left: 1.2rem;
}

.check-list li {
  margin-bottom: 0.65rem;
}

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

.step-card {
  padding: 1.5rem;
}

.step-number {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
}

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

.card,
.quote-card,
.audience-item,
.faq-item {
  padding: 1.5rem;
}

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

.quote-card p {
  font-size: 1.08rem;
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.cta-box {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 2rem;
}

.site-footer {
  padding: 2.5rem 0 4.5rem;
  background: #efe9df;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem 1.25rem;
}

.site-footer p {
  color: var(--muted);
  margin-bottom: 0;
}

.calendly-float {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 40;
}

.calendly-float button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.25rem;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(21, 31, 23, 0.24);
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.calendly-float button:hover {
  background: var(--accent-dark);
}

@media (max-width: 980px) {
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid,
  .quote-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-points,
  .audience-list {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .two-col,
  .cta-box,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-top: 0.75rem;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: 88vh;
  }

  .card-grid,
  .quote-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 12ch;
  }
}

@media (max-width: 560px) {
  .hero-content {
    padding-top: 9.5rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .calendly-float button {
    width: 100%;
  }

  .calendly-float {
    right: 1rem;
  }
}
