:root {
  --ink: #211a17;
  --muted: #756b63;
  --line: #ded6cd;
  --paper: #fbfaf7;
  --warm: #f0ebe4;
  --accent: #2f6f62;
  --accent-dark: #214f47;
  --clay: #b96d4b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

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

.narrow {
  width: min(820px, calc(100% - 32px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  border-bottom: 1px solid rgba(33, 26, 23, 0.08);
  background: rgba(251, 250, 247, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.logo-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
}

.logo-mark-icon {
  width: 20px;
  height: 20px;
  background: url("/assets/paw256.svg") center / contain no-repeat;
  filter: brightness(0) invert(1);
}

.logo-copy {
  display: grid;
}

.logo-copy strong {
  font-size: 18px;
}

.logo-copy small,
.eyebrow,
.section-kicker {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav,
.header-tools,
.language-switcher,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.main-nav a {
  color: var(--muted);
  font-size: 14px;
}

.language-button,
.header-cta,
.btn,
.price-pill {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 16px;
  font-weight: 700;
}

.language-button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.language-button.active {
  border-color: var(--accent);
  color: var(--accent);
}

.header-cta,
.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-ghost {
  border: 1px solid var(--line);
  background: white;
}

.hero,
.page-hero {
  padding: 72px 0;
  background: linear-gradient(180deg, #fffdfa 0%, var(--warm) 100%);
}

.hero-grid,
.page-hero-grid,
.intro-grid,
.materials-card,
.content-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: 56px;
}

.hero h1,
.page-hero h1 {
  max-width: 760px;
  margin: 14px 0 18px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.96;
}

.hero p,
.page-hero p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.hero-card,
.page-image {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.hero-image,
.page-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.approval-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 150px;
  gap: 2px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  padding: 16px;
  box-shadow: 0 20px 60px rgba(33, 26, 23, 0.16);
}

.approval-badge strong {
  font-size: 34px;
  line-height: 1;
}

.approval-badge small {
  color: var(--muted);
}

.intro,
.catalog-section,
.materials,
.final-cta,
.content-section {
  padding: 72px 0;
}

.intro h2,
.section-heading h2,
.materials h2,
.final-cta h2,
.content-section h2 {
  margin: 8px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.intro-text,
.prose,
.content-section p {
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  margin-bottom: 28px;
}

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

.category-card,
.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.category-card.large {
  grid-column: span 2;
}

.category-card a,
.product-card a {
  display: grid;
  height: 100%;
}

.category-media img,
.product-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.category-copy,
.product-copy {
  padding: 22px;
}

.category-copy h3,
.product-copy h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.category-copy p,
.product-copy p {
  color: var(--muted);
}

.category-badge {
  position: absolute;
  margin: 14px;
  border-radius: 999px;
  background: white;
  padding: 6px 10px;
  color: var(--accent);
  font-weight: 800;
}

.materials-card {
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 42px 0;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 18px;
}

.feature-list span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.final-cta-inner {
  border-radius: 8px;
  background: var(--accent-dark);
  color: white;
  padding: 48px;
  text-align: center;
}

.final-cta-inner p {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  background: #f6f1ea;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 30px;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-col h4 {
  margin: 0 0 6px;
}

.footer-col a,
.footer-col span,
.site-footer p {
  color: var(--muted);
}

.compact {
  padding: 48px 0;
}

.text-only {
  text-align: left;
}

.back-link {
  color: var(--accent);
  font-weight: 800;
}

.contact-form,
.contact-panel {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 24px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
}

@media (max-width: 900px) {
  .header-inner,
  .main-nav,
  .header-tools {
    flex-wrap: wrap;
  }

  .hero-grid,
  .page-hero-grid,
  .intro-grid,
  .materials-card,
  .content-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mosaic,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .category-card.large {
    grid-column: span 1;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 42px;
  }
}
