:root {
  --bg-cream: #f6f1dc;
  --bg-sand: #eadfc1;
  --bg-card: #fffdf5;
  --ink: #1d2a26;
  --ink-soft: #3e4d49;
  --accent: #bd5a2b;
  --accent-deep: #8f3d17;
  --line: #d6c7a3;
  --shadow: 0 12px 32px rgba(47, 42, 23, 0.14);
  --radius: 1rem;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f8f3e3 0%, #f5ebd0 100%);
  line-height: 1.55;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.1;
  margin-top: 0;
}

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

h2 {
  font-size: clamp(1.6rem, 5.4vw, 2.8rem);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: clamp(1.25rem, 4vw, 1.65rem);
}

p {
  margin-top: 0;
}

.container {
  width: min(70rem, 92vw);
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 3rem;
  background:
    radial-gradient(circle at 20% -10%, #ffd68f 0%, transparent 45%),
    radial-gradient(circle at 80% 10%, #f2b978 0%, transparent 35%),
    linear-gradient(160deg, #1f3f37 10%, #27483f 70%, #2f5c4f 100%);
  color: #fff7e3;
}

.hero__grain {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.15;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__logo {
  width: min(26rem, 90vw);
  margin-bottom: 0.9rem;
}

.sundog-logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(255, 212, 136, 0.25));
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.hero__lede {
  max-width: 62ch;
  font-size: 1.08rem;
  color: #fff0cf;
  margin-bottom: 1.35rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0 1rem;
}

.social-row {
  display: flex;
  gap: 1.1rem;
}

.social-row a {
  color: #fff7e3;
  font-weight: 700;
}

.section {
  padding: 3.5rem 0;
}

.section--tight {
  padding: 2.5rem 0 4rem;
}

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

.section--sand {
  background: var(--bg-sand);
}

.section__label {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--accent-deep);
  margin-bottom: 0.45rem;
}

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

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

.feature-list li + li {
  margin-top: 0.45rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.card--accent {
  border-left: 0.55rem solid var(--accent);
}

.stack {
  display: grid;
  gap: 0.55rem;
}

label {
  font-size: 0.9rem;
  font-weight: 700;
}

input {
  width: 100%;
  border: 1px solid #bcae8e;
  border-radius: 0.7rem;
  padding: 0.72rem 0.8rem;
  font-size: 1rem;
  font-family: inherit;
  background: #fffdf8;
}

input:focus-visible,
.btn:focus-visible,
a:focus-visible {
  outline: 3px solid #2f5c4f;
  outline-offset: 2px;
}

.form-note {
  margin-top: 0.15rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 0.75rem 1.05rem;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
  cursor: pointer;
}

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

.btn--full {
  width: 100%;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(143, 61, 23, 0.26);
}

.btn--primary:hover {
  background: var(--accent-deep);
}

.btn--secondary {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn--secondary:hover {
  background: rgba(29, 42, 38, 0.08);
}

.hero .btn--secondary {
  color: #fff7e3;
  border-color: #fff7e3;
  background: rgba(255, 247, 227, 0.08);
}

.hero .btn--secondary:hover {
  background: rgba(255, 247, 227, 0.2);
}

.hero .btn--secondary:focus-visible {
  outline-color: #fff7e3;
}

.final-cta {
  text-align: center;
}

.footer {
  background: #142822;
  color: #fbf1d4;
  padding: 1rem 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer a {
  color: #fbf1d4;
}

@media (min-width: 760px) {
  .hero {
    padding: 6rem 0 4.5rem;
  }

  .hero__logo {
    width: 28rem;
    margin-bottom: 1.1rem;
  }

  .grid {
    grid-template-columns: 1.2fr 0.95fr;
    align-items: start;
    gap: 2rem;
  }

  .card {
    padding: 1.35rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__inner,
  .section,
  .card {
    animation: rise 0.55s ease both;
  }

  .section {
    animation-delay: 0.1s;
  }

  .card {
    animation-delay: 0.18s;
  }

  @keyframes rise {
    from {
      opacity: 0;
      transform: translateY(12px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
