@font-face {
  font-family: 'Domine';
  src: url('fonts/domine-700-latin.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Public Sans';
  src: url('fonts/publicsans-var-latin.woff2') format('woff2');
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #FCFCF8;
  --surface: #FFFFFF;
  --ink: #26312F;
  --accent: #7AA802;
  --lox: #F78B2D;
  --toast: #E4B600;
  --lime: #C7DB00;
  --border: #E7E7DE;
  --font-display: 'Domine', Georgia, serif;
  --font-body: 'Public Sans', -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---- Header ---- */
.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  max-width: 1220px;
  margin: 0 auto;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.logo .pet { color: var(--accent); font-family: var(--font-body); font-weight: 600; }
.main-nav { display: flex; gap: 28px; }
.main-nav a {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}
.main-nav a:hover { color: var(--accent); }

/* ---- Hero ---- */
.hero {
  position: relative;
  background: var(--bg);
  padding: 44px 0 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 460px) 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 460px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.hero-card {
  background: var(--surface);
  padding: 46px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  z-index: 2;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lox);
  width: fit-content;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(247, 139, 45, 0.12);
}
.hero-card h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.08;
  margin: 0;
  font-weight: 700;
  max-width: 15ch;
}
.hero-card p {
  font-size: 16px;
  color: #4B5A56;
  max-width: 40ch;
  margin: 0;
}
.byline {
  font-size: 13px;
  font-weight: 600;
  color: #6E7C78;
  margin-top: 4px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 24px;
  border-radius: 999px;
  width: fit-content;
  margin-top: 6px;
}
.hero-cta:hover { background: #689002; }

.hero-visual {
  position: relative;
  background:
    radial-gradient(circle at 15% 25%, rgba(199, 219, 0, 0.55) 0, transparent 42%),
    radial-gradient(circle at 85% 20%, rgba(247, 139, 45, 0.45) 0, transparent 38%),
    radial-gradient(circle at 70% 80%, rgba(122, 168, 2, 0.55) 0, transparent 45%),
    radial-gradient(circle at 20% 85%, rgba(228, 182, 0, 0.4) 0, transparent 40%),
    #EFEEE3;
  overflow: hidden;
}
.hero-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.9; }
.placeholder-note {
  position: absolute;
  bottom: 14px;
  right: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(38,49,47,0.55);
  background: rgba(255,255,255,0.75);
  padding: 4px 9px;
  border-radius: 999px;
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 22px;
}
.strip-card { display: flex; flex-direction: column; gap: 10px; }
.strip-thumb {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--c1), var(--c2));
}
.strip-card:nth-child(1) .strip-thumb { --c1:#E9F0D6; --c2: var(--lime); }
.strip-card:nth-child(2) .strip-thumb { --c1:#FCE4D1; --c2: var(--lox); }
.strip-card:nth-child(3) .strip-thumb { --c1:#FBF1CE; --c2: var(--toast); }
.strip-badge {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  width: fit-content;
  padding: 3px 10px;
  border-radius: 999px;
}
.strip-card:nth-child(1) .strip-badge { background: var(--lime); color: var(--ink); }
.strip-card:nth-child(2) .strip-badge { background: var(--lox); }
.strip-card:nth-child(3) .strip-badge { background: var(--toast); color: var(--ink); }
.strip-card h3 {
  font-family: var(--font-display);
  font-size: 16.5px;
  line-height: 1.25;
  margin: 0;
  font-weight: 700;
}
.strip-card span { font-size: 12.5px; color: #6E7C78; font-weight: 600; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; min-height: unset; }
  .hero-card { padding: 32px 24px; }
  .hero-visual { min-height: 260px; }
  .hero-strip { grid-template-columns: 1fr; }
  .main-nav { display: none; }
}