/* ===========================
   Hellhound Bakery — Styles
   =========================== */

/* --- Custom Properties --- */
:root {
  --void-indigo: #1A0A2E;
  --deep-black: #0D0514;
  --hellfire-red: #FF2D2D;
  --electric-cyan: #00F0FF;
  --vivid-magenta: #FF00FF;
  --ember-amber: #FFB300;
  --text-light: #F0E6FF;
  --text-heading: #FFFFFF;
  --text-muted: #8B7FA8;

  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Permanent Marker', cursive;

  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;
  --container-max: 1200px;
  --nav-height: 70px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--void-indigo);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M4 1 L4 18 L8.5 13.5 L13 20 L15.5 18.5 L11 12 L17 12 Z' fill='%23FF2D2D' stroke='%23000' stroke-width='1' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/svg%3E") 4 1, auto;
}

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

a {
  color: var(--electric-cyan);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: #0177b5;
}

/* --- Utility --- */
.text-hellfire {
  color: #FF2D2D;
}

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

.mobile-break {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  width: auto;
  height: auto;
  padding: 12px 24px;
  margin: 0;
  clip: auto;
  background: var(--hellfire-red);
  color: var(--text-heading);
  font-weight: 600;
  border-radius: 8px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  text-transform: uppercase;
}

.btn--primary {
  background: var(--hellfire-red);
  color: var(--text-heading);
  box-shadow: 0 0 20px rgba(255, 45, 45, 0.3);
}

.btn--primary:hover,
.btn--primary:focus {
  background: #0177b5 !important;
  color: var(--text-heading) !important;
  box-shadow: 0 0 30px rgba(1, 119, 181, 0.4) !important;
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(26, 10, 46, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__brand {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: var(--text-heading);
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
  text-transform: uppercase;
}

.nav__brand:hover {
  color: var(--electric-cyan);
}

.nav__menu {
  display: flex;
  gap: 32px;
}

.nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 4px 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #c7326a, var(--ember-amber));
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link:focus,
.nav__link.active {
  color: var(--electric-cyan) !important;
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle-bar {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-heading);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: visible;
}

.hero__embers,
.contact__embers {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(255, 45, 45, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 70%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(0, 240, 255, 0.08) 0%, transparent 50%),
    var(--deep-black);
  z-index: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 70px 24px 0;
}

.hero__mascot {
  display: block;
  width: 660px;
  max-width: 90vw;
  height: auto;
  margin: 0 auto -80px;
  position: relative;
  z-index: 0;
}

/* Flame wrapper */
.hero__flames {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.flame {
  position: absolute;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  animation: flicker 2s ease-in-out infinite;
}

.flame--1 {
  width: 60px;
  height: 90px;
  background: radial-gradient(ellipse at bottom, #FFB300 0%, #FF2D2D 50%, transparent 100%);
  top: -30px;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 1.8s;
}

.flame--2 {
  width: 80px;
  height: 120px;
  background: radial-gradient(ellipse at bottom, #FFB300 0%, #FF2D2D 40%, #FF00FF 80%, transparent 100%);
  top: -50px;
  left: 30%;
  animation-delay: 0.3s;
  animation-duration: 2.2s;
}

.flame--3 {
  width: 50px;
  height: 80px;
  background: radial-gradient(ellipse at bottom, #FFB300 0%, #FF2D2D 60%, transparent 100%);
  top: -20px;
  right: 10%;
  animation-delay: 0.6s;
  animation-duration: 1.6s;
}

.flame--4 {
  width: 70px;
  height: 110px;
  background: radial-gradient(ellipse at bottom, #FFB300 0%, #FF2D2D 45%, #FF00FF 85%, transparent 100%);
  top: -40px;
  right: 28%;
  animation-delay: 0.15s;
  animation-duration: 2s;
}

.flame--5 {
  width: 40px;
  height: 70px;
  background: radial-gradient(ellipse at bottom, #FFB300 0%, #FF2D2D 55%, transparent 100%);
  bottom: -10px;
  left: 28%;
  animation-delay: 0.5s;
  animation-duration: 1.5s;
}

.flame--6 {
  width: 45px;
  height: 75px;
  background: radial-gradient(ellipse at bottom, #FFB300 0%, #FF2D2D 50%, transparent 100%);
  bottom: -10px;
  right: 28%;
  animation-delay: 0.8s;
  animation-duration: 1.7s;
}

.flame--7 {
  width: 65px;
  height: 100px;
  background: radial-gradient(ellipse at bottom, #FFB300 0%, #FF2D2D 50%, transparent 100%);
  top: -35px;
  left: 20%;
  animation-delay: 0.1s;
  animation-duration: 1.9s;
}

.flame--8 {
  width: 55px;
  height: 85px;
  background: radial-gradient(ellipse at bottom, #FFB300 0%, #FF2D2D 45%, #FF00FF 85%, transparent 100%);
  top: -25px;
  right: 20%;
  animation-delay: 0.4s;
  animation-duration: 2.1s;
}

.flame--9 {
  width: 70px;
  height: 95px;
  background: radial-gradient(ellipse at bottom, #FFB300 0%, #FF2D2D 55%, transparent 100%);
  top: -40px;
  left: 45%;
  animation-delay: 0.2s;
  animation-duration: 1.7s;
}

.flame--10 {
  width: 50px;
  height: 80px;
  background: radial-gradient(ellipse at bottom, #FFB300 0%, #FF2D2D 50%, #FF00FF 90%, transparent 100%);
  top: -20px;
  left: 0%;
  animation-delay: 0.7s;
  animation-duration: 2s;
}

.flame--11 {
  width: 50px;
  height: 80px;
  background: radial-gradient(ellipse at bottom, #FFB300 0%, #FF2D2D 50%, transparent 100%);
  top: -20px;
  right: 0%;
  animation-delay: 0.35s;
  animation-duration: 1.8s;
}

.flame--12 {
  width: 45px;
  height: 65px;
  background: radial-gradient(ellipse at bottom, #FFB300 0%, #FF2D2D 55%, transparent 100%);
  bottom: -10px;
  left: 45%;
  animation-delay: 0.65s;
  animation-duration: 1.6s;
}

.flame--13 {
  width: 55px;
  height: 90px;
  background: radial-gradient(ellipse at bottom, #FFB300 0%, #FF2D2D 50%, transparent 100%);
  top: 20%;
  left: -20px;
  animation-delay: 0.25s;
  animation-duration: 2s;
}

.flame--14 {
  width: 55px;
  height: 90px;
  background: radial-gradient(ellipse at bottom, #FFB300 0%, #FF2D2D 50%, transparent 100%);
  top: 20%;
  right: -20px;
  animation-delay: 0.55s;
  animation-duration: 1.9s;
}

.flame--15 {
  width: 60px;
  height: 90px;
  background: radial-gradient(ellipse at bottom, #FFB300 0%, #FF2D2D 45%, #FF00FF 85%, transparent 100%);
  top: 40%;
  left: -10px;
  animation-delay: 0.45s;
  animation-duration: 1.7s;
}

.flame--16 {
  width: 60px;
  height: 90px;
  background: radial-gradient(ellipse at bottom, #FFB300 0%, #FF2D2D 45%, #FF00FF 85%, transparent 100%);
  top: 40%;
  right: -10px;
  animation-delay: 0.75s;
  animation-duration: 1.8s;
}

.flame--17 {
  width: 55px;
  height: 85px;
  background: radial-gradient(ellipse at bottom, #FFB300 0%, #FF2D2D 50%, transparent 100%);
  bottom: 5px;
  right: 10%;
  animation-delay: 0.4s;
  animation-duration: 1.9s;
}

.flame--18 {
  width: 55px;
  height: 85px;
  background: radial-gradient(ellipse at bottom, #FFB300 0%, #FF2D2D 50%, #FF00FF 90%, transparent 100%);
  bottom: 5px;
  left: 10%;
  animation-delay: 0.6s;
  animation-duration: 2s;
}

.flame--19 {
  width: 90px;
  height: 70px;
  background: radial-gradient(ellipse at center, #FFB300 0%, #FF2D2D 50%, transparent 100%);
  top: 40%;
  left: 10%;
  animation-delay: 0.1s;
  animation-duration: 2.1s;
}

.flame--20 {
  width: 100px;
  height: 70px;
  background: radial-gradient(ellipse at center, #FFB300 0%, #FF2D2D 45%, #FF00FF 85%, transparent 100%);
  top: 40%;
  left: 30%;
  animation-delay: 0.35s;
  animation-duration: 1.8s;
}

.flame--21 {
  width: 100px;
  height: 70px;
  background: radial-gradient(ellipse at center, #FFB300 0%, #FF2D2D 50%, transparent 100%);
  top: 40%;
  left: 50%;
  animation-delay: 0.55s;
  animation-duration: 2s;
}

.flame--22 {
  width: 90px;
  height: 70px;
  background: radial-gradient(ellipse at center, #FFB300 0%, #FF2D2D 45%, transparent 100%);
  top: 40%;
  right: 10%;
  animation-delay: 0.2s;
  animation-duration: 1.9s;
}

.flame--23 {
  width: 80px;
  height: 60px;
  background: radial-gradient(ellipse at center, #FFB300 0%, #FF2D2D 50%, #FF00FF 90%, transparent 100%);
  top: 45%;
  left: 0%;
  animation-delay: 0.7s;
  animation-duration: 1.7s;
}

.flame--24 {
  width: 80px;
  height: 60px;
  background: radial-gradient(ellipse at center, #FFB300 0%, #FF2D2D 50%, transparent 100%);
  top: 45%;
  right: 0%;
  animation-delay: 0.45s;
  animation-duration: 2.2s;
}

.flame--25 {
  width: 55px;
  height: 100px;
  background: radial-gradient(ellipse at bottom, #FFB300 0%, #FF2D2D 50%, transparent 100%);
  top: 5%;
  left: -15px;
  animation-delay: 0.3s;
  animation-duration: 2s;
}

.flame--26 {
  width: 55px;
  height: 100px;
  background: radial-gradient(ellipse at bottom, #FFB300 0%, #FF2D2D 50%, transparent 100%);
  top: 5%;
  right: -15px;
  animation-delay: 0.6s;
  animation-duration: 1.9s;
}

.flame--27 {
  width: 55px;
  height: 100px;
  background: radial-gradient(ellipse at bottom, #FFB300 0%, #FF2D2D 50%, transparent 100%);
  top: 5%;
  left: -60px;
  animation-delay: 0.15s;
  animation-duration: 1.8s;
}

.flame--28 {
  width: 55px;
  height: 100px;
  background: radial-gradient(ellipse at bottom, #FFB300 0%, #FF2D2D 50%, transparent 100%);
  top: 5%;
  right: -60px;
  animation-delay: 0.5s;
  animation-duration: 2.1s;
}
@keyframes flicker {
  0% {
    opacity: 0.4;
    transform: translateY(0) scaleY(1) scaleX(1);
  }
  25% {
    opacity: 0.8;
    transform: translateY(-12px) scaleY(1.15) scaleX(0.9);
  }
  50% {
    opacity: 0.5;
    transform: translateY(-6px) scaleY(0.95) scaleX(1.05);
  }
  75% {
    opacity: 0.9;
    transform: translateY(-18px) scaleY(1.2) scaleX(0.85);
  }
  100% {
    opacity: 0.4;
    transform: translateY(0) scaleY(1) scaleX(1);
  }
}

.hero__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 8rem);
  color: var(--text-heading);
  line-height: 0.95;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow:
    0 0 20px rgba(255, 179, 0, 0.6),
    0 0 40px rgba(255, 45, 45, 0.4),
    0 0 80px rgba(255, 45, 45, 0.2),
    0 0 120px rgba(255, 0, 255, 0.15);
  animation: title-glow 3s ease-in-out infinite;
}

@keyframes title-glow {
  0%, 100% {
    text-shadow:
      0 0 20px rgba(255, 179, 0, 0.6),
      0 0 40px rgba(255, 45, 45, 0.4),
      0 0 80px rgba(255, 45, 45, 0.2),
      0 0 120px rgba(255, 0, 255, 0.15);
  }
  50% {
    text-shadow:
      0 0 30px rgba(255, 179, 0, 0.8),
      0 0 60px rgba(255, 45, 45, 0.5),
      0 0 100px rgba(255, 45, 45, 0.3),
      0 0 150px rgba(255, 0, 255, 0.2);
  }
}

.hero__tagline {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  color: var(--ember-amber);
  margin-top: 16px;
  letter-spacing: 1px;
}

.hero__line {
  width: 120px;
  height: 3px;
  margin: 28px auto;
  background: linear-gradient(90deg, var(--electric-cyan), var(--vivid-magenta));
  border-radius: 2px;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 1; width: 120px; }
  50% { opacity: 0.6; width: 180px; }
}

.hero .btn {
  margin-top: 8px;
  margin-bottom: 60px;
  background: var(--hellfire-red);
  color: var(--text-heading);
  box-shadow: 0 0 20px rgba(255, 45, 45, 0.3);
}

.hero .btn:hover,
.hero .btn:focus {
  background: #0177b5 !important;
  color: var(--text-heading) !important;
  box-shadow: 0 0 30px rgba(1, 119, 181, 0.4) !important;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 2rem;
  color: var(--text-muted);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(12px); }
}

/* --- Section Headings --- */
.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--text-heading);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 32px;
}

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

/* --- About --- */
.about {
  padding: 120px 0;
  background: var(--deep-black);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__text p {
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: var(--text-light);
  opacity: 0.9;
}

.about__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  column-gap: 20px;
  row-gap: 0;
  max-width: 500px;
}

.about__bug {
  width: 176px;
  height: auto;
  position: relative;
}

.about__bug:first-of-type {
  grid-column: 1 / -1;
  justify-self: center;
}

.about__bug--second {
  margin-top: -20px;
  align-self: end;
  width: 194px;
}

.about__bug--third {
  margin-top: -20px;
  align-self: end;
}

.about__bug[data-animate] {
  transform: none;
  transition: opacity 6s ease;
}

.about__bug[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

.about__bug:first-of-type {
  margin-top: 0;
}

.about__bug {
  transition: filter var(--transition-base), transform var(--transition-base);
}

.about__bug:hover {
  filter: drop-shadow(0 0 20px rgba(255, 179, 0, 0.5)) drop-shadow(0 0 40px rgba(255, 45, 45, 0.3));
  transform: scale(1.03);
}

.about__icon-ring {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: conic-gradient(var(--electric-cyan), var(--vivid-magenta), var(--hellfire-red), var(--ember-amber), var(--electric-cyan));
  padding: 4px;
  animation: spin-ring 8s linear infinite;
}

.about__paw {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--deep-black);
  border-radius: 50%;
  font-size: 5rem;
}

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

/* --- Treats / Cards --- */
.treats {
  padding: 120px 0;
  background: var(--void-indigo);
  position: relative;
}

.treats__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 10, 30, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  backdrop-filter: blur(3px);
}

.treats__overlay-text {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 10vw, 7rem);
  color: var(--text-heading);
  letter-spacing: 0.08em;
  text-shadow: 0 0 40px rgba(255, 45, 45, 0.6), 0 0 80px rgba(255, 45, 45, 0.3);
}

.treats__tagline {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  color: var(--ember-amber);
  text-align: center;
  letter-spacing: 1px;
  margin-top: -16px;
  line-height: 1.2;
}

.treats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 240, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition-base);
  position: relative;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 240, 255, 0.35);
  box-shadow: 0 12px 40px rgba(0, 240, 255, 0.1);
}

.card__image {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, rgba(26, 10, 46, 0.8), rgba(13, 5, 20, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.card__icon {
  font-size: 4rem;
  filter: grayscale(0.2);
}

.card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card__badge--bestseller {
  background: var(--vivid-magenta);
  color: var(--text-heading);
}

.card__badge--new {
  background: var(--electric-cyan);
  color: var(--deep-black);
}

.card__body {
  padding: 20px 24px 24px;
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-heading);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}

.card__price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--ember-amber);
  letter-spacing: 1px;
}

/* --- Ingredients / Pillars --- */
.ingredients {
  padding: 120px 0;
  background: var(--deep-black);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
  text-align: center;
}

.pillar__icon-ring {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  background: conic-gradient(var(--electric-cyan), var(--vivid-magenta), var(--ember-amber), #FFD700, var(--hellfire-red), var(--electric-cyan));
  padding: 3px;
  animation: spin-ring 10s linear infinite;
}

.pillar__icon-ring > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--deep-black);
  border-radius: 50%;
  animation: spin-ring 10s linear infinite reverse;
}

.pillar__icon-ring--no-gradient {
  background: none;
  padding: 0;
  animation: none;
}

.pillar__icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: filter var(--transition-base), transform var(--transition-base);
}

.pillar__icon-img:hover {
  filter: drop-shadow(0 0 20px rgba(255, 179, 0, 0.5)) drop-shadow(0 0 40px rgba(255, 45, 45, 0.3));
  transform: scale(1.03);
}

.pillar__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-heading);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.pillar__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.ingredients__tagline {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  color: var(--ember-amber);
  text-align: center;
  letter-spacing: 1px;
  margin-top: -16px;
  line-height: 1.2;
}

.ingredients__cta {
  text-align: center;
  margin-top: 56px;
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  color: var(--ember-amber);
  letter-spacing: 1px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Inspiration --- */
.inspiration {
  padding: 100px 0;
  background: var(--deep-black);
  overflow: hidden;
}

.slider {
  margin-top: 0;
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

.slider__track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 24px 0;
  animation: slide 20s linear infinite;
}

.slider:hover .slider__track {
  animation-play-state: paused;
}

.slider__img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(0, 240, 255, 0.12);
  flex-shrink: 0;
  transition: filter var(--transition-base), transform var(--transition-base);
}

.slider__img:hover {
  border-color: rgba(0, 240, 255, 0.8);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.25), 0 0 40px rgba(0, 240, 255, 0.1);
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* --- Contact --- */
.contact {
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(255, 45, 45, 0.08) 0%, transparent 60%),
    var(--void-indigo);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
}

.contact__inner--centered {
  grid-template-columns: 1fr;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.contact__info p {
  font-size: 1.05rem;
  margin-bottom: 24px;
  color: var(--text-light);
  opacity: 0.9;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.contact__link {
  color: var(--electric-cyan);
  font-size: 1rem;
}

.contact__socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--electric-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--electric-cyan);
  transition: all var(--transition-base);
}

.social-icon:hover {
  background: var(--electric-cyan);
  color: var(--deep-black);
}

/* Form */
.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 10px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-base);
  outline: none;
}

.contact__form input:focus,
.contact__form textarea:focus {
  border-color: var(--electric-cyan);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.15);
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 16px;
}

.contact__form .btn {
  margin-top: 8px;
}

.contact__success {
  display: none;
  text-align: center;
  margin-top: 16px;
  color: var(--electric-cyan);
  font-weight: 500;
}

.contact__success.show {
  display: block;
}

/* --- Footer --- */
.footer {
  padding: 24px 0;
  background: var(--deep-black);
  border-top: 2px solid;
  border-image: linear-gradient(90deg, var(--electric-cyan), var(--vivid-magenta)) 1;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.footer__brand {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-heading);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer__brand:hover {
  color: var(--electric-cyan);
}

.footer__email {
  font-size: 0.9rem;
  color: var(--ember-amber);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer__email:hover {
  color: var(--electric-cyan);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
  flex-wrap: wrap;
  gap: 4px;
}

.footer p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- Scroll Animations --- */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for cards and pillars */
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

/* --- Responsive --- */

/* Tablet */
@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(13, 5, 20, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }

  .nav__menu.open {
    max-height: 300px;
    padding: 24px 0;
    gap: 20px;
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
  }

  .nav__toggle {
    display: flex;
  }

  .nav__toggle.active .nav__toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav__toggle.active .nav__toggle-bar:nth-child(2) {
    opacity: 0;
  }
  .nav__toggle.active .nav__toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero__content {
    padding: 60px 16px 0;
  }

  .hero__mascot {
    width: 80vw;
    max-width: 500px;
  }

  .hero__title {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .hero__tagline {
    font-size: clamp(0.95rem, 2.5vw, 1.4rem);
  }

  .hero .btn {
    margin-bottom: 40px;
    padding: 12px 28px;
    font-size: 0.95rem;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .about__visual {
    order: -1;
    max-width: 340px;
    margin: 0 auto;
  }

  .about__icon-ring {
    width: 180px;
    height: 180px;
  }

  .pillars {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .footer__inner {
    flex-direction: column;
    gap: 12px;
    text-align: left;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 4px;
  }

  .about__visual {
    max-width: 340px;
    margin: 0 auto;
  }

  .slider__img {
    width: 220px;
    height: 220px;
  }

  .treats__overlay-text {
    font-size: clamp(2.5rem, 12vw, 5rem);
  }

  .flame {
    filter: blur(10px);
  }
}

/* Large phones */
@media (max-width: 480px) {
  .hero__content {
    padding: 50px 12px 0;
  }

  .hero__mascot {
    width: 100vw;
    max-width: 480px;
    margin-bottom: -40px;
  }

  .hero__tagline {
    font-size: clamp(1.1rem, 4vw, 1.4rem);
  }

  .hero__title {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .hero__tagline {
    font-size: clamp(0.95rem, 3.5vw, 1.2rem);
  }

  .hero__line {
    width: 80px;
    margin: 20px auto;
  }

  .hero .btn {
    margin-bottom: 30px;
    padding: 10px 24px;
    font-size: 0.9rem;
  }

  .section-heading {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .about, .treats, .ingredients, .contact {
    padding: 80px 0;
  }

  .about__inner {
    display: flex !important;
    flex-direction: column !important;
  }

  .about__text {
    order: 1 !important;
  }

  .about__visual {
    order: 2 !important;
    max-width: 320px;
    margin: 0 auto;
  }

  .about__bug,
  .about__bug--second,
  .about__bug--third {
    width: 140px !important;
  }

  .about__bug--second {
    width: 147px !important;
  }

  .about__visual {
    gap: 16px;
  }

  .mobile-break {
    display: inline;
  }

  .card__body {
    padding: 16px 18px 20px;
  }

  .pillar__icon-ring {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  .contact__form input,
  .contact__form textarea {
    padding: 12px 14px;
    font-size: 0.95rem;
  }

  .btn {
    padding: 12px 28px;
    font-size: 0.95rem;
  }

  .flame {
    filter: blur(8px);
    transform: scale(0.75);
  }
}

/* Small phones (iPhone SE, Galaxy S series) */
@media (max-width: 375px) {
  .hero__content {
    padding: 40px 10px 0;
  }

  .hero__mascot {
    width: 90vw;
    max-width: 300px;
    margin-bottom: -40px;
  }

  .hero__title {
    font-size: clamp(2rem, 14vw, 3rem);
    letter-spacing: 2px;
  }

  .hero__tagline {
    font-size: 0.85rem;
    margin-top: 10px;
  }

  .hero__line {
    width: 60px;
    margin: 16px auto;
  }

  .hero .btn {
    margin-bottom: 24px;
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .about, .treats, .ingredients, .contact {
    padding: 60px 0;
  }

  .about__icon-ring {
    width: 140px;
    height: 140px;
  }

  .nav__brand {
    font-size: 1.3rem;
  }

  .flame {
    filter: blur(6px);
    transform: scale(0.6);
  }
}
