/* ============================================================
   PETTRIBUTE.CO — MASTER STYLESHEET
   Version: 1.0 | Phase 1 | May 2026
   OMC Sitefolio Portfolio
   
   DESIGN SYSTEM:
   Background:       #F0EBE1 (warm ivory)
   Primary accent:   #5BADA6 (sage-turquoise)
   Primary hover:    #4A9A93 (deepened for contrast)
   Gold secondary:   #D4A847 (warm gold)
   Text:             #1A1A2E (near-black charcoal)
   Subtle text:      #666666 (medium grey)
   
   TYPOGRAPHY:
   Headlines:        Crimson Pro (serif)
   Body/UI:          Inter (sans-serif)
   Emotional copy:   Lora italic (serif)
   Buttons:          Lora (serif)
   ============================================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #F0EBE1;
  color: #1A1A2E;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: #5BADA6;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #4A9A93;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: 'Crimson Pro', serif;
  font-weight: 600;
  line-height: 1.3;
  color: #1A1A2E;
}

h1 { font-size: 2.4rem; margin-bottom: 1rem; }
h2 { font-size: 1.8rem; margin-bottom: 0.8rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
h4 { font-size: 1.2rem; margin-bottom: 0.5rem; }

p {
  margin-bottom: 1rem;
  color: #1A1A2E;
}

.text-subtle {
  color: #666666;
}

.text-gold {
  color: #D4A847;
}

.font-lora {
  font-family: 'Lora', serif;
}

.font-lora-italic {
  font-family: 'Lora', serif;
  font-style: italic;
}

.font-crimson {
  font-family: 'Crimson Pro', serif;
}

/* --- LAYOUT --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-narrow {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 3rem 0;
}

.section-lg {
  padding: 4.5rem 0;
}

.text-center {
  text-align: center;
}

/* --- HEADER / NAV --- */
.site-header {
  padding: 1rem 0;
  background-color: #F0EBE1;
  position: relative;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.site-logo img {
  height: 44px;
  width: auto;
}

.site-logo-text {
  font-family: 'Crimson Pro', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #1A1A2E;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 200;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #1A1A2E;
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #666666;
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
}

.main-nav a:hover {
  color: #5BADA6;
}

/* --- HERO SECTION --- */
.hero {
  padding: 4rem 0 3rem;
  text-align: center;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  width: 180px;
  height: auto;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeInSoft 1s ease 0.2s forwards;
}

.hero-headline {
  font-family: 'Crimson Pro', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #1A1A2E;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  min-height: 3.6rem;
}

.hero-headline .cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background-color: #5BADA6;
  margin-left: 2px;
  animation: blink 0.8s ease-in-out infinite;
  vertical-align: text-bottom;
}

.hero-subtext {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: #666666;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-subtext.visible {
  opacity: 1;
}

.hero-cta-area {
  opacity: 0;
  transition: opacity 0.8s ease 0.3s;
}

.hero-cta-area.visible {
  opacity: 1;
}

.hero-label {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  color: #D4A847;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.hero-input-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.hero-input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: #1A1A2E;
  background-color: #FFFFFF;
  border: 1.5px solid #D6CFC4;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.hero-input::placeholder {
  color: #BFBAB3;
  font-style: italic;
}

.hero-input:focus {
  border-color: #5BADA6;
  box-shadow: 0 0 0 3px rgba(91, 173, 166, 0.15);
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  padding: 0.85rem 2.2rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.btn-primary {
  background-color: #5BADA6;
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: #4A9A93;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(91, 173, 166, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary.btn-inactive {
  background-color: #C4D6D4;
  color: #FFFFFF;
  cursor: default;
  pointer-events: none;
}

.btn-secondary {
  background-color: transparent;
  color: #5BADA6;
  border: 1.5px solid #5BADA6;
}

.btn-secondary:hover {
  background-color: rgba(91, 173, 166, 0.08);
}

.btn-muted {
  background: none;
  border: none;
  color: #666666;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.btn-muted:hover {
  color: #5BADA6;
}

/* --- THREE TRUTHS SECTION --- */
.truths-section {
  padding: 3.5rem 0;
}

.truths-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 560px;
  margin: 0 auto;
}

.truth-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.truth-item:hover {
  transform: translateX(4px);
}

.truth-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  background-color: #5BADA6;
  border-radius: 50%;
  margin-top: 0.55rem;
  opacity: 0.7;
}

.truth-text {
  font-family: 'Crimson Pro', serif;
  font-size: 1.25rem;
  color: #1A1A2E;
  line-height: 1.5;
}

/* --- EMOTIONAL COPY SECTION --- */
.emotional-section {
  padding: 3rem 0 4rem;
  max-width: 640px;
  margin: 0 auto;
}

.emotional-section p {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #444444;
  margin-bottom: 1.5rem;
}

/* --- SPECIES SELECTOR --- */
.species-section {
  padding: 3.5rem 0 4rem;
  text-align: center;
}

.species-section h2 {
  margin-bottom: 2.5rem;
}

.species-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 680px;
  margin: 0 auto;
}

.species-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  padding: 1.5rem 1rem;
  background-color: #FFFFFF;
  border: 1.5px solid #E5DFD6;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.species-btn:hover {
  border-color: #5BADA6;
  box-shadow: 0 4px 16px rgba(91, 173, 166, 0.15);
  transform: translateY(-2px);
}

.species-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(145deg, #EDE8E0, #F5F0E8);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    inset 2px 2px 4px rgba(255, 255, 255, 0.8),
    inset -1px -1px 3px rgba(0, 0, 0, 0.06),
    0 2px 6px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.species-icon svg {
  width: 36px;
  height: 36px;
}

.species-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #666666;
  letter-spacing: 0.02em;
}

/* --- SPECIES SELECTION OVERLAY --- */
.species-overlay {
  position: fixed;
  inset: 0;
  background-color: #F0EBE1;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.species-overlay.active {
  opacity: 1;
  visibility: visible;
}

.species-overlay h2 {
  font-family: 'Crimson Pro', serif;
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
  text-align: center;
  max-width: 500px;
}

.species-overlay .species-grid {
  max-width: 700px;
}

.species-overlay .back-link {
  margin-top: 2rem;
}

/* --- AFFILIATE FOOTER STRIP --- */
.affiliate-strip {
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid #E5DFD6;
}

.affiliate-strip-heading {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: #666666;
  margin-bottom: 1.5rem;
}

.affiliate-cards {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto 1.2rem;
}

.affiliate-card {
  background: #FFFFFF;
  border: 1px solid #E5DFD6;
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  text-align: center;
  min-width: 200px;
  flex: 1;
  max-width: 280px;
  transition: border-color 0.3s ease;
}

.affiliate-card:hover {
  border-color: #5BADA6;
}

.affiliate-card-primary {
  border-color: #D4A847;
}

.affiliate-card-name {
  font-family: 'Crimson Pro', serif;
  font-size: 1.1rem;
  color: #1A1A2E;
  margin-bottom: 0.3rem;
}

.affiliate-card-desc {
  font-size: 0.85rem;
  color: #666666;
  margin-bottom: 0.5rem;
}

.affiliate-card-shipping {
  font-size: 0.78rem;
  color: #999999;
  font-style: italic;
}

.affiliate-card a {
  color: #5BADA6;
  font-size: 0.85rem;
}

.ftc-disclosure {
  font-size: 0.78rem;
  color: #999999;
  max-width: 500px;
  margin: 1rem auto 0;
  line-height: 1.5;
}

.ftc-disclosure a {
  color: #999999;
  text-decoration: underline;
}

.ftc-disclosure a:hover {
  color: #5BADA6;
}

/* --- FOOTER --- */
.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid #E5DFD6;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: #666666;
}

.footer-links a:hover {
  color: #5BADA6;
}

.footer-copy {
  font-size: 0.78rem;
  color: #999999;
}

/* --- COOKIE CONSENT --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  border-top: 1px solid #E5DFD6;
  padding: 1.2rem 1.5rem;
  z-index: 1000;
  display: none;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.cookie-banner.active {
  display: block;
}

.cookie-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 0.85rem;
  color: #666666;
  flex: 1;
  min-width: 200px;
}

.cookie-text a {
  color: #5BADA6;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: #5BADA6;
  color: #FFFFFF;
}

.cookie-accept:hover {
  background-color: #4A9A93;
}

.cookie-decline {
  background-color: transparent;
  color: #666666;
  border: 1px solid #D6CFC4;
}

.cookie-decline:hover {
  border-color: #999999;
}

/* --- GENERATOR PAGE STYLES --- */
.generator-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.generator-step {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 3rem 1.25rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.generator-step.active {
  display: flex;
}

.step-heading {
  font-family: 'Crimson Pro', serif;
  font-size: 1.8rem;
  color: #1A1A2E;
  margin-bottom: 0.8rem;
  line-height: 1.35;
}

.step-guidance {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: #666666;
  margin-bottom: 2rem;
  max-width: 440px;
}

.step-input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: #1A1A2E;
  background-color: #FFFFFF;
  border: 1.5px solid #D6CFC4;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  margin-bottom: 0.5rem;
}

.step-input:focus {
  border-color: #5BADA6;
  box-shadow: 0 0 0 3px rgba(91, 173, 166, 0.15);
}

.step-input::placeholder {
  color: #BFBAB3;
  font-style: italic;
}

.step-textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: #1A1A2E;
  background-color: #FFFFFF;
  border: 1.5px solid #D6CFC4;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  resize: vertical;
  min-height: 120px;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.step-textarea:focus {
  border-color: #5BADA6;
  box-shadow: 0 0 0 3px rgba(91, 173, 166, 0.15);
}

.step-textarea::placeholder {
  color: #BFBAB3;
  font-style: italic;
}

.char-count {
  font-size: 0.78rem;
  color: #999999;
  margin-bottom: 1.5rem;
  align-self: flex-end;
}

.char-count.near-limit {
  color: #D4A847;
}

.char-count.at-limit {
  color: #C0392B;
}

/* --- PILL SELECTORS --- */
.pill-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.pill {
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  padding: 0.65rem 1.5rem;
  border: 1.5px solid #D6CFC4;
  border-radius: 30px;
  background-color: #FFFFFF;
  color: #666666;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pill:hover {
  border-color: #5BADA6;
  color: #5BADA6;
}

.pill.selected {
  background-color: #5BADA6;
  border-color: #5BADA6;
  color: #FFFFFF;
}

/* --- SUMMARY STEP --- */
.summary-reflection {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: #444444;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

/* --- GENERATOR OUTPUT --- */
.output-section {
  padding: 2rem 0 3rem;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.output-card {
  background: #FFFFFF;
  border: 1px solid #E5DFD6;
  border-radius: 14px;
  padding: 2rem 1.8rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.output-text {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #1A1A2E;
  white-space: pre-wrap;
  text-align: left;
  min-height: 100px;
  outline: none;
}

.output-text:focus {
  background-color: #FDFCFA;
  border-radius: 8px;
}

.output-text .user-edit {
  color: #5BADA6;
  background-color: rgba(91, 173, 166, 0.08);
  border-radius: 2px;
  padding: 0 2px;
}

.output-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* --- LOADING SPINNER --- */
.loading-container {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  min-height: 200px;
}

.loading-container.active {
  display: flex;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #E5DFD6;
  border-top: 3px solid #5BADA6;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 1.2rem;
}

.loading-text {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: #666666;
}

/* --- COMING SOON PAGE --- */
.coming-soon-section {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.25rem;
}

.coming-soon-section h1 {
  margin-bottom: 1rem;
}

.coming-soon-section p {
  font-family: 'Lora', serif;
  font-style: italic;
  color: #666666;
  max-width: 480px;
  margin-bottom: 2rem;
}

/* --- CONTENT PAGES (about, privacy, terms, etc.) --- */
.content-page {
  padding: 3rem 0;
}

.content-page h1 {
  margin-bottom: 1.5rem;
}

.content-page h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.content-page p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.content-page ul, .content-page ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.content-page li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

/* --- SUPPORT PAGE SPECIAL --- */
.support-intro {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #444444;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.support-resource {
  background: #FFFFFF;
  border: 1px solid #E5DFD6;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.2rem;
  transition: border-color 0.3s ease;
}

.support-resource:hover {
  border-color: #5BADA6;
}

.support-resource h3 {
  font-family: 'Crimson Pro', serif;
  margin-bottom: 0.4rem;
}

.support-resource p {
  font-size: 0.9rem;
  color: #666666;
  margin-bottom: 0;
}

.support-betterhelp {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #E5DFD6;
}

.support-betterhelp p {
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.8;
  max-width: 560px;
}

/* --- SHARE BUTTONS --- */
.share-buttons {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-family: 'Inter', sans-serif;
  border: 1px solid #E5DFD6;
  border-radius: 8px;
  background: #FFFFFF;
  color: #666666;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.share-btn:hover {
  border-color: #5BADA6;
  color: #5BADA6;
}

/* --- AD ZONES --- */
.ad-zone {
  padding: 1rem;
  margin: 1.5rem 0;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ad-zone-sidebar {
  display: none;
}

/* --- ANIMATIONS --- */
@keyframes fadeInSoft {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --- HONEYPOT --- */
.ohnohoney {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background-color: #F0EBE1;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 150;
  }
  
  .main-nav.open {
    right: 0;
  }
  
  .main-nav a {
    font-size: 1rem;
  }
  
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  
  .hero {
    padding: 2.5rem 0 2rem;
    min-height: 70vh;
  }
  
  .hero-headline {
    font-size: 2rem;
  }
  
  .hero-subtext {
    font-size: 1rem;
    padding: 0 0.5rem;
  }
  
  .species-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .species-icon {
    width: 52px;
    height: 52px;
  }
  
  .species-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .species-label {
    font-size: 0.75rem;
  }
  
  .species-btn {
    padding: 1rem 0.5rem;
  }
  
  .step-heading {
    font-size: 1.5rem;
  }
  
  .affiliate-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .affiliate-card {
    max-width: 100%;
    width: 100%;
  }

  .truth-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .species-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
  
  .hero-headline {
    font-size: 1.7rem;
  }
  
  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (min-width: 1024px) {
  .ad-zone-sidebar {
    display: flex;
  }
}

/* --- SKIP LINK ACCESSIBILITY --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: #5BADA6;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0 0 8px 8px;
  z-index: 9999;
  font-size: 0.85rem;
}

.skip-link:focus {
  top: 0;
}

/* --- 404 PAGE --- */
.page-404 {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.25rem;
}

.page-404 h1 {
  font-size: 3rem;
  color: #5BADA6;
  margin-bottom: 0.5rem;
}

.page-404 p {
  font-family: 'Lora', serif;
  font-style: italic;
  color: #666666;
  margin-bottom: 2rem;
}
