/* ============================================
   FLYCAP — Comic / Pop Art Stylesheet
   ============================================ */

:root {
  --red: #E63946;
  --red-dark: #C1121F;
  --red-light: #FFB3B8;
  --yellow: #FFD60A;
  --blue: #0066FF;
  --green: #06D6A0;
  --green-dark: #048F6E;
  --green-light: #B8F2DE;
  --purple: #7B2CBF;
  --ink: #1a1a1a;
  --paper: #FFF8E7;
  --paper-2: #FFEFCC;
  --halftone-dark: rgba(26, 26, 26, 0.06);
  --halftone-light: rgba(255, 255, 255, 0.08);
  --shadow-comic: 6px 6px 0px var(--ink);
  --shadow-comic-lg: 10px 10px 0px var(--ink);
  --font-display: 'Bangers', cursive;
  --font-body: 'Bitter', Georgia, serif;
  --font-alt: 'Bungee', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Halftone Background Texture */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, var(--halftone-dark) 1.2px, transparent 1.2px);
  background-size: 8px 8px;
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem;
  background: var(--ink);
  border-bottom: 4px solid var(--green);
}

.logo-mark {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--green);
  letter-spacing: 2px;
  text-shadow: 2px 2px 0px var(--yellow);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--paper);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s, transform 0.2s;
}

.nav-links a:hover {
  color: var(--green);
  transform: translateY(-2px);
}

.nav-cta {
  font-family: var(--font-alt);
  font-size: 0.85rem;
  background: var(--red);
  color: white;
  padding: 0.5rem 1.25rem;
  border: 3px solid var(--paper);
  text-decoration: none;
  letter-spacing: 1px;
  box-shadow: 4px 4px 0px var(--green);
  transition: transform 0.15s, box-shadow 0.15s;
}

.nav-cta:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px var(--green);
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav { padding: 0.75rem 1rem; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background: var(--paper);
  padding: 3rem 2rem 2rem;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.halftone-overlay {
  position: absolute;
  top: 0;
  right: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(6, 214, 160, 0.18) 0%, transparent 60%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.hero-pow {
  display: inline-block;
  margin-bottom: 1rem;
}

.pow-text {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--ink);
  background: var(--green);
  padding: 0.2rem 1rem;
  border: 4px solid var(--ink);
  box-shadow: 4px 4px 0px var(--ink);
  transform: rotate(-8deg);
  display: inline-block;
  letter-spacing: 3px;
}

.pow-sub {
  display: block;
  margin-top: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green-dark);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  color: var(--ink);
  text-shadow: 3px 3px 0px var(--green-light);
}

.text-yellow {
  color: var(--green-dark);
  text-shadow: 3px 3px 0px var(--green-light);
}

.hero-sub {
  font-size: 1.15rem;
  font-weight: 400;
  max-width: 500px;
  margin-bottom: 2rem;
  color: var(--ink);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.btn {
  font-family: var(--font-alt);
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
  border: 3px solid var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  letter-spacing: 1px;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 5px 5px 0px var(--ink);
}

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

.btn-secondary {
  background: var(--paper);
  color: var(--ink);
}

.btn-icon {
  font-size: 1.2rem;
}

.btn:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0px var(--ink);
}

.btn:active {
  transform: translate(5px, 5px);
  box-shadow: 0px 0px 0px var(--ink);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--green-dark);
  letter-spacing: 1px;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.speed-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 14px,
    rgba(230, 57, 70, 0.12) 14px,
    rgba(230, 57, 70, 0.12) 16px
  );
}

.hero-capsule {
  width: 100%;
  max-width: 420px;
  z-index: 2;
  animation: capsuleFloat 4s ease-in-out infinite;
  filter: drop-shadow(8px 8px 0px var(--ink));
}

@keyframes capsuleFloat {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-25px) rotate(-3deg); }
}

.float-wham, .float-zoom {
  position: absolute;
  font-family: var(--font-display);
  font-size: 2.5rem;
  z-index: 3;
  animation: soundPop 3s ease-in-out infinite;
}

.float-wham {
  top: 10%;
  right: 5%;
  color: white;
  background: var(--red);
  padding: 0.2rem 1rem;
  border: 4px solid var(--ink);
  box-shadow: 4px 4px 0px var(--ink);
  transform: rotate(12deg);
  letter-spacing: 2px;
  animation-delay: 0s;
}

.float-zoom {
  bottom: 15%;
  left: 0%;
  color: var(--ink);
  background: var(--red-dark);
  color: white;
  padding: 0.2rem 1rem;
  border: 4px solid var(--ink);
  box-shadow: 4px 4px 0px var(--ink);
  transform: rotate(-15deg);
  letter-spacing: 2px;
  animation-delay: 1.5s;
}

@keyframes soundPop {
  0%, 100% { transform: scale(1) rotate(12deg); opacity: 1; }
  50% { transform: scale(1.15) rotate(8deg); opacity: 0.9; }
}

.float-zoom {
  animation-name: soundPop2;
}

@keyframes soundPop2 {
  0%, 100% { transform: scale(1) rotate(-15deg); opacity: 1; }
  50% { transform: scale(1.15) rotate(-12deg); opacity: 0.9; }
}

.hero-bottom-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--ink);
  color: var(--red-light);
  text-align: center;
  padding: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  font-style: italic;
  border-top: 3px solid var(--red);
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-sub { margin: 0 auto 2rem; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { min-height: 300px; }
  .hero-capsule { max-width: 280px; }
}

/* ============================================
   SECTION SHARED
   ============================================ */
section {
  position: relative;
  z-index: 1;
  padding: 5rem 2rem;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-alt);
  font-size: 0.8rem;
  background: var(--ink);
  color: var(--green);
  padding: 0.3rem 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: 2px;
  line-height: 1.1;
  text-shadow: 3px 3px 0px var(--green-light);
}

.section-intro {
  font-size: 1.1rem;
  margin-top: 1rem;
  color: var(--ink);
  font-style: italic;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how {
  background: var(--paper-2);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}

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

.step-panel {
  background: var(--panel-color, var(--yellow));
  border: 4px solid var(--ink);
  box-shadow: var(--shadow-comic-lg);
  padding: 2rem 1.75rem;
  transform: rotate(var(--panel-tilt, 0deg));
  position: relative;
  transition: transform 0.3s;
}

.step-panel:hover {
  transform: rotate(0deg) translateY(-5px);
}

.step-number {
  position: absolute;
  top: -1.5rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--ink);
  opacity: 0.15;
  line-height: 1;
}

.step-icon {
  font-size: 3.5rem;
  color: var(--ink);
  margin-bottom: 1rem;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.step-body {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.step-burst {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  background: var(--green-dark);
  color: var(--paper);
  padding: 0.3rem 1rem;
  letter-spacing: 2px;
  transform: rotate(-2deg);
}

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
  .step-panel { transform: rotate(0deg); }
}

/* ============================================
   GREEN INGREDIENT BAR
   ============================================ */
.green-bar {
  background: var(--green-dark);
  padding: 1.75rem 2rem;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}

.green-bar-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.green-bar-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-alt);
  font-size: 0.9rem;
  color: var(--green-light);
  letter-spacing: 1px;
}

.green-bar-item iconify-icon {
  font-size: 1.5rem;
  color: var(--yellow);
}

.green-bar-item.red-bar-item {
  color: var(--red-light);
}

.green-bar-item.red-bar-item iconify-icon {
  color: var(--red-light);
}

@media (max-width: 768px) {
  .green-bar-content { flex-direction: column; align-items: center; gap: 1rem; }
}

/* ============================================
   PRODUCTS
   ============================================ */
.products {
  background: var(--paper);
}

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

.product-card {
  background: var(--paper);
  border: 4px solid var(--ink);
  box-shadow: var(--shadow-comic-lg);
  padding: 0 0 1.5rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 12px 12px 0px var(--ink);
}

.product-card-featured {
  border-color: var(--red);
  border-width: 5px;
}

.product-image-wrap {
  background: var(--card-accent, var(--blue));
  border-bottom: 4px solid var(--ink);
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 280px;
  overflow: hidden;
}

.product-image-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(4px 4px 0px rgba(0,0,0,0.3));
  transition: transform 0.4s;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.1) rotate(-3deg);
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-family: var(--font-alt);
  font-size: 0.7rem;
  background: var(--ink);
  color: var(--yellow);
  padding: 0.25rem 0.75rem;
  letter-spacing: 1px;
  z-index: 5;
}

.product-card-featured .product-badge {
  background: var(--red);
  color: white;
}

.product-eco-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-family: var(--font-alt);
  font-size: 0.65rem;
  background: var(--green-dark);
  color: var(--green-light);
  padding: 0.25rem 0.6rem;
  border: 2px solid var(--ink);
  letter-spacing: 1px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.product-eco-badge iconify-icon {
  font-size: 0.9rem;
}

.product-red-badge {
  background: var(--red-dark);
  color: var(--red-light);
}

.product-name {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 2px;
  margin: 1.25rem 1rem 0.5rem;
}

.product-desc {
  font-size: 0.95rem;
  padding: 0 1.5rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.product-specs {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
  padding: 0 1rem;
}

.product-specs span {
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.product-specs iconify-icon {
  color: var(--card-accent, var(--blue));
  font-size: 1.1rem;
}

.product-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
}

.price-unit {
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0;
}

.btn-card {
  margin: 0 1.5rem;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 4px 4px 0px var(--ink);
}

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

@media (max-width: 768px) {
  .product-grid { grid-template-columns: 1fr; max-width: 400px; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--paper-2);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}

.testimonial-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.speech-bubble {
  background: var(--bubble-color, var(--yellow));
  border: 4px solid var(--ink);
  box-shadow: var(--shadow-comic);
  padding: 2rem 1.75rem 1.5rem;
  transform: rotate(var(--bubble-tilt, 0deg));
  position: relative;
  transition: transform 0.3s;
}

.speech-bubble:hover {
  transform: rotate(0deg) scale(1.02);
}

.speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 2.5rem;
  width: 0;
  height: 0;
  border: 12px solid transparent;
  border-top-color: var(--ink);
  border-bottom: 0;
  border-right: 0;
}

.speech-bubble::before {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 2.5rem;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top-color: var(--bubble-color, var(--yellow));
  border-bottom: 0;
  border-right: 0;
  z-index: 1;
}

.quote {
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.author-meta {
  font-size: 0.8rem;
  font-style: italic;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PURCHASE
   ============================================ */
.purchase {
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.purchase-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    var(--yellow),
    var(--yellow) 20px,
    transparent 20px,
    transparent 40px
  );
  opacity: 0.12;
  z-index: 0;
}

.purchase > * { position: relative; z-index: 1; }

.pricing-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.pricing-card {
  background: var(--paper);
  border: 4px solid var(--ink);
  box-shadow: var(--shadow-comic-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s;
}

.pricing-card:hover {
  transform: translateY(-8px);
}

.pricing-card-featured {
  border-color: var(--red);
  border-width: 5px;
  transform: scale(1.05);
  z-index: 5;
}

.pricing-card-featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-ribbon {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: white;
  font-family: var(--font-alt);
  font-size: 0.75rem;
  padding: 0.25rem 1.25rem;
  border: 3px solid var(--ink);
  letter-spacing: 1px;
  white-space: nowrap;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  letter-spacing: 2px;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 0px var(--green-light);
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px dashed rgba(0,0,0,0.15);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features iconify-icon {
  color: var(--green);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.btn-pricing {
  width: 100%;
  justify-content: center;
  background: var(--paper);
  color: var(--ink);
}

.btn-pricing-primary {
  background: var(--red);
  color: white;
}

.purchase-sound-effect {
  text-align: center;
  margin-top: 3rem;
}

.sound-text {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--green);
  -webkit-text-stroke: 3px var(--ink);
  letter-spacing: 4px;
  text-shadow: 5px 5px 0px var(--red-dark);
  display: inline-block;
  animation: blastOff 2.5s ease-in-out infinite;
}

@keyframes blastOff {
  0%, 100% { transform: scale(1) rotate(-2deg); }
  50% { transform: scale(1.1) rotate(2deg); }
}

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-card-featured { transform: scale(1); }
  .pricing-card-featured:hover { transform: translateY(-8px); }
  .sound-text { font-size: 2.5rem; }
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--paper-2);
  border-top: 4px solid var(--ink);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0px var(--ink);
  margin-bottom: 1.25rem;
  overflow: hidden;
  transition: transform 0.2s;
}

.faq-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px var(--ink);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--ink);
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--red-light);
}

.faq-caret {
  font-size: 1.5rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-caret {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 3rem 2rem 0;
  border-top: 4px solid var(--green);
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-brand .logo-mark {
  font-size: 2.5rem;
}

.footer-tagline {
  font-family: var(--font-alt);
  font-size: 0.9rem;
  color: var(--green);
  letter-spacing: 1px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-family: var(--font-alt);
  font-size: 0.85rem;
  color: var(--green);
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  color: var(--paper);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--red-light);
}

.footer-bottom {
  border-top: 2px dashed rgba(255,255,255,0.2);
  padding: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}

@media (max-width: 768px) {
  .footer-content { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}
