/* 
WaddleNav Plain HTML/CSS Starter Site
Replace placeholder logo/hero areas with final assets when ready.
*/

:root {
  --green: #214d3b;
  --green-light: #eaf4ef;
  --cream: #fffaf0;
  --dark: #16231d;
  --text: #39443f;
  --muted: #69756f;
  --white: #ffffff;
  --border: #dce6df;
  --shadow: 0 20px 50px rgba(22, 35, 29, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

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

.site-header {
  background: rgba(255, 250, 240, 0.95);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--green);
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--green);
  color: var(--white);
  border-radius: 12px;
  font-weight: 900;
}

.logo-text {
  font-size: 1.1rem;
}

.nav,
.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.95rem;
  color: var(--dark);
}

.nav a:hover,
.footer-links a:hover {
  color: var(--green);
}

.hero {
  padding: 80px 0;
  background:
    radial-gradient(circle at top right, #d8efe4 0, transparent 38%),
    linear-gradient(135deg, var(--cream) 0%, var(--green-light) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  color: var(--dark);
  line-height: 1.1;
  margin: 0 0 18px;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.35rem;
}

.hero-text,
.section-text {
  font-size: 1.2rem;
  max-width: 680px;
  color: var(--text);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

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

.button.primary {
  background: var(--green);
  color: var(--white);
}

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

.hero-image {
  min-height: 420px;
  border-radius: 36px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(33, 77, 59, 0.15), rgba(33, 77, 59, 0.03)),
    var(--white);
  box-shadow: var(--shadow);
}

.hero-card {
  height: 100%;
  min-height: 384px;
  border: 2px dashed #adc8bb;
  border-radius: 26px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px;
  background: var(--green-light);
}

.hero-card p {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--green);
  margin: 0;
}

.hero-card span {
  display: block;
  color: var(--muted);
  max-width: 320px;
  margin-top: 8px;
}

.section {
  padding: 78px 0;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 10px 24px rgba(22, 35, 29, 0.06);
}

.card p {
  margin-bottom: 0;
}

.highlight {
  background: var(--green);
  color: var(--white);
}

.highlight h2,
.highlight .eyebrow {
  color: var(--white);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.split p {
  font-size: 1.15rem;
}

.contact-section {
  text-align: center;
  background: var(--green-light);
}

.contact-section p {
  max-width: 640px;
  margin: 0 auto 24px;
}

.page-hero {
  padding: 70px 0;
  background: var(--green-light);
}

.content-page {
  max-width: 780px;
}

.site-footer {
  background: var(--dark);
  color: var(--white);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 850px) {
  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav,
  .footer-links {
    flex-wrap: wrap;
  }

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

  .hero {
    padding: 54px 0;
  }

  .hero-image {
    min-height: 300px;
  }

  .hero-card {
    min-height: 260px;
  }

  .section {
    padding: 54px 0;
  }
}
