:root {
    --ink: #3b2f25;        /* warm brown-black */
    --rust: #c8592c;       /* primary terracotta */
    --rust-dark: #a84620;
    --sage: #7d9b72;       /* accent green */
    --sage-dark: #5f7d55;
    --sun: #f2b84b;        /* sunny yellow */
    --tan: #f0e3d1;        /* warm tan */
    --cream: #fdf9f2;      /* background */
    --paper: #fffdf9;
    --serif: 'Fraunces', Georgia, serif;
    --sans: 'Inter', -apple-system, sans-serif;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
    font-weight: 400;
  }
  h1, h2, h3 { font-family: var(--serif); font-weight: 600; }
  a { color: inherit; text-decoration: none; }
  .wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

  /* ===== Announcement bar ===== */
  .announce {
    background: var(--ink);
    color: var(--tan);
    text-align: center;
    font-size: 12.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 10px 16px;
  }
  .announce b { color: var(--sun); font-weight: 600; }

  /* ===== Header ===== */
  header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(253,249,242,0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(59,47,37,0.1);
  }
  .nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 24px; max-width: 1180px; margin: 0 auto;
  }
  .logo {
    font-family: var(--serif);
    font-size: 27px; font-weight: 700; letter-spacing: -0.01em;
    display: flex; align-items: center; gap: 10px;
  }
  .logo .paw {
    width: 34px; height: 34px; background: var(--rust); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .logo .paw svg { width: 19px; height: 19px; }
  .nav-links { display: flex; gap: 32px; font-size: 14px; font-weight: 500; }
  .nav-links a { opacity: 0.8; transition: all 0.2s; }
  .nav-links a:hover { opacity: 1; color: var(--rust); }
  .nav-cta {
    font-size: 13.5px; font-weight: 600;
    background: var(--rust); color: #fff;
    padding: 11px 24px; border-radius: 999px;
    transition: background 0.25s;
  }
  .nav-cta:hover { background: var(--rust-dark); }

  /* ===== Hero ===== */
  .hero { background: var(--tan); position: relative; overflow: hidden; }
  .hero-inner {
    display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
    padding: 90px 24px 100px; max-width: 1180px; margin: 0 auto;
    position: relative; z-index: 1;
  }
  .hero-kicker {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
    color: var(--rust); background: rgba(200,89,44,0.1);
    padding: 8px 16px; border-radius: 999px; margin-bottom: 24px;
  }
  .hero h1 {
    font-size: clamp(42px, 5.6vw, 68px);
    line-height: 1.04; margin-bottom: 24px; letter-spacing: -0.01em;
  }
  .hero h1 em { color: var(--rust); font-style: italic; font-weight: 500; }
  .hero p.lead {
    font-size: 17.5px; color: #6b5a49;
    max-width: 480px; margin-bottom: 38px;
  }
  .btn-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
  .btn {
    display: inline-block; padding: 16px 34px; border-radius: 999px;
    font-size: 14px; font-weight: 600;
    transition: all 0.25s;
  }
  .btn-solid { background: var(--rust); color: #fff; box-shadow: 0 8px 20px -8px rgba(200,89,44,0.55); }
  .btn-solid:hover { background: var(--rust-dark); transform: translateY(-2px); }
  .btn-ghost { border: 2px solid var(--ink); color: var(--ink); padding: 14px 32px; }
  .btn-ghost:hover { background: var(--ink); color: var(--cream); }
  .hero-art { display: flex; justify-content: center; }
  .hero-art svg { width: 100%; max-width: 440px; height: auto; }
  .hero .blob {
    position: absolute; border-radius: 50%; pointer-events: none;
  }
  .blob-1 { width: 340px; height: 340px; background: rgba(242,184,75,0.25); top: -120px; right: -80px; }
  .blob-2 { width: 260px; height: 260px; background: rgba(125,155,114,0.18); bottom: -110px; left: -70px; }

  /* ===== Trust strip ===== */
  .trust { background: var(--sage); padding: 24px; }
  .trust-inner {
    max-width: 1180px; margin: 0 auto;
    display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
    font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; color: #fff;
  }
  .trust-inner div { display: flex; align-items: center; gap: 10px; }
  .trust-inner svg { width: 17px; height: 17px; flex: none; }

  /* ===== Sections ===== */
  section { padding: 92px 0; }
  .section-head { text-align: center; max-width: 620px; margin: 0 auto 60px; }
  .section-head .kicker {
    display: inline-block;
    font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
    color: var(--sage-dark); margin-bottom: 14px;
  }
  .section-head h2 { font-size: clamp(32px, 3.6vw, 46px); margin-bottom: 16px; letter-spacing: -0.01em; }
  .section-head p { color: #8a7663; font-size: 16px; }

  /* ===== Category tiles ===== */
  .cats { padding: 92px 0 0; }
  .cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .cat-tile {
    position: relative; aspect-ratio: 3/3.4; overflow: hidden; border-radius: 22px;
    display: flex; align-items: flex-end;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .cat-tile:hover { transform: translateY(-5px); box-shadow: 0 20px 36px -18px rgba(59,47,37,0.3); }
  .cat-tile .tile-art { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding-bottom: 40px; }
  .cat-tile .tile-art svg { width: 56%; }
  .cat-tile .tile-label {
    position: relative; width: 100%; padding: 20px 22px;
    font-size: 15px; font-weight: 700; color: var(--ink);
  }
  .cat-tile .tile-label span { display: block; font-size: 12.5px; font-weight: 400; color: #7d6b58; }
  .tile-a { background: #fbe7d8; }
  .tile-b { background: #e9efdf; }
  .tile-c { background: #fdeec9; }
  .tile-d { background: #f3e3d3; }

  /* ===== Product grid ===== */
  .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
  .card {
    background: var(--paper);
    border: 1px solid rgba(59,47,37,0.08);
    border-radius: 22px; overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex; flex-direction: column;
  }
  .card:hover { transform: translateY(-5px); box-shadow: 0 24px 44px -20px rgba(59,47,37,0.28); }
  .card-art {
    aspect-ratio: 4/3;
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .card-art svg { width: 60%; height: auto; }
  .badge {
    position: absolute; top: 16px; left: 16px;
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
    background: var(--rust); color: #fff;
    padding: 6px 14px; border-radius: 999px;
  }
  .badge.new { background: var(--sage-dark); }
  .card-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
  .card-body h3 { font-size: 23px; margin-bottom: 5px; }
  .card-sub { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; color: var(--sage-dark); margin-bottom: 12px; }
  .card-body p { font-size: 14px; color: #8a7663; flex: 1; }
  .card-foot {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 20px; padding-top: 18px; border-top: 1px dashed rgba(59,47,37,0.15);
  }
  .price { font-family: var(--serif); font-size: 23px; font-weight: 700; color: var(--ink); }
  .price small { font-size: 13px; color: #a8937d; font-family: var(--sans); font-weight: 400; }
  .card-foot a {
    font-size: 13px; font-weight: 700; color: var(--rust);
    display: inline-flex; align-items: center; gap: 6px;
    transition: gap 0.2s;
  }
  .card-foot a:hover { gap: 10px; }

  .art-a { background: #fbe7d8; }
  .art-b { background: #e9efdf; }
  .art-c { background: #fdeec9; }
  .art-d { background: #f3e3d3; }
  .art-e { background: #eaf0e4; }
  .art-f { background: #fceedd; }

  /* ===== Values ===== */
  .values { background: var(--rust); color: #fff; }
  .values .section-head h2 { color: #fff; }
  .values .section-head p { color: rgba(255,255,255,0.75); }
  .values .section-head .kicker { color: var(--sun); }
  .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .value-item {
    text-align: center; padding: 36px 28px;
    background: rgba(255,255,255,0.1); border-radius: 22px;
  }
  .value-item .icon {
    width: 58px; height: 58px; border-radius: 50%;
    background: rgba(255,255,255,0.16);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
  }
  .value-item .icon svg { width: 27px; height: 27px; }
  .value-item h3 { font-size: 22px; margin-bottom: 10px; }
  .value-item p { font-size: 14px; color: rgba(255,255,255,0.78); }

  /* ===== Quote ===== */
  .quote { background: var(--cream); text-align: center; }
  .quote .paw-row { display: flex; justify-content: center; gap: 10px; margin-bottom: 26px; }
  .quote .paw-row svg { width: 26px; height: 26px; opacity: 0.85; }
  .quote blockquote {
    font-family: var(--serif); font-size: clamp(26px, 3.2vw, 38px); font-weight: 500;
    font-style: italic; max-width: 780px; margin: 0 auto 20px; line-height: 1.3;
    color: var(--ink);
  }
  .quote cite { font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; font-style: normal; font-weight: 600; color: #a8937d; }

  /* ===== About ===== */
  .about { background: var(--tan); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .about-art {
    background: var(--sage); border-radius: 28px;
    aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  }
  .about-art svg { width: 70%; }
  .about-copy .kicker {
    display: inline-block;
    font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
    color: var(--rust); margin-bottom: 14px;
  }
  .about-copy h2 { font-size: clamp(30px, 3.4vw, 42px); margin-bottom: 20px; letter-spacing: -0.01em; }
  .about-copy > p { color: #6b5a49; font-size: 15.5px; margin-bottom: 28px; }
  .about-list { list-style: none; display: grid; gap: 16px; }
  .about-list li { display: flex; gap: 14px; font-size: 14.5px; }
  .about-list li strong { font-weight: 600; }
  .about-list .tick {
    flex: none; width: 24px; height: 24px; border-radius: 50%;
    background: var(--sage); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; margin-top: 2px;
  }

  /* ===== Newsletter ===== */
  .news { background: var(--ink); color: var(--cream); text-align: center; }
  .news h2 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 14px; }
  .news h2 em { color: var(--sun); font-style: italic; }
  .news p { color: rgba(253,249,242,0.68); margin-bottom: 34px; font-size: 15.5px; }
  .news-form { display: flex; max-width: 470px; margin: 0 auto; gap: 10px; }
  .news-form input {
    flex: 1; padding: 15px 22px; border: 1.5px solid rgba(253,249,242,0.25); border-radius: 999px;
    background: rgba(253,249,242,0.07); color: var(--cream);
    font-family: var(--sans); font-size: 14px; outline: none;
    transition: border-color 0.2s;
  }
  .news-form input:focus { border-color: var(--sun); }
  .news-form input::placeholder { color: rgba(253,249,242,0.45); }
  .news-form button {
    padding: 15px 30px; background: var(--rust); color: #fff; border-radius: 999px;
    border: none; font-family: var(--sans); font-size: 14px; font-weight: 600;
    cursor: pointer; transition: background 0.25s;
  }
  .news-form button:hover { background: var(--rust-dark); }
  .news-note { font-size: 12.5px; color: rgba(253,249,242,0.4); margin-top: 18px; }

  /* ===== Footer ===== */
  footer { background: var(--ink); color: rgba(253,249,242,0.65); padding: 0 0 40px; }
  footer .rule { border-top: 1px solid rgba(253,249,242,0.12); max-width: 1180px; margin: 0 auto 64px; }
  .foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
  .foot-grid .logo { color: var(--cream); margin-bottom: 16px; }
  .foot-grid p { font-size: 13.5px; max-width: 300px; }
  .foot-grid h4 {
    font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--sun); margin-bottom: 18px; font-weight: 700;
  }
  .foot-grid ul { list-style: none; display: grid; gap: 10px; font-size: 14px; }
  .foot-grid ul a:hover { color: var(--cream); }
  .foot-bottom {
    border-top: 1px solid rgba(253,249,242,0.12); padding-top: 28px;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    font-size: 12.5px; color: rgba(253,249,242,0.4);
  }

  /* ===== Responsive ===== */
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; padding: 64px 24px; text-align: center; }
    .hero p.lead { margin: 0 auto 36px; }
    .btn-row { justify-content: center; }
    .hero-art { order: -1; }
    .hero-art svg { max-width: 300px; }
    .cat-grid { grid-template-columns: 1fr 1fr; }
    .grid { grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
  }
  @media (max-width: 560px) {
    .grid { grid-template-columns: 1fr; }
    .cat-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .news-form { flex-direction: column; }
    .trust-inner { justify-content: center; }
  }

/* ===== Subpages ===== */
.page-hero { background: var(--tan); text-align: center; padding: 68px 24px; }
.page-hero .kicker {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
  color: var(--rust); margin-bottom: 12px;
}
.page-hero h1 { font-family: var(--serif); font-size: clamp(34px, 4.4vw, 54px); letter-spacing: -0.01em; margin-bottom: 14px; }
.page-hero p { color: #6b5a49; font-size: 16px; max-width: 560px; margin: 0 auto; }
.page-body { max-width: 800px; margin: 0 auto; padding: 64px 24px 90px; }
.page-body h2 { font-size: clamp(24px, 2.6vw, 32px); margin: 44px 0 14px; scroll-margin-top: 90px; }
.page-body h2:first-child { margin-top: 0; }
.page-body p { color: #6b5a49; font-size: 15px; margin-bottom: 14px; }
.page-body ul { color: #6b5a49; font-size: 15px; margin: 0 0 14px 22px; }
.page-body li { margin-bottom: 8px; }
.page-body strong { color: var(--ink); font-weight: 600; }

.faq-item {
  background: var(--paper); border: 1px solid rgba(59,47,37,0.1); border-radius: 16px;
  padding: 20px 24px; margin-bottom: 14px;
}
.faq-item summary {
  font-weight: 600; font-size: 15.5px; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: var(--serif); font-size: 24px; color: var(--rust); flex: none; }
.faq-item[open] summary::after { content: '–'; }
.faq-item p { margin: 14px 0 0; }

.guide-card {
  background: var(--paper); border: 1px solid rgba(59,47,37,0.1); border-radius: 18px;
  padding: 28px 30px; margin-bottom: 20px;
}
.guide-card h2 { margin: 0 0 6px; font-size: 24px; }
.guide-card .guide-sub {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
  color: var(--sage-dark); margin-bottom: 14px;
}
.guide-card ol { color: #6b5a49; font-size: 15px; margin: 0 0 0 22px; }
.guide-card ol li { margin-bottom: 10px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 10px; }
.contact-card {
  background: var(--paper); border: 1px solid rgba(59,47,37,0.1); border-radius: 18px;
  padding: 32px 30px; text-align: center;
}
.contact-card .icon {
  width: 54px; height: 54px; border-radius: 50%; background: var(--tan);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.contact-card .icon svg { width: 24px; height: 24px; }
.contact-card h2 { margin: 0 0 8px; font-size: 22px; }
.contact-card p { margin-bottom: 18px; }
.policy-meta { font-size: 13px; color: #a8937d; margin-bottom: 30px; }
@media (max-width: 640px) { .contact-grid { grid-template-columns: 1fr; } }
