:root {
  color-scheme: light;
  --bg: #f8f1e5;
  --surface: #fff8ec;
  --accent: #c58e37;
  --accent-strong: #a66f24;
  --text: #2a2118;
  --muted: #5b4a3f;
  --border: rgba(42, 33, 24, 0.12);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

body {
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  min-height: 100vh;
  padding: 1.25rem;
}

.hero {
  position: relative;
  background: linear-gradient(180deg, rgba(197, 142, 55, 0.15), rgba(248, 241, 229, 0.9));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem 1.5rem 2.5rem;
  overflow: hidden;
}

.hero-brand {
  display: grid;
  gap: 1.25rem;
}

.logo {
  width: 120px;
  height: auto;
  border-radius: 20px;
  border: 1px solid rgba(42, 33, 24, 0.1);
}

.hero-text {
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.hero-copy,
.hero-note {
  color: var(--muted);
}

.hero-copy {
  margin: 1rem 0 0;
  max-width: 34rem;
}

.hero-note {
  margin: 0.8rem 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.75rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(197, 142, 55, 0.16);
}

.hero-dog {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 90px;
  opacity: 0.95;
}

main {
  margin-top: 2rem;
}

.section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.75rem;
  margin-top: 1.5rem;
}

.section h2 {
  margin-top: 0;
  font-size: 1.8rem;
}

.intro {
  display: grid;
  gap: 1.5rem;
}

.section-image {
  overflow: hidden;
  border-radius: 20px;
}

.section-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.cards {
  display: grid;
  gap: 1rem;
}

.card {
  padding: 1.25rem;
  background: #fff;
  border: 1px solid rgba(42, 33, 24, 0.08);
  border-radius: 18px;
}

.card h3 {
  margin-top: 0;
}

.idea-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 1rem 0 1.5rem;
}

.idea-list li {
  padding: 0.25rem 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.dog-section {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 2rem;
  align-items: center;
}

.dog-section .section-image {
  max-width: 280px;
  margin-left: auto;
}

.dog-section .section-image img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 20px;
}

.contact {
  text-align: center;
}

.contact .button.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--text);
  margin-top: 1rem;
}

.footer {
  margin-top: 1.75rem;
  font-size: 0.95rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

@media (min-width: 720px) {
  .page-shell {
    max-width: 920px;
    margin: 0 auto;
    padding: 2rem;
  }

  .hero {
    padding: 3rem 2.5rem 3.5rem;
  }

  .hero-brand {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .hero-dog {
    width: 120px;
  }

  .intro {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .section {
    padding: 2rem;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 719px) {
  .dog-section {
    grid-template-columns: 1fr;
  }

  .dog-section .section-image {
    max-width: 240px;
    margin: 1rem auto 0;
  }
}