/* ==========================================================================
   CUSTOM FONTS (@font-face)
   ========================================================================== */
@font-face {
  font-family: 'SuperMellow';
  src: url('assets/Fonts/SuperMellowRegular-e90Vg.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SofiaSansCondensed';
  src: url('assets/Fonts/SofiaSansCondensed-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SofiaSansCondensed';
  src: url('assets/Fonts/SofiaSansCondensed-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   DESIGN TOKENS & CSS VARIABLES (LIGHT DESIGN)
   ========================================================================== */
:root {
  /* Color Palette - Premium Light Theme */
  --color-bg: #A61008;
  --color-surface: #fff4eb;
  --color-surface-hover: #f1f5f9;
  --color-border: #e2e8f0;
  --color-border-subtle: #cbd5e1;

  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-primary-light: #eff6ff;
  --color-primary-glow: rgba(37, 99, 235, 0.15);

  --color-secondary: #0f172a;
  --color-secondary-hover: #1e293b;

  --color-text-main: #0f172a;
  --color-text-muted: #64748b;
  --color-text-light: #94a3b8;

  /* Typography */
  --font-heading: 'SuperMellow', 'SofiaSansCondensed', sans-serif;
  --font-body: 'SofiaSansCondensed', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.04);

  /* Radius & Transitions */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul {
  list-style: none;
}

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

/* ==========================================================================
   LAYOUT CONTAINERS
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
  background-color: var(--color-surface);
  color: var(--color-text-main);
  border-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--color-surface-hover);
  border-color: var(--color-border-subtle);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

/* Badge Pill */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(37, 99, 235, 0.15);
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-primary);
  border-radius: 50%;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  height: 76px;
  display: flex;
  align-items: center;
}

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

.logo-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-secondary);
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--color-primary), #3b82f6);
  border-radius: var(--radius-sm);
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-main);
  transition: all var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 4rem 0 5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  background: radial-gradient(ellipse 85% 85% at 50% 45%,
      #ff682b 0%,
      #ee3d12 35%,
      #c9180c 58%,
      #a61008 82%,
      #6b0501 100%);
}

.hero-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  position: relative;
}

.hero-graphic-wrap {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.hero-image {
  position: relative;
  z-index: 2;
  width: 100%;
  max-height: 540px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.3));
}

/* Unterzeile im Hero-Banner in SuperMellow Schrift - rechtsbündig platziert */
.hero-subline {
  position: absolute;
  bottom: 6%;
  left: 3%;
  font-family: 'SuperMellow', var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0;
  line-height: 1.15;
  text-align: right;
  text-transform: uppercase;
  z-index: 5;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

/* Scroll Down Chevron Button (#fff4eb) */
.scroll-down-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff4eb;
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: transform var(--transition-normal), opacity var(--transition-fast);
  animation: heroBounce 2.2s infinite;
}

.scroll-down-btn:hover {
  animation-play-state: paused;
  transform: translateY(6px) scale(1.2);
}

@keyframes heroBounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(10px);
  }

  60% {
    transform: translateY(5px);
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-secondary);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 540px;
}

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

.hero-proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.proof-stars {
  color: #f59e0b;
  letter-spacing: 2px;
}

/* Hero Visual Box / Card */
.hero-visual {
  display: flex;
  justify-content: center;
}

.visual-card {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: var(--color-surface);
  border: 2px dashed var(--color-border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  transition: transform var(--transition-normal);
}

.visual-card:hover {
  transform: translateY(-4px);
}

.visual-placeholder-inner {
  text-align: center;
  color: var(--color-text-muted);
}

.placeholder-icon {
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.visual-placeholder-inner p {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text-main);
  margin-bottom: 0.25rem;
}

.visual-placeholder-inner small {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* ==========================================================================
   STORY & TRADITION SECTION
   ========================================================================== */
.story-section {
  padding: 6rem 0 3.5rem 0;
  background-color: var(--color-surface);
  color: #1c1917;
  position: relative;
}

.story-container {
  display: flex;
  flex-direction: column;
}

.story-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3.5rem auto;
}

.story-section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  color: #A61008;
  line-height: 1.08;
  margin-bottom: 0.85rem;
  letter-spacing: 0;
}

.story-section-subline {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1.5rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.story-intro-text {
  font-size: 1.25rem;
  color: #44403c;
  line-height: 1.65;
  font-weight: 400;
}

.story-intro-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.story-special-note {
  background: rgba(166, 16, 8, 0.04);
  border: 1px solid rgba(166, 16, 8, 0.1);
  border-left: 4px solid #A61008;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.75rem;
  text-align: left;
}

.story-special-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #A61008;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.story-special-note p {
  font-size: 1.15rem;
  color: #292524;
  line-height: 1.55;
  margin: 0;
}

.story-special-note strong {
  color: #1c1917;
  font-weight: 700;
}

/* Centered Card Wrap */
.story-card-center-wrap {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

/* Feature Grid: 2 Cards (fallback/reusable) */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.story-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.25rem;
  box-shadow: 0 10px 30px rgba(166, 16, 8, 0.05);
  border: 1px solid rgba(166, 16, 8, 0.08);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(166, 16, 8, 0.12);
}

.story-card-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #A61008;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.story-card-title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: #1c1917;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.story-card-desc {
  font-size: 1.125rem;
  color: #44403c;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

/* Feature List in Cards (Variante A) */
.story-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: auto;
  list-style: none;
  padding: 0;
}

.story-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(166, 16, 8, 0.035);
  border: 1px solid rgba(166, 16, 8, 0.08);
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast);
}

.story-feature-item:hover {
  background: rgba(166, 16, 8, 0.07);
  border-color: rgba(166, 16, 8, 0.22);
  transform: translateX(4px);
}

.story-feature-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #A61008;
  border: 1px solid rgba(166, 16, 8, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(166, 16, 8, 0.08);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.story-feature-icon svg {
  width: 20px;
  height: 20px;
}

.story-feature-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.story-feature-content strong {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #1c1917;
  line-height: 1.25;
}

.story-feature-content span {
  font-size: 0.95rem;
  color: #57534e;
  line-height: 1.35;
}

/* Quote Callout */
.story-quote-box {
  background: rgba(166, 16, 8, 0.04);
  border: 1px solid rgba(166, 16, 8, 0.1);
  border-left: 4px solid #A61008;
  border-radius: var(--radius-md);
  padding: 2.25rem 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 4px 16px rgba(166, 16, 8, 0.03);
  position: relative;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}

.story-quote-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A61008;
}

.story-quote-text {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 700;
  color: #A61008;
  line-height: 1.35;
  margin: 0;
}

/* ==========================================================================
   PRODUCT OVERVIEW SECTION (2 COLUMNS)
   ========================================================================== */
.overview-section {
  padding: 3.5rem 0 6rem 0;
  background-color: var(--color-surface);
  color: #1c1917;
}

.product-overview-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}

.product-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-jar-img {
  max-width: 100%;
  max-height: 480px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.12));
  transition: transform var(--transition-normal);
}

.product-jar-img:hover {
  transform: scale(1.03);
}

.product-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 3.85rem;
  font-weight: 800;
  color: #A61008;
  letter-spacing: 0;
  line-height: 1.1;
}

.product-subtitle-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-subtitle-text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.55rem;
  color: #1c1917;
  letter-spacing: 0;
  line-height: 1.2;
}

.vegan-badge-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.product-price-tag {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: #A61008;
  letter-spacing: 0;
}

.product-description {
  font-size: 1.05rem;
  color: #44403c;
  line-height: 1.6;
}

.product-order-info {
  font-size: 0.95rem;
  color: #292524;
  line-height: 1.5;
}

.product-order-info strong {
  display: block;
  font-size: 1rem;
  color: #1c1917;
  margin-bottom: 0.2rem;
}

.product-contact-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.contact-pill-btn {
  background-color: #A61008;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: 0;
  padding: 0.75rem 2.2rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 12px rgba(166, 16, 8, 0.25);
}

.contact-pill-btn:hover {
  background-color: #8c0d06;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(166, 16, 8, 0.35);
}

.social-icon-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #A61008;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 12px rgba(166, 16, 8, 0.25);
}

.social-icon-btn:hover {
  background-color: #8c0d06;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(166, 16, 8, 0.35);
}

/* ==========================================================================
   FOOTER SECTION (RED BANNER STYLE)
   ========================================================================== */
.footer-section {
  position: relative;
  background-color: #A61008;
  color: #ffffff;
  padding: 4.5rem 0 2.5rem 0;
  overflow: visible;
  z-index: 5;
}

/* Starburst Hot Badge exakt auf der Trennlinie zwischen den Sektionen */
.footer-hot-badge {
  position: absolute;
  top: -85px;
  right: 7%;
  width: 175px;
  height: auto;
  z-index: 20;
  transform: rotate(5deg);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
  transition: transform var(--transition-normal);
}

.footer-hot-badge:hover {
  transform: rotate(0deg) scale(1.08) translateY(-4px);
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  position: relative;
  z-index: 2;
}

.footer-main-heading {
  font-family: 'SuperMellow', var(--font-heading);
  font-size: clamp(2rem, 5.5vw, 4.8rem);
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0;
  line-height: 1.05;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.footer-middle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 4rem;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.footer-contact-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-phone {
  font-family: 'SuperMellow', var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0;
  transition: opacity var(--transition-fast);
}

.footer-phone:hover {
  opacity: 0.85;
}

.footer-social-link {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.footer-social-link svg {
  width: 36px;
  height: 36px;
}

.footer-social-link:hover {
  transform: scale(1.15);
  opacity: 0.85;
}

.footer-legal-line {
  border-top: none;
  padding: 0.25rem 4rem 0 4rem;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  text-align: left;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 992px) {
  .product-overview-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .product-subtitle-wrapper {
    justify-content: center;
  }

  .product-contact-actions {
    justify-content: center;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-proof {
    justify-content: center;
  }

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

  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-quote-box {
    flex-direction: column;
    text-align: center;
    padding: 2.25rem 2rem;
    gap: 1.25rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background-color: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
  }

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

  .story-section {
    padding: 4rem 0 2rem 0;
  }

  .story-header {
    margin-bottom: 2.25rem;
  }

  .story-section-title {
    font-size: clamp(2rem, 7vw, 2.6rem);
    line-height: 1.15;
  }

  .story-section-subline {
    font-size: 1.15rem;
    line-height: 1.35;
    margin-bottom: 1.25rem;
  }

  .story-intro-text {
    font-size: 1.15rem;
  }

  .story-card {
    padding: 2rem 1.5rem;
  }

  .story-card-center-wrap {
    margin-bottom: 2.5rem;
  }

  .story-special-note {
    padding: 1.1rem 1.25rem;
  }

  .story-quote-box {
    padding: 1.75rem 1.25rem;
  }

  .footer-main-heading {
    font-size: clamp(1.2rem, 6vw, 3.25rem);
  }

  .hero-subline {
    font-size: 0.95rem;
    line-height: 1.15;
    bottom: 5%;
    left: 10%;
  }

  .footer-hot-badge {
    width: 95px;
    top: -45px;
    right: 5%;
  }

  .footer-middle-row {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    padding: 0;
  }

  .footer-contact-wrap {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-legal-line {
    text-align: center;
    font-size: 1rem;
    padding: 0;
  }
}

@media (max-width: 480px) {
  .hero-subline {
    font-size: 1rem;
    bottom: 4%;
    left: 8%;
  }

  .story-section {
    padding: 3rem 0 1.5rem 0;
  }

  .story-header {
    margin-bottom: 1.75rem;
  }

  .story-section-title {
    font-size: clamp(1.75rem, 7.5vw, 2.15rem);
  }

  .story-section-subline {
    font-size: 1.05rem;
    line-height: 1.3;
  }

  .story-intro-text {
    font-size: 1.05rem;
    line-height: 1.55;
  }

  .story-special-note {
    padding: 1rem 1.1rem;
  }

  .story-special-note p {
    font-size: 1.05rem;
    line-height: 1.5;
  }

  .story-card {
    padding: 1.5rem 1.15rem;
  }

  .story-card-title {
    font-size: 1.75rem;
  }

  .story-card-desc {
    font-size: 1.05rem;
    line-height: 1.5;
  }

  .story-feature-item {
    padding: 0.75rem 0.85rem;
    gap: 0.75rem;
  }

  .story-feature-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }

  .story-feature-icon svg {
    width: 17px;
    height: 17px;
  }

  .story-quote-box {
    padding: 1.4rem 1.15rem;
    gap: 0.85rem;
  }

  .story-quote-text {
    font-size: 1.15rem;
    line-height: 1.4;
  }
}