:root {
  --bg: #fff8ef;
  --bg-soft: #f7eadb;
  --card: #ffffff;
  --text: #2a1f1a;
  --muted: #6f5b50;

  --coffee: #6b3f2a;
  --coffee-dark: #3d2418;

  --gold: #f6c453;
  --blue: #2d6cdf;
  --red: #d94b4b;

  --green: #527853;
  --border: rgba(42, 31, 26, 0.12);
  --shadow: 0 24px 70px rgba(61, 36, 24, 0.16);

  --radius-lg: 32px;
  --radius-md: 22px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at top left,
      rgba(246, 196, 83, 0.35),
      transparent 30%
    ),
    radial-gradient(
      circle at top right,
      rgba(217, 75, 75, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(45, 108, 223, 0.14),
      transparent 32%
    ),
    var(--bg);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--coffee-dark);
}

.site-nav {
  display: flex;
  gap: 22px;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--coffee-dark);
}

.hero {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 32px auto 72px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 32px;
  align-items: center;
}

.hero-content {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 6vw, 72px);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
  color: var(--coffee-dark);
}

h1 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 11vw, 8.5rem);
  letter-spacing: -0.07em;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4rem);
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.hero-text {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #fff;
  background: var(--coffee);
}

.button.primary:hover {
  background: var(--coffee-dark);
}

.button.secondary {
  color: var(--coffee-dark);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--border);
}

.button.secondary:hover {
  border-color: rgba(61, 36, 24, 0.32);
}

.hero-card {
  background: var(--coffee-dark);
  color: #fff8ef;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.hero-card h2 {
  margin: 20px 0 8px;
  color: #fff8ef;
  font-size: 2.5rem;
}

.hero-card p {
  margin-bottom: 0;
  color: rgba(255, 248, 239, 0.82);
}

.photo-placeholder,
.dog-image-placeholder {
  min-height: 280px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(246, 196, 83, 0.95), rgba(217, 75, 75, 0.85)),
    var(--gold);
  color: rgba(61, 36, 24, 0.75);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto 72px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 26px;
}

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

.info-card {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: 0 16px 40px rgba(61, 36, 24, 0.08);
}

.info-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-section {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 24px;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 52px);
  box-shadow: 0 18px 50px rgba(61, 36, 24, 0.09);
}

.feature-text p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.color-strip {
  display: grid;
  grid-template-rows: 2fr 1fr 1fr;
  overflow: hidden;
  min-height: 260px;
  border-radius: 26px;
  box-shadow: inset 0 0 0 1px rgba(42, 31, 26, 0.12);
}

.color-strip span {
  display: block;
}

.color-strip .yellow {
  background: var(--gold);
}

.color-strip .blue {
  background: var(--blue);
}

.color-strip .red {
  background: var(--red);
}

.dog-section {
  margin-bottom: 48px;
}

.dog-card {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 32px;
  align-items: center;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 5vw, 42px);
}

.dog-image-placeholder {
  min-height: 320px;
  background:
    linear-gradient(135deg, rgba(82, 120, 83, 0.78), rgba(107, 63, 42, 0.88)),
    var(--green);
  color: rgba(255, 248, 239, 0.84);
}

.dog-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.site-footer {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 38px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 820px) {
  .hero,
  .feature-section,
  .dog-card {
    grid-template-columns: 1fr;
  }

  .hero-card {
    transform: none;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    gap: 16px;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .site-nav a {
    font-size: 0.9rem;
  }

  .hero {
    margin-top: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .photo-placeholder,
  .dog-image-placeholder {
    min-height: 230px;
  }
}
