/* ========================================
   CATISM Brand Website - Shared Stylesheet
   Brand colors: #f4bd00 (yellow), #0087e8 (blue)
   ======================================== */

:root {
  --catism-yellow: #f4bd00;
  --catism-yellow-dark: #d9a800;
  --catism-blue: #0087e8;
  --catism-black: #000000;
  --catism-gray: #efefef;
  --catism-gray-2: #f8f8f8;
  --catism-text: #1a1a1a;
  --catism-text-muted: #666666;
  --catism-white: #ffffff;
  --amazon-orange: #FF9900;
  --amazon-orange-dark: #e68a00;
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 36px rgba(0,0,0,0.12);
  --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--catism-text);
  background: var(--catism-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--catism-black);
}

h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

p { color: var(--catism-text); }

a { color: var(--catism-blue); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .8; }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--catism-white);
  border-bottom: 1px solid var(--catism-gray);
  backdrop-filter: blur(10px);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.75rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
}
.nav-logo .c-yellow { color: var(--catism-yellow); }
.nav-logo .c-blue { color: var(--catism-blue); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--catism-text);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--catism-yellow-dark); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: var(--catism-yellow);
  border-radius: 2px;
}

.nav-cta {
  background: var(--amazon-orange);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all .2s;
}
.nav-cta:hover { background: var(--amazon-orange-dark); opacity: 1 !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--catism-black);
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--catism-gray);
    box-shadow: var(--shadow-md);
    gap: 14px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none !important;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--catism-yellow);
  color: var(--catism-black) !important;
}
.btn-primary:hover { background: var(--catism-yellow-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); opacity: 1 !important; }

.btn-dark {
  background: var(--catism-black);
  color: #fff !important;
}
.btn-dark:hover { background: #333; transform: translateY(-2px); opacity: 1 !important; }

.btn-outline {
  background: transparent;
  color: var(--catism-black) !important;
  border: 2px solid var(--catism-black);
}
.btn-outline:hover { background: var(--catism-black); color: #fff !important; opacity: 1 !important; }

.btn-amazon {
  background: var(--amazon-orange);
  color: #fff !important;
}
.btn-amazon:hover { background: var(--amazon-orange-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); opacity: 1 !important; }

.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-block { display: flex; justify-content: center; width: 100%; }

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  background: linear-gradient(135deg, var(--catism-yellow) 0%, #ffd84d 100%);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 340px; height: 340px;
  background: rgba(0,0,0,0.05);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--catism-black);
  color: var(--catism-yellow);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 { margin-bottom: 20px; }
.hero-sub {
  font-size: 1.2rem;
  color: var(--catism-text);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.6;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
  background: #fff;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 860px) {
  .hero { padding: 60px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-ctas .btn { flex: 1; justify-content: center; }
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head .eyebrow {
  color: var(--catism-blue);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--catism-text-muted); font-size: 1.1rem; }

/* ========================================
   PRODUCT CARDS
   ======================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--catism-yellow);
}

.product-card-image {
  aspect-ratio: 1 / 1;
  background: var(--catism-gray-2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.product-card:hover .product-card-image img { transform: scale(1.05); }

.product-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--catism-yellow);
  color: var(--catism-black);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}
.product-card h3 { font-size: 1.2rem; margin: 0; }
.product-card-desc {
  color: var(--catism-text-muted);
  font-size: 0.92rem;
  flex: 1;
}
.product-card-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.product-card-features li {
  background: var(--catism-gray);
  color: var(--catism-text);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
}
.product-card .btn { margin-top: 8px; }

/* ========================================
   FEATURES STRIP
   ======================================== */
.features-strip {
  background: var(--catism-gray-2);
  padding: 56px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.feature-item {
  text-align: center;
}
.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--catism-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
}
.feature-item h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.feature-item p {
  color: var(--catism-text-muted);
  font-size: 0.9rem;
}

/* ========================================
   BRAND STORY STRIP
   ======================================== */
.story-strip {
  background: var(--catism-black);
  color: #fff;
  padding: 100px 0;
  position: relative;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story-strip h2 { color: #fff; margin-bottom: 20px; }
.story-strip h2 span { color: var(--catism-yellow); }
.story-strip p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #222;
}
.story-image img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 860px) {
  .story-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ========================================
   SOCIAL / BLOG PREVIEW
   ======================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card-image {
  aspect-ratio: 16/9;
  background: var(--catism-gray);
  overflow: hidden;
}
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-tag {
  color: var(--catism-blue);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.3;
}
.blog-card h3 a { color: var(--catism-black); }
.blog-card-meta {
  color: var(--catism-text-muted);
  font-size: 0.85rem;
  margin-top: auto;
  padding-top: 14px;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--catism-black);
  color: #bbb;
  padding: 72px 0 32px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo { margin-bottom: 16px; font-size: 2rem; }
.footer-brand p {
  color: #999;
  font-size: 0.92rem;
  margin-bottom: 20px;
  max-width: 320px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 1.05rem;
  transition: all .2s;
}
.footer-social a:hover { background: var(--catism-yellow); color: #000 !important; opacity: 1 !important; }

.footer-col h5 {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: #bbb;
  font-size: 0.92rem;
  transition: color .2s;
}
.footer-col a:hover { color: var(--catism-yellow); opacity: 1; }

.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: #666;
  font-size: 0.85rem;
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ========================================
   PAGE HEADER (inner pages)
   ======================================== */
.page-header {
  background: var(--catism-yellow);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
}
.page-header h1 { position: relative; margin-bottom: 12px; }
.page-header p {
  position: relative;
  color: var(--catism-text);
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto;
}

/* ========================================
   PRODUCT DETAIL
   ======================================== */
.product-detail {
  padding: 64px 0;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.product-gallery {
  background: var(--catism-gray-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  position: sticky;
  top: 100px;
}
.product-gallery img { width: 100%; height: 100%; object-fit: cover; }

.product-info h1 { font-size: 2.5rem; margin-bottom: 8px; }
.product-tagline {
  color: var(--catism-blue);
  font-weight: 600;
  margin-bottom: 24px;
  font-size: 1.05rem;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.product-rating .stars { color: var(--catism-yellow); font-size: 1.1rem; }
.product-rating span { color: var(--catism-text-muted); font-size: 0.9rem; }

.product-description {
  font-size: 1.05rem;
  color: var(--catism-text);
  margin-bottom: 28px;
  line-height: 1.75;
}

.product-highlights {
  background: var(--catism-gray-2);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 32px;
}
.product-highlights h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-highlights ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.product-highlights li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
}
.product-highlights li::before {
  content: '✓';
  color: var(--catism-yellow-dark);
  background: var(--catism-yellow);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 900;
  font-size: 0.8rem;
}

@media (max-width: 860px) {
  .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .product-gallery { position: static; }
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-intro {
  padding: 80px 0;
}
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-intro h2 { margin-bottom: 20px; }
.about-intro p {
  font-size: 1.05rem;
  color: var(--catism-text);
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-image {
  aspect-ratio: 4/5;
  background: var(--catism-gray-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.value-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 2px solid var(--catism-gray);
  transition: all .3s;
}
.value-card:hover {
  border-color: var(--catism-yellow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.value-card .icon {
  width: 56px;
  height: 56px;
  background: var(--catism-yellow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.value-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.value-card p { color: var(--catism-text-muted); font-size: 0.95rem; }

@media (max-width: 860px) {
  .about-intro-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ========================================
   BLOG POST
   ======================================== */
.post {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px;
}
.post-meta {
  display: flex;
  gap: 16px;
  color: var(--catism-text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.post-meta .tag { color: var(--catism-blue); font-weight: 700; }
.post h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 24px; line-height: 1.2; }
.post-hero {
  aspect-ratio: 16/9;
  background: var(--catism-gray-2);
  border-radius: var(--radius-lg);
  margin: 32px 0 40px;
  overflow: hidden;
}
.post-hero img { width: 100%; height: 100%; object-fit: cover; }

.post-content { font-size: 1.08rem; line-height: 1.8; color: #2a2a2a; }
.post-content h2 { margin: 48px 0 16px; font-size: 1.7rem; }
.post-content h3 { margin: 32px 0 12px; font-size: 1.3rem; }
.post-content p { margin-bottom: 20px; }
.post-content ul, .post-content ol { margin: 0 0 20px 24px; }
.post-content li { margin-bottom: 8px; }
.post-content blockquote {
  border-left: 4px solid var(--catism-yellow);
  padding: 16px 24px;
  background: var(--catism-gray-2);
  margin: 28px 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--catism-text);
}

.post-product-cta {
  background: var(--catism-gray-2);
  border-left: 4px solid var(--catism-yellow);
  border-radius: var(--radius-md);
  padding: 28px;
  margin: 36px 0;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 20px;
  align-items: center;
}
.post-product-cta img {
  width: 120px; height: 120px;
  border-radius: var(--radius-md);
  object-fit: cover;
  background: #fff;
}
.post-product-cta h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.post-product-cta p { font-size: 0.9rem; color: var(--catism-text-muted); margin: 0; }

@media (max-width: 680px) {
  .post-product-cta { grid-template-columns: 1fr; text-align: center; }
  .post-product-cta img { margin: 0 auto; }
}

/* ========================================
   CONTACT
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-info > p { font-size: 1.05rem; color: var(--catism-text-muted); margin-bottom: 32px; }

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-item .icon {
  width: 48px;
  height: 48px;
  background: var(--catism-yellow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-item h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}
.contact-item p, .contact-item a { color: var(--catism-text-muted); font-size: 0.95rem; }

.contact-form {
  background: var(--catism-gray-2);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form h3 { margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--catism-text);
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 2px solid var(--catism-gray);
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--catism-yellow);
}
.form-group textarea { resize: vertical; min-height: 120px; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px; }
}

/* ========================================
   FABLE-STYLE HOME LAYOUT
   ======================================== */

/* Hero — full-bleed image with overlay text */
.hero-fable {
  position: relative;
  height: clamp(560px, 80vh, 820px);
  overflow: hidden;
  background: var(--catism-yellow);
}
.hero-fable-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-fable-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.45) 100%);
}
.hero-fable-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}
.hero-fable-eyebrow {
  display: inline-block;
  background: var(--catism-yellow);
  color: var(--catism-black);
  padding: 8px 20px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-fable h1 {
  color: #fff;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  max-width: 900px;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.hero-fable p {
  color: #fff;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  max-width: 580px;
  margin-bottom: 36px;
  font-weight: 400;
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}
.hero-fable-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Testimonials strip — minimal text-only carousel */
.testimonials-strip {
  background: #fff;
  padding: 56px 0;
  border-bottom: 1px solid var(--catism-gray);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  align-items: start;
}
.testimonial {
  text-align: center;
  padding: 0 16px;
}
.testimonial-stars {
  color: var(--catism-yellow);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testimonial-quote {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--catism-text);
  font-style: italic;
  margin-bottom: 12px;
}
.testimonial-author {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--catism-text-muted);
}

/* Brand purpose — centered statement */
.brand-purpose {
  background: #fff;
  padding: 120px 0;
  text-align: center;
}
.brand-purpose-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}
.brand-purpose .eyebrow {
  display: block;
  color: var(--catism-blue);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.brand-purpose h2 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}
.brand-purpose h2 em {
  color: var(--catism-yellow-dark);
  font-style: normal;
}
.brand-purpose p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--catism-text-muted);
}

/* Featured products grid — Fable-style minimal cards */
.featured-products {
  background: var(--catism-gray-2);
  padding: 100px 0;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.featured-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none !important;
  display: block;
  transition: transform .3s, box-shadow .3s;
}
.featured-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); opacity: 1 !important; }
.featured-card-image {
  aspect-ratio: 1 / 1;
  background: var(--catism-gray-2);
  overflow: hidden;
}
.featured-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.featured-card:hover .featured-card-image img { transform: scale(1.04); }
.featured-card-body {
  padding: 28px 24px 32px;
  text-align: center;
}
.featured-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 6px;
  color: var(--catism-black);
}
.featured-card-tag {
  font-size: 0.92rem;
  color: var(--catism-text-muted);
  margin-bottom: 14px;
}
.featured-card-rating {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--catism-text-muted);
}
.featured-card-rating .stars { color: var(--catism-yellow); letter-spacing: 1px; font-size: 0.95rem; }

@media (max-width: 860px) {
  .featured-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* Full-width product hero */
.fw-product {
  background: var(--catism-yellow);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.fw-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 600px;
}
.fw-product-image {
  background: var(--catism-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.fw-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fw-product-content {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--catism-yellow);
}
.fw-product-content .eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--catism-black);
}
.fw-product-content h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.015em;
}
.fw-product-content p {
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 32px;
  color: var(--catism-black);
  max-width: 480px;
}
.fw-product-cta { display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 860px) {
  .fw-product-grid { grid-template-columns: 1fr; min-height: 0; }
  .fw-product-image { aspect-ratio: 4/3; }
  .fw-product-content { padding: 60px 24px; }
}

/* Real cats / Instagram grid */
.real-cats {
  background: #fff;
  padding: 100px 0;
}
.real-cats-head {
  text-align: center;
  margin-bottom: 56px;
}
.real-cats-head .eyebrow {
  display: block;
  color: var(--catism-blue);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.real-cats-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}
.real-cats-head p {
  color: var(--catism-text-muted);
  font-size: 1.05rem;
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}
.ig-grid a {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--catism-gray-2);
  position: relative;
  display: block;
}
.ig-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.ig-grid a:hover img { transform: scale(1.08); opacity: 1; }
.ig-grid a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background .3s;
}
.ig-grid a:hover::after { background: rgba(0,0,0,0.15); }

.real-cats-socials {
  text-align: center;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.92rem;
}
.real-cats-socials a {
  color: var(--catism-text);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

@media (max-width: 860px) {
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Newsletter signup */
.newsletter {
  background: var(--catism-gray-2);
  padding: 100px 0;
  text-align: center;
}
.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 24px;
}
.newsletter h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}
.newsletter p {
  color: var(--catism-text-muted);
  margin-bottom: 32px;
  font-size: 1.05rem;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 2px solid var(--catism-gray);
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--catism-yellow);
}
.newsletter-form button {
  padding: 16px 28px;
  border-radius: var(--radius-md);
  border: none;
  background: var(--catism-black);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: #333; }
.newsletter small {
  display: block;
  margin-top: 14px;
  color: var(--catism-text-muted);
  font-size: 0.78rem;
}

@media (max-width: 560px) {
  .newsletter-form { flex-direction: column; }
}

/* Secondary product callout */
.secondary-callout {
  background: #fff;
  padding: 100px 0;
  text-align: center;
}
.secondary-callout-image {
  max-width: 360px;
  margin: 0 auto 40px;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--catism-gray-2);
}
.secondary-callout-image img { width: 100%; height: 100%; object-fit: cover; }
.secondary-callout .eyebrow {
  display: block;
  color: var(--catism-blue);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.secondary-callout h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 18px;
}
.secondary-callout p {
  max-width: 520px;
  margin: 0 auto 28px;
  color: var(--catism-text-muted);
  font-size: 1.05rem;
}

/* ========================================
   PAGE HERO (inner pages — Fable style)
   ======================================== */
.page-hero {
  background: #fff;
  padding: 120px 0 80px;
  text-align: center;
  border-bottom: 1px solid var(--catism-gray);
}
.page-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}
.page-hero .eyebrow {
  display: block;
  color: var(--catism-blue);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.page-hero p {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--catism-text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Fable-style refinements to product detail pages */
.product-detail {
  padding: 100px 0 80px;
  background: #fff;
}
.product-detail-grid {
  gap: 80px;
}
.product-info h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.product-tagline {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--catism-text-muted);
  margin-bottom: 28px;
}
.product-rating {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--catism-gray);
}
.product-description {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--catism-text);
}
.product-highlights {
  background: var(--catism-gray-2);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 36px 0;
}

/* Fable-style minimal feature cards */
.value-card {
  padding: 40px 28px;
  border: 1px solid var(--catism-gray);
  background: #fff;
  border-radius: var(--radius-lg);
}

@media (max-width: 860px) {
  .product-detail { padding: 60px 0; }
  .product-detail-grid { gap: 40px; }
}

/* ========================================
   UTILITIES
   ======================================== */
.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
