/* Base styles from original index */
:root {
  --cream: #f7efe1;
  --paper: #fffaf0;
  --tan: #dfc99f;
  --brown: #5a3c27;
  --green: #586d3b;
  --green-dark: #394925;
  --border: #d9c8a7;
  --shadow: 0 22px 55px rgba(80, 55, 30, 0.16);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--brown);
  background: linear-gradient(180deg, var(--cream), #efe0c5);
}

.site-header {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green-dark);
  text-decoration: none;
  line-height: 1;
}

.logo strong {
  display: block;
  font-size: 1.45rem;
  font-style: italic;
}

.logo small {
  display: block;
  font-size: .72rem;
  letter-spacing: .04em;
}

.leaf { font-size: 1.8rem; color: var(--green); }

nav {
  display: flex;
  gap: 26px;
  font-family: Arial, sans-serif;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

nav a { color: var(--brown); text-decoration: none; font-weight: 700; }
nav a:hover { color: var(--green); }

main { max-width: 1180px; margin: 0 auto; padding: 0 24px 60px; }

.hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 40px;
  padding: 70px 54px;
  border: 1px solid var(--border);
  background:
    linear-gradient(90deg, rgba(255,250,240,.96), rgba(255,250,240,.76)),
    radial-gradient(circle at 85% 20%, rgba(88,109,59,.25), transparent 35%),
    linear-gradient(135deg, #fff8ea, #e8d2a9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-family: Arial, sans-serif;
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .15em;
}

h1, h2, h3 { color: var(--green-dark); margin-top: 0; }

h1 {
  max-width: 600px;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 6vw, 5.3rem);
  line-height: .98;
}

h2 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; }

p { font-size: 1.05rem; line-height: 1.7; }

.hero-copy p:not(.eyebrow) { max-width: 610px; }

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

.button {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 4px;
  border: 1px solid var(--green);
  font-family: Arial, sans-serif;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
}

.button.primary { background: var(--green); color: white; }
.button.secondary { color: var(--green-dark); background: rgba(255,255,255,.35); }
.button:hover { transform: translateY(-1px); }

.hero-card {
  min-height: 380px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 32px;
  background: rgba(247, 245, 245, 0.48);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.toy-photo {
  width: min(100%, 360px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-size: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, #f5dfb8, #f8f1e6);
  box-shadow: inset 0 0 40px rgba(92,61,32,.16);
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 26px 0;
  background: var(--border);
  border: 1px solid var(--border);
}

.features article {
  background: rgba(255,250,240,.8);
  padding: 28px 24px;
}

.features span { font-size: 2rem; }
.features h3 { margin: 14px 0 6px; font-size: 1rem; }
.features p { margin: 0; font-size: .92rem; }

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--paper);
  border: 1px solid var(--border);
  margin-top: 36px;
}

.image-panel {
  min-height: 380px;
  background:
    linear-gradient(rgba(72,91,49,.12), rgba(72,91,49,.12)),
    radial-gradient(circle at 25% 40%, #8e9f67, transparent 15%),
    linear-gradient(135deg, #d7c295, #efe5c9 45%, #78905b);
}

.text-panel { padding: 58px; }

.products-preview { padding: 70px 0 30px; text-align: center; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 28px; }
.product-card {
  min-height: 240px;
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(80,55,30,.08);
}
.product-icon { font-size: 4rem; margin-bottom: 18px; }

.about-box {
  text-align: center;
  padding: 58px;
  background: var(--green-dark);
  color: #fff7e6;
  border-radius: 8px;
}
.about-box h2 { color: #fff7e6; }
.about-box p { max-width: 780px; margin: 0 auto 26px; }

footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 24px 46px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  font-family: Arial, sans-serif;
  font-size: .9rem;
}

@media (max-width: 820px) {
  .site-header, footer { flex-direction: column; align-items: flex-start; }
  nav { flex-wrap: wrap; gap: 16px; }
  .hero, .split-section { grid-template-columns: 1fr; padding: 38px 24px; }
  .features, .product-grid { grid-template-columns: 1fr; }
  .text-panel, .about-box { padding: 36px 24px; }
}



/* Styles moved from plushie-rehab-farm.html */
:root {
      --green: #193d2d;
      --green-2: #2f5f3f;
      --cream: #f6eddc;
      --tan: #d3ad72;
      --wood: #7a4b27;
      --ink: #24170f;
      --muted: #6f5b45;
      --card: #fff8ea;
      --shadow: 0 18px 45px rgba(31, 18, 9, 0.25);
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      color: var(--ink);
      background:
        radial-gradient(circle at top left, rgba(211,173,114,.35), transparent 30%),
        linear-gradient(180deg, #f8edd6 0%, #efe0c3 45%, #dbc098 100%);
      line-height: 1.65;
    }

    a { color: inherit; }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 10;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      padding: 1rem 6vw;
      background: rgba(246, 237, 220, .92);
      backdrop-filter: blur(8px);
      border-bottom: 3px solid rgba(122,75,39,.18);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: .65rem;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--green);
    }

    .paw {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--green);
      color: var(--cream);
      box-shadow: inset 0 0 0 3px rgba(255,255,255,.22);
    }

    .logo strong { display:block; font-size: 1.05rem; }
    .logo small { display:block; font-size: .68rem; color: var(--muted); }

    nav {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: flex-end;
      font-family: Arial, sans-serif;
      font-weight: 800;
      font-size: .86rem;
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    nav a { text-decoration: none; color: var(--green); }
    nav a:hover { text-decoration: underline; }

    .hero {
      min-height: 70vh;
      display: grid;
      place-items: center;
      padding: 5rem 6vw 3rem;
      text-align: center;
      background: linear-gradient(rgba(25,61,45,.75), rgba(25,61,45,.55)), url('plush-rehab-surgery-3.png') center/cover;
      color: #fff7e7;
    }

    .hero-inner {
      max-width: 980px;
      padding: 3rem;
      border: 2px solid rgba(255,255,255,.24);
      border-radius: 28px;
      background: rgba(36,23,15,.35);
      box-shadow: var(--shadow);
    }

    .eyebrow {
      margin: 0 0 .8rem;
      font-family: Arial, sans-serif;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .18em;
      color: var(--tan);
    }

    h1, h2, h3 {
      line-height: 1.08;
      margin: 0 0 1rem;
      color: inherit;
    }

    h1 {
      font-size: clamp(2.5rem, 7vw, 5.8rem);
      text-transform: uppercase;
      letter-spacing: .04em;
      text-shadow: 0 5px 20px rgba(0,0,0,.35);
    }

    .hero p:last-child {
      max-width: 760px;
      margin: 0 auto;
      font-size: clamp(1.05rem, 2vw, 1.35rem);
    }

    .slideshow-wrap {
      max-width: 1180px;
      margin: -2rem auto 4rem;
      padding: 0 6vw;
      position: relative;
      z-index: 2;
    }

    .slideshow {
      border: 10px solid #f7e6c4;
      border-radius: 26px;
      overflow: hidden;
      background: #1c120c;
      box-shadow: var(--shadow);
      aspect-ratio: 16 / 8.5;
      position: relative;
    }

    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      animation: fadeShow 18s infinite;
    }

    .slide:nth-child(2) { animation-delay: 6s; }
    .slide:nth-child(3) { animation-delay: 12s; }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .caption {
      position: absolute;
      left: 1.2rem;
      bottom: 1.2rem;
      padding: .7rem 1rem;
      border-radius: 999px;
      font-family: Arial, sans-serif;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .08em;
      background: rgba(25,61,45,.88);
      color: #fff8e8;
    }

    @keyframes fadeShow {
      0%, 100% { opacity: 0; }
      6%, 30% { opacity: 1; }
      36% { opacity: 0; }
    }

    main.content {
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 6vw 5rem;
    }

    .intro-card, .section-card, .results {
      background: rgba(255,248,234,.92);
      border: 2px solid rgba(122,75,39,.18);
      border-radius: 26px;
      box-shadow: 0 12px 30px rgba(31,18,9,.12);
    }

    .intro-card {
      padding: clamp(1.5rem, 4vw, 3rem);
      font-size: 1.18rem;
    }

    .section-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-top: 1.5rem;
      align-items: stretch;
    }

    .section-card {
      padding: 2rem;
    }

    .section-card h2 {
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      color: var(--green);
      text-transform: uppercase;
    }

    .photo-card {
      min-height: 430px;
      border-radius: 26px;
      background: url('plush-rehab-surgery-1.png') center/cover;
      box-shadow: var(--shadow);
      border: 10px solid #f7e6c4;
    }

    .photo-card.second { background-image: url('plush-rehab-surgery-2.png'); }

    .pullquote {
      margin: 2rem 0;
      padding: 1.5rem 2rem;
      border-left: 10px solid var(--green-2);
      background: #efe0c3;
      border-radius: 18px;
      font-size: 1.35rem;
      font-weight: bold;
      color: var(--green);
    }

    .results {
      margin: 1.5rem 0;
      padding: 2rem;
    }

    .results h3 {
      color: var(--green);
      text-transform: uppercase;
      font-size: 1.6rem;
    }

    .benefits {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
      padding: 0;
      list-style: none;
      margin: 1rem 0 0;
    }

    .benefits li {
      padding: 1.2rem;
      border-radius: 18px;
      background: #f3dfb8;
      font-family: Arial, sans-serif;
      font-weight: 900;
      text-transform: uppercase;
      color: var(--green);
      text-align: center;
    }

    .final {
      margin-top: 1.5rem;
      padding: clamp(1.5rem, 4vw, 3rem);
      border-radius: 30px;
      background: linear-gradient(135deg, var(--green), #10251c);
      color: #fff8e8;
      box-shadow: var(--shadow);
    }

    .final h2 { font-size: clamp(2rem, 4vw, 3.5rem); text-transform: uppercase; }

    footer {
      padding: 2rem 6vw;
      text-align: center;
      background: var(--ink);
      color: #f6eddc;
      font-family: Arial, sans-serif;
    }

    @media (max-width: 800px) {
      .site-header { align-items: flex-start; flex-direction: column; }
      nav { justify-content: flex-start; }
      .hero-inner { padding: 2rem 1rem; }
      .section-grid { grid-template-columns: 1fr; }
      .benefits { grid-template-columns: 1fr 1fr; }
      .slideshow { aspect-ratio: 1 / 1; }
    }

    @media (max-width: 520px) {
      .benefits { grid-template-columns: 1fr; }
      .caption { font-size: .68rem; }
    }


/* Styles moved from plushie-rehabilitation-farm.html */
:root {
      --green: #263f22;
      --green-2: #3f6331;
      --gold: #d89a3d;
      --cream: #fff8e7;
      --paper: #f4e3bd;
      --ink: #24180d;
      --muted: #6f5a3a;
      --shadow: 0 20px 45px rgba(35, 24, 10, 0.2);
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      color: var(--ink);
      background:
        radial-gradient(circle at top left, rgba(216, 154, 61, 0.24), transparent 32rem),
        linear-gradient(180deg, #fff6dd 0%, #efe0bb 45%, #dec18b 100%);
      line-height: 1.65;
    }

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

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      padding: 1rem clamp(1rem, 4vw, 4rem);
      background: rgba(38, 63, 34, 0.94);
      color: var(--cream);
      box-shadow: 0 8px 25px rgba(0,0,0,0.18);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: .75rem;
      letter-spacing: .04em;
      text-transform: uppercase;
    }

    .logo strong { display: block; font-size: 1.15rem; }
    .logo small { display: block; font-size: .72rem; color: #e8d3a1; }
    .leaf { font-size: 1.65rem; color: var(--gold); }

    nav { display: flex; gap: 1rem; flex-wrap: wrap; font-size: .95rem; }
    nav a { opacity: .92; }
    nav a:hover { color: var(--gold); }

    main { overflow: hidden; }

    .hero {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
      gap: clamp(2rem, 5vw, 5rem);
      align-items: center;
      padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 4vw, 4rem) 3rem;
      max-width: 1280px;
      margin: 0 auto;
    }

    .hero-copy h1 {
      margin: .3rem 0 1rem;
      font-size: clamp(2.5rem, 6vw, 5.8rem);
      line-height: .95;
      letter-spacing: -0.05em;
      color: var(--green);
      text-transform: uppercase;
    }

    .hero-copy p { font-size: 1.12rem; max-width: 62ch; }

    .eyebrow {
      margin: 0 0 .6rem;
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 800;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--green-2);
      font-size: .82rem;
    }

    .button {
      display: inline-block;
      margin-top: 1rem;
      padding: .9rem 1.15rem;
      border-radius: 999px;
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .08em;
      font-size: .82rem;
    }

    .primary { background: var(--green); color: var(--cream); }
    .secondary { background: var(--paper); color: var(--green); border: 2px solid rgba(38,63,34,.2); }
    .hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; }

    .slideshow {
      position: relative;
      min-height: 430px;
      border: 12px solid #f3dfb0;
      border-radius: 34px;
      overflow: hidden;
      background: #332515;
      box-shadow: var(--shadow);
    }

    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      animation: fadeSlide 25s infinite;
    }

    .slide:nth-child(2) { animation-delay: 5s; }
    .slide:nth-child(3) { animation-delay: 10s; }
    .slide:nth-child(4) { animation-delay: 15s; }
    .slide:nth-child(5) { animation-delay: 20s; }
    .slide:nth-child(6) { animation-delay: 25s; }
    .slide:nth-child(7) { animation-delay: 30s; }
    .slide:nth-child(8) { animation-delay: 35s; }
    .slide:nth-child(9) { animation-delay: 40s; }
    .slide:nth-child(10) { animation-delay: 45s; }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .slide span {
      position: absolute;
      left: 1rem;
      right: 1rem;
      bottom: 1rem;
      padding: .75rem 1rem;
      border-radius: 999px;
      background: rgba(36, 24, 13, .72);
      color: var(--cream);
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 800;
      letter-spacing: .06em;
      text-transform: uppercase;
      text-align: center;
      backdrop-filter: blur(6px);
    }

    @keyframes fadeSlide {
      0%, 16% { opacity: 1; transform: scale(1); }
      20%, 96% { opacity: 0; transform: scale(1.04); }
      100% { opacity: 0; }
    }

    .content-wrap {
      max-width: 1120px;
      margin: 0 auto;
      padding: 1rem clamp(1rem, 4vw, 4rem) 5rem;
    }

    .intro-box,
    .story-card,
    .about-box {
      background: rgba(255, 248, 231, .86);
      border: 1px solid rgba(95, 69, 33, .18);
      border-radius: 30px;
      box-shadow: var(--shadow);
    }

    .intro-box { padding: clamp(1.5rem, 4vw, 3rem); margin-bottom: 2rem; }
    .intro-box p { font-size: 1.18rem; margin: 0; }

    .section-title {
      margin: 3rem 0 1rem;
      text-align: center;
    }

    .section-title h2 {
      margin: 0;
      font-size: clamp(2rem, 4.5vw, 4rem);
      line-height: 1;
      color: var(--green);
      text-transform: uppercase;
    }

    .story-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.25rem;
    }

    .story-card { padding: clamp(1.2rem, 3vw, 2rem); }
    .story-card h3 { margin: 0 0 .5rem; font-size: 1.55rem; color: var(--green); }
    .story-card p { margin-top: .5rem; }

    .result-list {
      list-style: none;
      padding: 0;
      margin: 1rem 0 0;
      display: grid;
      gap: .55rem;
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 800;
    }

    .result-list li {
      background: #ead09a;
      border-radius: 999px;
      padding: .65rem 1rem;
    }

    .quote-banner {
      margin: 2rem 0;
      padding: clamp(1.5rem, 5vw, 3rem);
      border-radius: 30px;
      background: var(--green);
      color: var(--cream);
      text-align: center;
      box-shadow: var(--shadow);
    }

    .quote-banner h2 {
      margin: 0 0 .5rem;
      font-size: clamp(2rem, 5vw, 4.2rem);
      line-height: 1;
      text-transform: uppercase;
    }

    footer {
      padding: 2rem clamp(1rem, 4vw, 4rem);
      background: #1d2d19;
      color: var(--cream);
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }

    @media (max-width: 860px) {
      .site-header, footer { align-items: flex-start; flex-direction: column; }
      .hero, .story-grid { grid-template-columns: 1fr; }
      .slideshow { min-height: 360px; }
    }


/* Styles moved from store-coming-soon.html */
:root {
      --cream: #f5f0e4;
      --paper: #fffaf0;
      --green: #596c39;
      --green-dark: #2d381d;
      --brown: #4f3726;
      --tan: #d6bc8f;
      --border: #d7c6a5;
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      min-height: 100vh;
      font-family: Georgia, "Times New Roman", serif;
      color: var(--brown);
      background:
        radial-gradient(circle at top left, rgba(89,108,57,.25), transparent 30%),
        linear-gradient(180deg, var(--cream), #e7d7b6);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 28px;
    }

    .page {
      width: min(100%, 980px);
      background: rgba(255,250,240,.92);
      border: 1px solid var(--border);
      border-radius: 18px;
      box-shadow: 0 24px 70px rgba(70,45,20,.18);
      overflow: hidden;
    }

    header {
      padding: 24px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid var(--border);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      color: var(--green-dark);
    }

    .badge {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: var(--green-dark);
      color: #fff7e6;
      display: grid;
      place-items: center;
      font-size: 1.7rem;
    }

    .brand strong {
      display: block;
      font-size: 1.55rem;
    }

    .brand small {
      display: block;
      font-family: Arial, sans-serif;
      text-transform: uppercase;
      letter-spacing: .12em;
      font-size: .68rem;
    }

    .store-link {
      color: var(--green-dark);
      font-family: Arial, sans-serif;
      font-size: .82rem;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      text-decoration: none;
      border: 1px solid var(--green);
      padding: 12px 18px;
      border-radius: 6px;
    }

    main {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 34px;
      padding: 56px;
      align-items: center;
    }

    .eyebrow {
      color: var(--green);
      font-family: Arial, sans-serif;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      font-size: .78rem;
      margin: 0 0 16px;
    }

    h1 {
      margin: 0 0 20px;
      color: var(--green-dark);
      font-size: clamp(2.7rem, 7vw, 5.7rem);
      line-height: .95;
    }

    p {
      font-size: 1.08rem;
      line-height: 1.75;
    }

    .actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 28px;
    }

    .button {
      display: inline-block;
      padding: 14px 22px;
      border-radius: 6px;
      border: 1px solid var(--green);
      font-family: Arial, sans-serif;
      font-weight: 800;
      font-size: .82rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
    }

    .primary {
      background: var(--green);
      color: white;
    }

    .secondary {
      background: transparent;
      color: var(--green-dark);
    }

    .card {
      background: #f0e3c6;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 32px;
      text-align: center;
    }

    .cat {
      font-size: 7.5rem;
      margin-bottom: 12px;
    }

    .launch-box {
      margin-top: 24px;
      padding: 18px;
      background: rgba(255,255,255,.5);
      border: 1px dashed var(--green);
      border-radius: 12px;
      font-family: Arial, sans-serif;
    }

    .launch-box strong {
      display: block;
      color: var(--green-dark);
      margin-bottom: 6px;
      text-transform: uppercase;
      letter-spacing: .08em;
      font-size: .82rem;
    }

    .hidden {
      display: none;
    }

    .extra {
      margin-top: 20px;
      padding: 20px;
      background: rgba(255,255,255,.48);
      border-left: 5px solid var(--green);
      border-radius: 8px;
    }

    footer {
      padding: 22px 30px;
      border-top: 1px solid var(--border);
      font-family: Arial, sans-serif;
      font-size: .86rem;
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    @media (max-width: 820px) {
      header, footer {
        align-items: flex-start;
        flex-direction: column;
      }

      main {
        grid-template-columns: 1fr;
        padding: 34px 24px;
      }

      .cat {
        font-size: 5.5rem;
      }
    }


/* Styles moved from welcome.html */
:root {
      --cream: #f7efe1;
      --paper: #fffaf2;
      --green: #596c39;
      --green-dark: #2f3b20;
      --brown: #4d3525;
      --tan: #dcc59b;
      --border: #d4c09a;
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      color: var(--brown);
      background: linear-gradient(180deg, var(--cream), #ead9b7);
    }

    header {
      padding: 24px;
      text-align: center;
    }

    .brand {
      color: var(--green-dark);
      font-size: 1.9rem;
      font-weight: bold;
      letter-spacing: .03em;
    }

    .tagline {
      margin-top: 6px;
      font-family: Arial, sans-serif;
      font-size: .85rem;
      text-transform: uppercase;
      letter-spacing: .15em;
      color: var(--green);
    }

    main {
      max-width: 980px;
      margin: 0 auto;
      padding: 24px 20px 70px;
    }

    .hero {
      background: var(--paper);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: clamp(28px, 5vw, 60px);
      box-shadow: 0 24px 60px rgba(75, 50, 25, .16);
    }

    h1 {
      margin: 0 0 20px;
      color: var(--green-dark);
      font-size: clamp(2.5rem, 8vw, 5.3rem);
      line-height: .95;
    }

    h2 {
      color: var(--green-dark);
      font-size: clamp(1.8rem, 4vw, 3rem);
      margin-top: 44px;
    }

    p, li {
      font-size: 1.1rem;
      line-height: 1.75;
    }

    .lead {
      font-size: 1.28rem;
      color: #5a442e;
    }

    .hidden {
      display: none;
    }

    .button-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 28px;
    }

    button, .shop-button {
      border: 1px solid var(--green);
      border-radius: 6px;
      padding: 14px 22px;
      font-family: Arial, sans-serif;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .08em;
      cursor: pointer;
      text-decoration: none;
    }

    button {
      background: transparent;
      color: var(--green-dark);
    }

    .shop-button {
      background: var(--green);
      color: white;
    }

    .feature-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px 24px;
      padding-left: 20px;
    }

    .mission {
      margin-top: 34px;
      padding: 28px;
      background: #eef0df;
      border-left: 7px solid var(--green);
      border-radius: 10px;
      font-size: 1.35rem;
      font-weight: bold;
      color: var(--green-dark);
    }

    footer {
      text-align: center;
      padding: 28px 20px 44px;
      font-family: Arial, sans-serif;
      font-size: .9rem;
      color: #6b5a42;
    }

    @media (max-width: 700px) {
      .feature-list {
        grid-template-columns: 1fr;
      }
    }

/* =========================================================
   Stoned Cats unified site styles
   All page-specific CSS has been moved here from the HTML.
   ========================================================= */
:root {
  --cream: #f7efe1;
  --paper: #fffaf0;
  --tan: #dfc99f;
  --brown: #5a3c27;
  --green: #586d3b;
  --green-dark: #394925;
  --border: #d9c8a7;
  --shadow: 0 22px 55px rgba(80, 55, 30, 0.16);
}

body {
  background:
    radial-gradient(circle at top left, rgba(88, 109, 59, 0.16), transparent 34rem),
    linear-gradient(180deg, var(--cream), #efe0c5);
}

.site-header {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo { display:flex; align-items:center; gap:12px; }
.title-icon {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 4px 8px rgba(80,55,30,.20));
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  padding: .45rem .6rem;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
nav a:hover { background: rgba(88,109,59,.12); transform: translateY(-1px); }

h1, h2, h3 { color: var(--green-dark); }
h1::before, h2::before {
  content: "";
  display: inline-block;
  width: .9em;
  height: .9em;
  margin-right: .35em;
  vertical-align: -0.08em;
  background: url('images/stoned-cats-title-icon.svg') center/contain no-repeat;
}

.button, .btn, .cta-button {
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.section-card, .about-box, .products-preview, .features article, .product-card, .text-panel, .hero, .hero-card {
  border-color: var(--border);
  box-shadow: var(--shadow);
}
.extra-top { margin-top: 1.5rem; }

.slide img, .slideshow img, .gallery img {
  width: 100%;
  height: auto;
  display: block;
}

footer {
  margin-top: 40px;
  border-top: 1px solid var(--border);
  background: rgba(255,250,240,.55);
}

@media (max-width: 760px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  nav { justify-content: flex-start; gap: 8px; }
  .title-icon { width: 40px; height: 40px; }
  h1::before, h2::before { width: .75em; height: .75em; }
}



/* ===== Global Responsive Improvements ===== */
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

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

body {
  overflow-x: hidden;
}

main,
section,
div {
  max-width: 100%;
}

.hero,
.split-section,
.product-grid,
.features {
  width: 100%;
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 48px 24px;
  }

  .hero-copy p,
  h1,
  h2 {
    max-width: 100%;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  nav {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .site-header,
  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px;
  }

  nav {
    width: 100%;
    justify-content: center;
    gap: 12px;
  }

  .hero {
    min-height: auto;
    padding: 36px 18px;
    gap: 24px;
  }

  .hero-inner,
  .hero-card,
  .about-box,
  .text-panel {
    padding: 24px 18px;
  }

  .toy-photo {
    width: 240px;
    font-size: 6rem;
  }

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

  .products-preview {
    padding: 48px 18px 24px;
  }

  h1 {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .button {
    width: 100%;
    text-align: center;
  }

  iframe,
  video {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .site-header {
    gap: 12px;
  }

  nav {
    flex-direction: column;
    align-items: center;
  }

  .hero,
  .hero-inner {
    padding: 20px 14px;
  }

  .toy-photo {
    width: 180px;
    font-size: 4.5rem;
  }

  .product-card,
  .features article {
    padding: 20px 16px;
  }

  footer {
    font-size: 0.8rem;
  }
}


/* ===== Desktop Layout Repair: page-scoped rules ===== */
body {
  display: block;
  align-items: initial;
  justify-content: initial;
  min-height: 100vh;
  padding: 0;
}

/* Keep normal site pages centered and readable on computer screens */
body.home-page .site-header,
body.rehab-page .site-header,
body.farm-page .site-header {
  width: min(100% - 48px, 1180px);
  max-width: 1180px;
  margin-inline: auto;
  padding: 22px 0;
  text-align: left;
}

body.home-page main,
body.farm-page main.content,
body.farm-page .content-wrap,
body.rehab-page main.content {
  width: min(100% - 48px, 1180px);
  max-width: 1180px;
  margin-inline: auto;
}

body.home-page main {
  padding: 0 0 64px;
  overflow: visible;
}

body.home-page .hero {
  max-width: 1180px;
  margin-inline: auto;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  align-items: center;
  text-align: left;
  min-height: 560px;
  padding: 64px 52px;
}

body.home-page .hero-copy,
body.home-page .hero-card {
  min-width: 0;
}

body.home-page .hero-actions {
  justify-content: flex-start;
}

body.home-page .features {
  max-width: 1180px;
  margin: 28px auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.home-page .split-section,
body.home-page .products-preview,
body.home-page .about-box {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

body.home-page .split-section {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

body.home-page .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Rehab story page */
body.rehab-page .hero {
  width: 100%;
  min-height: 68vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 5rem max(24px, calc((100vw - 1180px) / 2)) 3rem;
}

body.rehab-page .hero-inner {
  max-width: 980px;
  margin-inline: auto;
}

body.rehab-page .slideshow-wrap {
  width: min(100% - 48px, 1180px);
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

body.rehab-page .section-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.rehab-page .benefits {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Farm page */
body.farm-page .hero {
  width: min(100% - 48px, 1280px);
  max-width: 1280px;
  margin-inline: auto;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
  text-align: left;
  padding: clamp(3rem, 6vw, 6rem) 0 3rem;
}

body.farm-page .hero-actions {
  justify-content: flex-start;
}

body.farm-page .story-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.farm-page footer,
body.rehab-page footer,
body.home-page footer {
  width: min(100% - 48px, 1180px);
  max-width: 1180px;
  margin: 40px auto 0;
  padding: 28px 0 46px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

/* Welcome page keeps its simple centered layout */
body.welcome-page header {
  padding: 24px;
  text-align: center;
}

body.welcome-page main {
  width: min(100% - 40px, 980px);
  max-width: 980px;
  margin-inline: auto;
  padding: 24px 0 70px;
  display: block;
}

body.welcome-page .hero {
  display: block;
  min-height: auto;
  text-align: left;
}

/* Store page only */
body.store-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

body.store-page .page {
  width: min(100%, 980px);
  max-width: 980px;
}

body.store-page header {
  text-align: left;
}

body.store-page main {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 34px;
  max-width: none;
  padding: 56px;
  align-items: center;
}

/* Preserve the mobile/tablet layout */
@media (max-width: 1024px) {
  body.home-page .site-header,
  body.rehab-page .site-header,
  body.farm-page .site-header,
  body.home-page main,
  body.farm-page main.content,
  body.farm-page .content-wrap,
  body.rehab-page main.content,
  body.rehab-page .slideshow-wrap,
  body.farm-page .hero {
    width: min(100% - 36px, 1180px);
  }

  body.home-page .hero,
  body.farm-page .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 48px 24px;
  }

  body.home-page .features,
  body.home-page .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-page .split-section,
  body.rehab-page .section-grid,
  body.farm-page .story-grid {
    grid-template-columns: 1fr;
  }

  body.rehab-page .benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-page .hero-actions,
  body.farm-page .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  body.home-page .site-header,
  body.rehab-page .site-header,
  body.farm-page .site-header,
  body.home-page footer,
  body.rehab-page footer,
  body.farm-page footer {
    width: 100%;
    padding: 18px;
    text-align: center;
    align-items: center;
  }

  body.home-page main,
  body.farm-page main.content,
  body.farm-page .content-wrap,
  body.rehab-page main.content,
  body.rehab-page .slideshow-wrap {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  body.home-page .features,
  body.home-page .product-grid,
  body.rehab-page .benefits {
    grid-template-columns: 1fr;
  }

  body.store-page {
    display: block;
    padding: 18px;
  }

  body.store-page main {
    grid-template-columns: 1fr;
    padding: 34px 24px;
  }
}



/* =========================================================
   FINAL FULL-SCREEN + TABLET ORGANIZATION PATCH
   Keeps the existing mobile layout, but makes desktop/tablet
   match the uploaded index reference: centered, card-based,
   and not scattered across wide screens.
   ========================================================= */

/* shared media safety */
body.home-page img,
body.rehab-page img,
body.farm-page img,
body.store-page img,
body.welcome-page img {
  max-width: 100%;
  height: auto;
}

/* HOME PAGE - desktop reference layout */
@media (min-width: 1025px) {
  body.home-page {
    background: linear-gradient(180deg, #f7efe1, #efe0c5);
  }

  body.home-page .site-header {
    width: min(100% - 48px, 1180px);
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    background: transparent;
    border: 0;
  }

  body.home-page .site-header nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 24px;
  }

  body.home-page main {
    width: min(100% - 48px, 1180px);
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 0 56px;
  }

  body.home-page .hero {
    width: 100%;
    min-height: 560px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
    align-items: center;
    gap: 48px;
    margin: 0 auto 28px;
    padding: 56px;
    text-align: left;
    background:
      radial-gradient(circle at 25% 25%, rgba(255,255,255,.55), transparent 32%),
      linear-gradient(135deg, #fff8ea, #e7d1a7);
    border: 1px solid rgba(90,60,39,.14);
    border-radius: 34px;
    box-shadow: 0 22px 55px rgba(80,55,30,.16);
    overflow: hidden;
  }

  body.home-page .hero-copy {
    width: 100%;
    max-width: 650px;
    margin: 0;
  }

  body.home-page .hero-copy h1 {
    max-width: 680px;
    margin: 0 0 18px;
    font-size: clamp(3.15rem, 5vw, 5.35rem);
    line-height: .95;
  }

  body.home-page .hero-copy p {
    max-width: 620px;
  }

  body.home-page .hero-actions {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
  }

  body.home-page .hero-card {
    width: 100%;
    max-width: 430px;
    justify-self: end;
    padding: 32px;
    border-radius: 30px;
    background: rgba(255,250,240,.78);
    box-shadow: inset 0 0 0 1px rgba(90,60,39,.12), 0 20px 42px rgba(80,55,30,.14);
    text-align: center;
  }

  body.home-page .toy-photo {
    width: min(100%, 330px);
    aspect-ratio: 1;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border-radius: 44% 56% 52% 48%;
    background: #dfc99f;
    font-size: clamp(6rem, 10vw, 9rem);
  }

  body.home-page .features {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 28px 0;
  }

  body.home-page .features article {
    min-height: 220px;
    padding: 28px 22px;
    border-radius: 24px;
    background: rgba(255,250,240,.78);
    border: 1px solid rgba(90,60,39,.12);
    box-shadow: 0 14px 30px rgba(80,55,30,.10);
  }

  body.home-page .split-section {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(340px, .95fr) minmax(0, 1.05fr);
    gap: 0;
    align-items: stretch;
    margin: 32px 0;
    border-radius: 32px;
    overflow: hidden;
    background: #fffaf0;
    box-shadow: 0 22px 55px rgba(80,55,30,.14);
  }

  body.home-page .image-panel {
    min-height: 430px;
    width: 100%;
  }

  body.home-page .text-panel {
    padding: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  body.home-page .products-preview {
    width: 100%;
    margin: 32px 0;
    padding: 52px 0 0;
    text-align: center;
  }

  body.home-page .product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 24px;
  }

  body.home-page .product-card {
    padding: 34px 26px;
    border-radius: 28px;
    background: #fffaf0;
    border: 1px solid rgba(90,60,39,.12);
    box-shadow: 0 16px 36px rgba(80,55,30,.10);
  }

  body.home-page .about-box {
    width: 100%;
    max-width: 980px;
    margin: 38px auto 0;
    padding: 48px 56px;
    text-align: center;
    border-radius: 30px;
    background: #fffaf0;
    box-shadow: 0 22px 55px rgba(80,55,30,.14);
  }

  body.home-page footer {
    width: min(100% - 48px, 1180px);
    max-width: 1180px;
    margin: 0 auto;
    padding: 28px 0 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
    background: transparent;
  }
}

/* HOME PAGE - tablet layout, organized but not cramped */
@media (min-width: 769px) and (max-width: 1024px) {
  body.home-page .site-header,
  body.home-page main,
  body.home-page footer {
    width: min(100% - 40px, 900px);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  body.home-page .site-header {
    padding: 22px 0;
    gap: 22px;
  }

  body.home-page .site-header nav {
    justify-content: flex-end;
    gap: 16px;
  }

  body.home-page main {
    padding: 0 0 44px;
  }

  body.home-page .hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 24px;
    padding: 42px;
    text-align: center;
    border-radius: 30px;
  }

  body.home-page .hero-copy,
  body.home-page .hero-copy h1,
  body.home-page .hero-copy p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  body.home-page .hero-actions {
    justify-content: center;
  }

  body.home-page .hero-card {
    max-width: 500px;
    margin: 0 auto;
  }

  body.home-page .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  body.home-page .split-section {
    grid-template-columns: 1fr;
    overflow: hidden;
    border-radius: 30px;
  }

  body.home-page .image-panel {
    min-height: 320px;
  }

  body.home-page .text-panel {
    padding: 42px;
  }

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

  body.home-page .about-box {
    padding: 42px;
  }

  body.home-page footer {
    padding: 26px 0 38px;
  }
}

/* Other pages - full screen/tablet containment so content does not scatter */
@media (min-width: 769px) {
  body.rehab-page .site-header,
  body.farm-page .site-header {
    width: min(100% - 48px, 1180px);
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  body.rehab-page main.content,
  body.farm-page main.content,
  body.farm-page .content-wrap {
    width: min(100% - 48px, 1120px);
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
  }

  body.rehab-page .slideshow-wrap {
    width: min(100% - 48px, 1120px);
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  body.rehab-page .section-grid,
  body.farm-page .story-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
  }

  body.rehab-page .benefits {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  body.store-page .page {
    width: min(100%, 980px);
    margin: 0 auto;
  }

  body.store-page main {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
    gap: 34px;
  }
}

/* Small phones: keep the vertical mobile version clean */
@media (max-width: 768px) {
  body.home-page main,
  body.rehab-page main.content,
  body.farm-page main.content,
  body.farm-page .content-wrap,
  body.rehab-page .slideshow-wrap {
    width: 100%;
    max-width: 100%;
  }
}


/* =========================================================
   GRIMOIRE FINAL PATCH — progressive centered pages
   Applies the uploaded index page's centered visual system
   to every HTML page in this zip.
   Main rule: mobile-first stacked content everywhere.
   Desktop/tablet progressively widen cards but DO NOT scatter
   sections into separate horizontal layouts.
   ========================================================= */

:root {
  --sc-page-max: 980px;
  --sc-card-max: 920px;
  --sc-pad: clamp(16px, 4vw, 32px);
  --sc-radius: 28px;
}

body.home-page,
body.welcome-page,
body.store-page,
body.rehab-page,
body.farm-page {
  min-height: 100vh;
  display: block !important;
  padding: 0 !important;
  color: var(--brown, #5a3c27);
  background:
    radial-gradient(circle at top left, rgba(88, 109, 59, 0.16), transparent 32rem),
    linear-gradient(180deg, var(--cream, #f7efe1), #efe0c5) !important;
  overflow-x: hidden;
}

/* one centered header style for all pages */
body.home-page .site-header,
body.rehab-page .site-header,
body.farm-page .site-header,
body.welcome-page header,
body.store-page header {
  position: relative !important;
  top: auto !important;
  z-index: 5;
  width: min(100% - 32px, var(--sc-page-max)) !important;
  max-width: var(--sc-page-max) !important;
  margin: 0 auto !important;
  padding: 18px 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: column !important;
  gap: 14px !important;
  text-align: center !important;
  background: transparent !important;
  color: var(--brown, #5a3c27) !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

body.home-page .logo,
body.rehab-page .logo,
body.farm-page .logo,
body.welcome-page .brand,
body.store-page .brand {
  justify-content: center !important;
  text-align: center !important;
  color: var(--green-dark, #394925) !important;
  text-decoration: none !important;
}

body.home-page nav,
body.rehab-page nav,
body.farm-page nav,
body.store-page nav {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}

body.home-page nav a,
body.rehab-page nav a,
body.farm-page nav a,
body.store-page .store-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 40px !important;
  padding: 10px 13px !important;
  border-radius: 999px !important;
  background: rgba(255, 250, 240, .58) !important;
  border: 1px solid rgba(90, 60, 39, .12) !important;
  color: var(--green-dark, #394925) !important;
  text-decoration: none !important;
}

/* all page bodies become a single descending centered column */
body.home-page main,
body.welcome-page main,
body.store-page main,
body.rehab-page main.content,
body.farm-page main,
body.farm-page .content-wrap {
  width: min(100% - 32px, var(--sc-page-max)) !important;
  max-width: var(--sc-page-max) !important;
  margin: 0 auto !important;
  padding: 0 0 48px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 22px !important;
  overflow: visible !important;
}

/* store page has a wrapper; keep it centered but stacked */
body.store-page .page {
  width: min(100% - 32px, var(--sc-page-max)) !important;
  max-width: var(--sc-page-max) !important;
  margin: 0 auto 36px !important;
  border-radius: var(--sc-radius) !important;
  overflow: hidden !important;
  background: rgba(255, 250, 240, .88) !important;
  border: 1px solid rgba(90, 60, 39, .14) !important;
  box-shadow: 0 22px 55px rgba(80, 55, 30, .16) !important;
}

body.store-page .page main {
  width: 100% !important;
  max-width: none !important;
  padding: clamp(24px, 5vw, 52px) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 24px !important;
}

/* hero sections: stacked cards, centered text, no desktop splitting */
body.home-page .hero,
body.welcome-page .hero,
body.rehab-page .hero,
body.farm-page .hero,
body.store-page section {
  width: 100% !important;
  max-width: var(--sc-card-max) !important;
  min-height: auto !important;
  margin: 0 auto !important;
  padding: clamp(28px, 6vw, 56px) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 24px !important;
  text-align: center !important;
  border-radius: var(--sc-radius) !important;
  border: 1px solid rgba(90, 60, 39, .14) !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.56), transparent 42%),
    linear-gradient(135deg, #fff8ea, #e7d1a7) !important;
  box-shadow: 0 22px 55px rgba(80, 55, 30, .16) !important;
  color: var(--brown, #5a3c27) !important;
}

body.rehab-page .hero {
  padding-left: max(16px, clamp(28px, 6vw, 56px)) !important;
  padding-right: max(16px, clamp(28px, 6vw, 56px)) !important;
}

body.rehab-page .hero-inner,
body.home-page .hero-copy,
body.farm-page .hero-copy,
body.store-page section > *,
body.welcome-page .hero > * {
  max-width: 760px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

body.home-page .hero-card,
body.store-page .card {
  width: min(100%, 520px) !important;
  max-width: 520px !important;
  margin: 0 auto !important;
  justify-self: center !important;
  text-align: center !important;
  border-radius: 24px !important;
}

/* all grid/side-by-side content becomes progressive descending stacks */
body.home-page .features,
body.home-page .product-grid,
body.home-page .split-section,
body.rehab-page .section-grid,
body.rehab-page .benefits,
body.farm-page .story-grid {
  width: 100% !important;
  max-width: var(--sc-card-max) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 18px !important;
  text-align: center !important;
}

body.home-page .features article,
body.home-page .product-card,
body.home-page .text-panel,
body.home-page .about-box,
body.rehab-page .intro-card,
body.rehab-page .section-card,
body.rehab-page .results,
body.rehab-page .final,
body.farm-page .intro-box,
body.farm-page .story-card,
body.farm-page .quote-banner,
body.welcome-page .mission,
body.store-page .card {
  width: 100% !important;
  max-width: var(--sc-card-max) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: clamp(22px, 5vw, 42px) !important;
  border-radius: var(--sc-radius) !important;
  text-align: center !important;
  background: rgba(255, 250, 240, .88) !important;
  border: 1px solid rgba(90, 60, 39, .14) !important;
  box-shadow: 0 16px 36px rgba(80,55,30,.10) !important;
  color: var(--brown, #5a3c27) !important;
}

body.rehab-page .final,
body.farm-page .quote-banner {
  background: linear-gradient(135deg, var(--green-dark, #394925), var(--green, #586d3b)) !important;
  color: #fff8e8 !important;
}

body.rehab-page .final h2,
body.farm-page .quote-banner h2 {
  color: #fff8e8 !important;
}

body.home-page .image-panel,
body.rehab-page .photo-card {
  width: 100% !important;
  max-width: var(--sc-card-max) !important;
  min-height: clamp(240px, 52vw, 430px) !important;
  margin: 0 auto !important;
  border-radius: var(--sc-radius) !important;
}

/* slideshows descend as their own centered cards */
body.rehab-page .slideshow-wrap,
body.farm-page .slideshow {
  width: min(100% - 32px, var(--sc-card-max)) !important;
  max-width: var(--sc-card-max) !important;
  margin: 22px auto !important;
  padding: 0 !important;
}

body.rehab-page .slideshow,
body.farm-page .slideshow {
  width: 100% !important;
  min-height: 0 !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: var(--sc-radius) !important;
  border-width: clamp(6px, 2vw, 12px) !important;
}

/* buttons center and stack nicely on phones */
body.home-page .hero-actions,
body.farm-page .hero-actions,
body.store-page .actions,
body.welcome-page .button-row {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  width: 100% !important;
  max-width: 620px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.home-page .button,
body.farm-page .button,
body.store-page .button,
body.welcome-page button,
body.welcome-page .shop-button {
  min-height: 46px !important;
  border-radius: 999px !important;
  text-align: center !important;
}

/* type scale and readable centered paragraphs */
body.home-page h1,
body.welcome-page h1,
body.store-page h1,
body.rehab-page h1,
body.farm-page h1 {
  max-width: 820px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  color: var(--green-dark, #394925) !important;
  text-align: center !important;
  font-size: clamp(2.2rem, 9vw, 5rem) !important;
  line-height: .98 !important;
}

body.home-page h2,
body.welcome-page h2,
body.store-page h2,
body.rehab-page h2,
body.farm-page h2,
body.home-page h3,
body.welcome-page h3,
body.store-page h3,
body.rehab-page h3,
body.farm-page h3 {
  text-align: center !important;
  color: var(--green-dark, #394925) !important;
}

body.home-page p,
body.welcome-page p,
body.store-page p,
body.rehab-page p,
body.farm-page p,
body.home-page li,
body.welcome-page li,
body.store-page li,
body.rehab-page li,
body.farm-page li {
  max-width: 760px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.welcome-page ul,
body.rehab-page ul,
body.farm-page ul {
  width: min(100%, 760px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: left !important;
}

body.rehab-page .benefits,
body.farm-page .result-list {
  list-style: none !important;
  padding-left: 0 !important;
  text-align: center !important;
}

body.rehab-page .benefits li,
body.farm-page .result-list li {
  text-align: center !important;
}

/* footers aligned with the same centered progressive page column */
body.home-page footer,
body.welcome-page footer,
body.store-page footer,
body.rehab-page footer,
body.farm-page footer {
  width: min(100% - 32px, var(--sc-page-max)) !important;
  max-width: var(--sc-page-max) !important;
  margin: 0 auto !important;
  padding: 24px 0 42px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  text-align: center !important;
  background: transparent !important;
  color: var(--brown, #5a3c27) !important;
  border-top: 1px solid rgba(90,60,39,.14) !important;
}

/* tablet/desktop progression: wider cards, still descending */
@media (min-width: 700px) {
  :root {
    --sc-page-max: 1040px;
    --sc-card-max: 980px;
  }

  body.home-page .features,
  body.home-page .product-grid,
  body.rehab-page .benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.home-page .split-section {
    grid-template-columns: 1fr !important;
  }

  body.home-page .button,
  body.farm-page .button,
  body.store-page .button,
  body.welcome-page button,
  body.welcome-page .shop-button {
    width: auto !important;
  }
}

@media (min-width: 1000px) {
  :root {
    --sc-page-max: 1120px;
    --sc-card-max: 1040px;
  }

  body.home-page .features {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  body.home-page .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  body.rehab-page .benefits {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  body.home-page .hero,
  body.farm-page .hero,
  body.store-page section,
  body.welcome-page .hero,
  body.rehab-page .hero {
    padding: 56px !important;
  }
}

@media (max-width: 520px) {
  body.home-page .site-header,
  body.rehab-page .site-header,
  body.farm-page .site-header,
  body.welcome-page header,
  body.store-page header,
  body.home-page main,
  body.welcome-page main,
  body.store-page .page,
  body.rehab-page main.content,
  body.farm-page main,
  body.farm-page .content-wrap,
  body.home-page footer,
  body.welcome-page footer,
  body.store-page footer,
  body.rehab-page footer,
  body.farm-page footer {
    width: min(100% - 24px, var(--sc-page-max)) !important;
  }

  body.home-page nav,
  body.rehab-page nav,
  body.farm-page nav {
    flex-direction: column !important;
  }

  body.home-page nav a,
  body.rehab-page nav a,
  body.farm-page nav a,
  body.store-page .store-link,
  body.home-page .button,
  body.farm-page .button,
  body.store-page .button,
  body.welcome-page button,
  body.welcome-page .shop-button {
    width: 100% !important;
  }
}
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.social-icon a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--green);
    color: #fff;

    border-radius: 50%;
    text-decoration: none;

    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.social-icon a:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
}

.social-icon i {
    font-size: 1.3rem;
}

/* ==================================
   Testing Team - Five Across Layout
   ================================== */

#testing-team {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin: 40px auto;
    max-width: 1200px;
}

#testing-team article {
    background: rgba(255,250,240,.9);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px 18px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(80,55,30,.12);
    transition: transform .25s ease;
}

#testing-team article:hover {
    transform: translateY(-4px);
}

#testing-team span {
    display: block;
    font-size: 3rem;
    margin-bottom: 12px;
}

#testing-team h3 {
    margin: 0 0 10px;
    color: var(--green-dark);
    font-size: 1.2rem;
}

#testing-team p {
    margin: 0;
    font-size: .9rem;
    line-height: 1.5;
}

/* Tablet */
@media (max-width: 1000px) {
    #testing-team {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    #testing-team {
        grid-template-columns: 1fr;
    }
}


#testing-team img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    display: block;
    margin: 0 auto 12px;
}



/* ======================================
   SHOP PAGE
====================================== */

body.shop-page {
    background:
        radial-gradient(circle at top left, rgba(88,109,59,.18), transparent 30rem),
        linear-gradient(180deg, var(--cream), #efe0c5);
}

.shop-header {
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px;
    text-align: center;
}

.shop-header h1 {
    margin-bottom: 10px;
}

.shop-header p {
    max-width: 700px;
    margin: 0 auto;
}

.shop-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px 60px;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 24px;
    margin-top: 32px;
}

.shop-item {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(80,55,30,.10);
    transition: all .25s ease;
}

.shop-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(80,55,30,.15);
}

.shop-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.shop-content {
    padding: 20px;
}

.shop-content h3 {
    margin: 0 0 10px;
    color: var(--green-dark);
}

.shop-content p {
    font-size: .95rem;
    margin-bottom: 15px;
}

.shop-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--green);
    margin-bottom: 18px;
}

.shop-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.shop-button {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.shop-button.primary {
    background: var(--green);
    color: white;
}

.shop-button.secondary {
    border: 1px solid var(--green);
    color: var(--green-dark);
}

.shop-loading {
    text-align: center;
    padding: 60px;
    font-size: 1.2rem;
}

@media (max-width:768px){

    .shop-container{
        padding:0 18px 40px;
    }

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

    .shop-item img{
        height:240px;
    }

}
/* Make shop header look like index hero */
body.shop-page .shop-header {
  width: min(100% - 48px, 1180px);
  margin: 0 auto 28px;
  padding: 56px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 34px;
  background:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,.55), transparent 32%),
    linear-gradient(135deg, #fff8ea, #e7d1a7);
  box-shadow: var(--shadow);
}

body.shop-page .shop-header h1 {
  max-width: 760px;
  margin: 0 auto 18px;
}

/* Make Etsy button match index buttons */
body.shop-page .shop-button.primary {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid var(--green);
  background: var(--green);
  color: white;
  font-family: Arial, sans-serif;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
}

body.shop-page .shop-button.primary:hover {
  transform: translateY(-1px);
}

/* Header match index spacing */
body.shop-page .site-header {
  width: min(100% - 48px, 1180px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: transparent;
  border: 0;
}

@media (max-width: 768px) {
  body.shop-page .shop-header,
  body.shop-page .site-header {
    width: min(100% - 32px, 1180px);
    padding: 28px 18px;
  }

  body.shop-page .site-header {
    flex-direction: column;
    text-align: center;
  }
}

