/* ============================================
   Chicagoland Ice Cream Truck — Design System #ed2bdd #0198ea
   ============================================ */

:root {
  --ice-strawberry: #ed2bdd;
  --ice-strawberry-dark: #c918bf;
  --ice-cream: #FFF8F0;
  --ice-sky: #0198ea;
  --ice-sky-light: #e6f6fe;
  --ice-mint: #98E2C6;
  --ice-mint-light: #E8FAF2;
  --ice-yellow: #FFE066;
  --ice-chocolate: #6B4226;
  --ice-navy: #1E2A3A;
  --ice-charcoal: #2D3748;
  --ice-white: #FFFFFF;
  --ice-shadow: 0 8px 32px rgba(30, 42, 58, 0.12);
  --ice-shadow-lg: 0 16px 48px rgba(30, 42, 58, 0.18);
  --ice-shadow-hover: 0 12px 40px rgba(30, 42, 58, 0.16);
  --ice-radius: 1.25rem;
  --ice-radius-sm: 0.75rem;
  --ice-radius-lg: 2rem;
  --ice-font-display: 'Fredoka', cursive, sans-serif;
  --ice-font-body: 'Poppins', sans-serif;
  --ice-header-height: 80px;
  --ice-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--ice-header-height);
}

body {
  font-family: var(--ice-font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ice-charcoal);
  background-color: var(--ice-cream);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--ice-strawberry-dark);
  text-decoration: none;
  transition: color var(--ice-transition);
}

a:hover {
  color: var(--ice-strawberry);
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--ice-font-display);
  color: var(--ice-navy);
  line-height: 1.2;
}

/* Skip Link */
.ice-skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--ice-navy);
  color: var(--ice-white);
  border-radius: var(--ice-radius-sm);
  font-weight: 600;
}

.ice-skip-link:focus {
  top: 1rem;
}

/* Focus Styles */
:focus-visible {
  outline: 3px solid var(--ice-sky);
  outline-offset: 3px;
}

/* Container */
.ice-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.ice-container--narrow {
  max-width: 800px;
}

/* Buttons */
.ice-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.75rem 1.5rem;
  font-family: var(--ice-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--ice-transition), box-shadow var(--ice-transition), background var(--ice-transition), color var(--ice-transition);
  text-decoration: none;
  white-space: nowrap;
}

.ice-btn:hover {
  transform: translateY(-2px);
}

.ice-btn--primary {
  background: linear-gradient(135deg, var(--ice-strawberry), var(--ice-strawberry-dark));
  color: var(--ice-white);
  box-shadow: 0 4px 16px rgba(237, 43, 221, 0.4);
}

.ice-btn--primary:hover {
  color: var(--ice-white);
  box-shadow: 0 8px 24px rgba(237, 43, 221, 0.5);
}

.ice-btn--outline {
  background: transparent;
  color: var(--ice-navy);
  border-color: var(--ice-navy);
}

.ice-btn--outline:hover {
  background: var(--ice-navy);
  color: var(--ice-white);
}

.ice-btn--white {
  background: var(--ice-white);
  color: var(--ice-strawberry-dark);
  box-shadow: var(--ice-shadow);
}

.ice-btn--white:hover {
  color: var(--ice-strawberry);
  box-shadow: var(--ice-shadow-hover);
}

.ice-btn--outline-white {
  background: transparent;
  color: var(--ice-white);
  border-color: var(--ice-white);
}

.ice-btn--outline-white:hover {
  background: var(--ice-white);
  color: var(--ice-strawberry-dark);
}

.ice-btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.ice-btn--full {
  width: 100%;
}

/* Cards */
.ice-card {
  background: var(--ice-white);
  border-radius: var(--ice-radius);
  box-shadow: var(--ice-shadow);
  transition: transform var(--ice-transition), box-shadow var(--ice-transition);
}

.ice-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ice-shadow-hover);
}

/* Section Base */
.ice-section {
  padding: 5rem 0;
  position: relative;
}

.ice-section--cream {
  background: var(--ice-cream);
}

.ice-section--sky {
  background: var(--ice-sky-light);
}

.ice-section--mint {
  background: var(--ice-mint-light);
}

.ice-section--white {
  background: var(--ice-white);
}

.ice-section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.ice-section__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 0.75rem;
}

.ice-section__subtitle,
.ice-section__tagline {
  font-size: 1.1rem;
  color: var(--ice-charcoal);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.85;
}

.ice-section__tagline {
  font-family: var(--ice-font-display);
  font-size: 1.25rem;
  color: var(--ice-strawberry-dark);
}

/* Wavy Dividers */
.ice-wave {
  line-height: 0;
  overflow: hidden;
}

.ice-wave svg {
  width: 100%;
  height: 60px;
  display: block;
}

.ice-wave--to-sky svg path { fill: var(--ice-sky-light); }
.ice-wave--to-cream svg path { fill: var(--ice-cream); }
.ice-wave--to-mint svg path { fill: var(--ice-mint-light); }
.ice-wave--to-white svg path { fill: var(--ice-white); }

/* Scroll Reveal */
.ice-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.ice-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.ice-reveal--delay { transition-delay: 0.15s; }
.ice-reveal--delay-2 { transition-delay: 0.3s; }
.ice-reveal--delay-3 { transition-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ice-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .ice-hero__float,
  .ice-hero__blob,
  .sweet-sprinkle {
    animation: none !important;
  }
}

/* ============================================
   Header
   ============================================ */
.ice-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--ice-header-height);
  background: rgba(255, 248, 240, 0.95);
  backdrop-filter: blur(12px);
  transition: box-shadow var(--ice-transition), background var(--ice-transition);
}

.ice-header--scrolled {
  box-shadow: 0 4px 24px rgba(30, 42, 58, 0.12);
  background: rgba(255, 255, 255, 0.98);
}

.ice-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.ice-header__logo img {
  height: 50px;
  width: auto;
}

.ice-nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.ice-nav-toggle__bar {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--ice-navy);
  border-radius: 2px;
  transition: transform var(--ice-transition), opacity var(--ice-transition);
  margin: 0 auto;
}

.ice-header.ice-nav--open .ice-nav-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.ice-header.ice-nav--open .ice-nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.ice-header.ice-nav--open .ice-nav-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.ice-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.ice-nav__list {
  display: none;
  gap: 0.25rem;
}

.ice-nav__link {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--ice-navy);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--ice-radius-sm);
  transition: background var(--ice-transition), color var(--ice-transition);
}

.ice-nav__link:hover {
  background: var(--ice-sky-light);
  color: var(--ice-strawberry-dark);
}

.ice-nav__cta {
  display: none;
}

body.ice-menu-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .ice-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    flex-direction: column;
    align-items: stretch;
    padding: calc(var(--ice-header-height) + 1.5rem) 1.5rem 2rem;
    background: var(--ice-white);
    box-shadow: -8px 0 32px rgba(30, 42, 58, 0.15);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0;
  }

  .ice-header.ice-nav--open .ice-nav {
    transform: translateX(0);
  }

  .ice-nav__list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
  }

  .ice-nav__link {
    padding: 0.875rem 1rem;
    font-size: 1rem;
  }

  .ice-nav__cta {
    display: flex;
    margin-top: auto;
  }
}

@media (min-width: 768px) {
  .ice-nav-toggle {
    display: none;
  }

  .ice-nav__list {
    display: flex;
  }

  .ice-nav__cta {
    display: inline-flex;
  }
}

@media (min-width: 1024px) {
  .ice-nav__link {
    font-size: 0.875rem;
    padding: 0.5rem 0.6rem;
  }
}

/* ============================================
   Hero
   ============================================ */
.ice-hero {
  position: relative;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--ice-header-height);
  overflow: hidden;
}

.ice-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ice-hero__bg img {
  width: 100%;
  min-width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ice-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 42, 58, 0.55) 0%, rgba(237, 43, 221, 0.25) 100%);
}

.ice-hero__blobs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.ice-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: iceBlobDrift 8s ease-in-out infinite alternate;
}

.ice-hero__blob--pink {
  width: 300px;
  height: 300px;
  background: var(--ice-strawberry);
  top: 10%;
  right: 5%;
}

.ice-hero__blob--sky {
  width: 250px;
  height: 250px;
  background: var(--ice-sky);
  bottom: 20%;
  right: 25%;
  animation-delay: -3s;
}

.ice-hero__blob--mint {
  width: 200px;
  height: 200px;
  background: var(--ice-mint);
  top: 40%;
  right: 10%;
  animation-delay: -5s;
}

@keyframes iceBlobDrift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-20px, 20px) scale(1.1); }
}

.ice-hero__floats {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.ice-hero__float {
  position: absolute;
  font-size: 2.5rem;
  animation: iceFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.ice-hero__float--cone {
  top: 20%;
  right: 15%;
  animation-delay: 0s;
}

.ice-hero__float--pop {
  top: 45%;
  right: 8%;
  font-size: 2rem;
  animation-delay: -1s;
}

.ice-hero__float--scoop {
  bottom: 25%;
  right: 20%;
  animation-delay: -2s;
}

.ice-hero__float--sprinkle {
  top: 30%;
  right: 30%;
  font-size: 1.5rem;
  animation-delay: -0.5s;
}

@keyframes iceFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* Sprinkles */
.sweet-sprinkles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.sweet-sprinkle {
  position: absolute;
  width: 8px;
  height: 3px;
  border-radius: 2px;
  opacity: 0.7;
  animation: sweetSprinkleFall linear infinite;
}

@keyframes sweetSprinkleFall {
  0% {
    transform: translateY(-10px) rotate(0deg);
    opacity: 0;
  }
  10% { opacity: 0.8; }
  90% { opacity: 0.8; }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

.ice-hero__content {
  position: relative;
  z-index: 3;
  padding: 3rem 1.25rem;
  width: 100%;
  max-width: none;
  margin: 0;
  display: flex;
  justify-content: flex-end;
}

.ice-hero__card {
  width: 100%;
  max-width: 100%;
  padding: 2rem 1.5rem;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(16px);
  border-radius: var(--ice-radius-lg);
  box-shadow: var(--ice-shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.ice-hero__eyebrow {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ice-strawberry-dark);
  background: rgba(237, 43, 221, 0.15);
  border-radius: 50px;
}

.ice-hero__title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  margin-bottom: 0.85rem;
  color: var(--ice-navy);
}

.ice-hero__text {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: var(--ice-charcoal);
}

.ice-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.ice-hero__actions .ice-btn {
  padding: 0.7rem 1.35rem;
  font-size: 0.875rem;
}

.ice-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.ice-hero__badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ice-navy);
}

.ice-hero__badge svg {
  width: 16px;
  height: 16px;
  color: var(--ice-mint);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .ice-hero__content {
    padding-right: 0.75rem;
    padding-left: 2rem;
  }

  .ice-hero__card {
    max-width: 480px;
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .ice-hero__floats {
    opacity: 0.4;
  }

  .ice-hero__content {
    justify-content: center;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .ice-hero__card {
    padding: 1.75rem 1.25rem;
  }

  .ice-hero__actions {
    flex-direction: column;
  }

  .ice-hero__actions .ice-btn {
    width: 100%;
  }
}

/* ============================================
   About
   ============================================ */
.ice-about__grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
  align-items: center;
}

.ice-about__copy p {
  margin-bottom: 1rem;
}

.ice-about__image {
  border-radius: var(--ice-radius-lg);
  overflow: hidden;
  box-shadow: var(--ice-shadow-lg);
}

.ice-about__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ice-about__image:hover img {
  transform: scale(1.03);
}

.ice-feature-grid {
  display: grid;
  gap: 1.5rem;
}

.ice-feature-card {
  padding: 0;
  overflow: hidden;
  text-align: center;
}

.ice-feature-card__thumb {
  overflow: hidden;
  aspect-ratio: 2/1;
}

.ice-feature-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ice-feature-card:hover .ice-feature-card__thumb img {
  transform: scale(1.05);
}

.ice-feature-card__icon,
.ice-feature-card h3,
.ice-feature-card p {
  padding-left: 2rem;
  padding-right: 2rem;
}

.ice-feature-card__icon {
  margin-top: 1.25rem;
}

.ice-feature-card p {
  padding-bottom: 2rem;
}

.ice-feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--ice-sky-light), var(--ice-mint-light));
  border-radius: 50%;
  color: var(--ice-strawberry-dark);
}

.ice-feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.ice-feature-card p {
  font-size: 0.95rem;
  color: var(--ice-charcoal);
  opacity: 0.85;
}

/* Ice Cream Showcase Strip */
.ice-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.ice-showcase__item {
  margin: 0;
  border-radius: var(--ice-radius);
  overflow: hidden;
  box-shadow: var(--ice-shadow);
  aspect-ratio: 4/3;
}

.ice-showcase__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ice-showcase__item:hover img {
  transform: scale(1.06);
}

@media (min-width: 768px) {
  .ice-showcase {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 768px) {
  .ice-about__grid {
    grid-template-columns: 1fr 1fr;
  }

  .ice-feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   Packages
   ============================================ */
.ice-package-grid {
  display: grid;
  gap: 2rem;
}

.ice-package-card {
  background: var(--ice-white);
  border-radius: var(--ice-radius);
  box-shadow: var(--ice-shadow);
  overflow: hidden;
  transition: transform var(--ice-transition), box-shadow var(--ice-transition);
  border-top: 4px solid var(--ice-strawberry);
}

.ice-package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ice-shadow-hover);
}

.ice-package-card--truck { border-top-color: var(--ice-strawberry); }
.ice-package-card--cart { border-top-color: var(--ice-sky); }
.ice-package-card--cooler { border-top-color: var(--ice-mint); }
.ice-package-card--sundae { border-top-color: var(--ice-yellow); }

.ice-package-card__icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  z-index: 2;
  background: var(--ice-white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--ice-shadow);
}

.ice-package-card {
  position: relative;
}

.ice-package-card__image {
  overflow: hidden;
}

.ice-package-card__image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ice-package-card:hover .ice-package-card__image img {
  transform: scale(1.05);
}

.ice-package-card__body {
  padding: 1.75rem;
}

.ice-package-card__body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.ice-package-card__body > p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  opacity: 0.85;
}

.ice-package-card__features {
  margin-bottom: 1.5rem;
}

.ice-package-card__features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.ice-package-card__features li::before {
  content: '🍦';
  position: absolute;
  left: 0;
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .ice-package-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ice-package-card--truck,
  .ice-package-card--cooler {
    margin-top: 0;
  }

  .ice-package-card--cart {
    margin-top: 2rem;
  }

  .ice-package-card--sundae {
    margin-top: -1rem;
  }
}

/* ============================================
   Events
   ============================================ */
.ice-event-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.ice-event-card {
  padding: 0;
  overflow: hidden;
}

.ice-event-card__image {
  overflow: hidden;
  aspect-ratio: 16/9;
}

.ice-event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ice-event-card:hover .ice-event-card__image img {
  transform: scale(1.06);
}

.ice-event-card h3 {
  padding: 1rem 1.25rem 0.25rem;
}

.ice-event-card p {
  padding: 0 1.25rem 1.25rem;
}

.ice-event-card__emoji {
  display: none;
}

/* ============================================
   Benefits
   ============================================ */
.ice-benefit-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.ice-benefit-card {
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.ice-benefit-card__num {
  font-family: var(--ice-font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--ice-sky);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.ice-benefit-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.ice-benefit-card p {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* ============================================
   Timeline
   ============================================ */
.ice-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.ice-timeline__step {
  text-align: center;
  padding: 1.5rem;
}

.ice-timeline__circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--ice-strawberry), var(--ice-yellow));
  color: var(--ice-white);
  font-family: var(--ice-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(237, 43, 221, 0.4);
}

.ice-timeline__step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.ice-timeline__step p {
  font-size: 0.9rem;
  opacity: 0.85;
  max-width: 280px;
  margin: 0 auto;
}

.ice-timeline__connector {
  width: 3px;
  height: 40px;
  background: linear-gradient(to bottom, var(--ice-strawberry), var(--ice-sky));
  margin: 0 auto;
  border-radius: 2px;
}

@media (min-width: 768px) {
  .ice-timeline {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 100%;
  }

  .ice-timeline__step {
    flex: 1;
    position: relative;
  }

  .ice-timeline__connector {
    width: 100%;
    height: 3px;
    flex: 0 0 40px;
    align-self: center;
    margin-top: 32px;
    background: linear-gradient(to right, var(--ice-strawberry), var(--ice-sky), var(--ice-mint));
  }
}

/* ============================================
   Treats
   ============================================ */
.ice-treat-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.ice-treat-card {
  overflow: hidden;
  padding: 0;
}

.ice-treat-card img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ice-treat-card:hover img {
  transform: scale(1.08);
}

.ice-treat-card h3 {
  padding: 1rem;
  font-size: 0.95rem;
  text-align: center;
}

.ice-treat-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  font-style: italic;
  opacity: 0.7;
}

/* ============================================
   Routes / Forms
   ============================================ */
.ice-routes__grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.ice-routes__visual img {
  width: 100%;
  border-radius: var(--ice-radius);
  box-shadow: var(--ice-shadow-lg);
  aspect-ratio: 5/4;
  object-fit: cover;
}

.ice-routes__visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.ice-routes__visual-grid img {
  aspect-ratio: 4/3;
  box-shadow: var(--ice-shadow);
}

.ice-routes__area {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: var(--ice-white);
  border-radius: var(--ice-radius-sm);
  border-left: 4px solid var(--ice-strawberry);
}

.ice-form {
  background: var(--ice-white);
  padding: 2rem;
  border-radius: var(--ice-radius);
  box-shadow: var(--ice-shadow);
}

.ice-form__row {
  display: grid;
  gap: 1rem;
}

.ice-form__group {
  margin-bottom: 1rem;
}

.ice-form__group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.4rem;
  color: var(--ice-navy);
}

.ice-form__group input,
.ice-form__group select,
.ice-form__group textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.75rem 1rem;
  font-family: var(--ice-font-body);
  font-size: 1rem;
  border: 2px solid #E2E8F0;
  border-radius: var(--ice-radius-sm);
  background: var(--ice-cream);
  transition: border-color var(--ice-transition), box-shadow var(--ice-transition);
}

.ice-form__group textarea {
  min-height: auto;
  resize: vertical;
}

.ice-form__group input:focus,
.ice-form__group select:focus,
.ice-form__group textarea:focus {
  outline: none;
  border-color: var(--ice-sky);
  box-shadow: 0 0 0 3px rgba(1, 152, 234, 0.3);
}

.ice-form__success {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--ice-mint-light);
  color: var(--ice-navy);
  border-radius: var(--ice-radius-sm);
  font-weight: 600;
  text-align: center;
  border: 2px solid var(--ice-mint);
}

@media (min-width: 768px) {
  .ice-routes__grid {
    grid-template-columns: 1fr 1fr;
  }

  .ice-routes-form {
    grid-column: 1 / -1;
  }

  .ice-form__row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .ice-routes__grid {
    grid-template-columns: 1fr 1fr 1.1fr;
  }

  .ice-routes-form {
    grid-column: auto;
  }
}

/* ============================================
   Gallery
   ============================================ */
.ice-gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.ice-gallery__item {
  position: relative;
  border-radius: var(--ice-radius);
  overflow: hidden;
  margin: 0;
  aspect-ratio: 4/3;
}

.ice-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ice-gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 42, 58, 0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--ice-transition);
}

.ice-gallery__item:hover img {
  transform: scale(1.08);
}

.ice-gallery__item:hover::after {
  opacity: 1;
}

.ice-gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  color: var(--ice-white);
  font-family: var(--ice-font-display);
  font-size: 1.1rem;
  font-weight: 600;
  z-index: 2;
  transform: translateY(100%);
  transition: transform var(--ice-transition);
}

.ice-gallery__item:hover .ice-gallery__caption {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .ice-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .ice-gallery__item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
  }
}

/* ============================================
   Reviews
   ============================================ */
.ice-review-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.ice-review-card {
  padding: 2rem;
}

.ice-review-card__stars {
  color: var(--ice-yellow);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.ice-review-card blockquote p {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.ice-review-card cite {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ice-strawberry-dark);
  font-style: normal;
}

/* ============================================
   Stats
   ============================================ */
.ice-stats {
  background: linear-gradient(135deg, var(--ice-strawberry) 0%, var(--ice-sky) 50%, var(--ice-mint) 100%);
  padding: 4rem 0;
}

.ice-stats__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}

.ice-stats__number {
  font-family: var(--ice-font-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--ice-white);
  line-height: 1;
}

.ice-stats__suffix {
  font-family: var(--ice-font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--ice-white);
}

.ice-stats__label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
  .ice-stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   CTA Banner
   ============================================ */
.ice-cta-banner {
  background: linear-gradient(135deg, var(--ice-strawberry) 0%, var(--ice-strawberry-dark) 40%, var(--ice-sky) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.ice-cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: rgba(255, 255, 255, 0.08);
  transform: rotate(-15deg);
  pointer-events: none;
}

.ice-cta-banner__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.ice-cta-banner h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--ice-white);
  margin-bottom: 1rem;
}

.ice-cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.ice-cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 480px) {
  .ice-cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }

  .ice-cta-banner__actions .ice-btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ============================================
   FAQ
   ============================================ */
.ice-faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ice-faq__item {
  background: var(--ice-white);
  border-radius: var(--ice-radius-sm);
  box-shadow: var(--ice-shadow);
  overflow: hidden;
}

.ice-faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 44px;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ice-font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ice-navy);
  text-align: left;
  transition: background var(--ice-transition);
}

.ice-faq__trigger:hover {
  background: var(--ice-cream);
}

.ice-faq__icon {
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform var(--ice-transition);
}

.ice-faq__item--open .ice-faq__icon {
  transform: rotate(180deg);
}

.ice-faq__panel {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.ice-faq__item--open .ice-faq__panel {
  padding: 0 1.5rem 1.25rem;
  max-height: 300px;
}

.ice-faq__panel p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.7;
}

/* ============================================
   Contact
   ============================================ */
.ice-contact__grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.ice-contact__info p {
  margin-bottom: 1.5rem;
}

.ice-contact__details {
  margin-bottom: 2rem;
}

.ice-contact__details li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.ice-contact__details svg {
  flex-shrink: 0;
  color: var(--ice-strawberry);
  margin-top: 2px;
}

.ice-contact__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (min-width: 768px) {
  .ice-contact__grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

/* ============================================
   Footer
   ============================================ */
.ice-footer {
  background: var(--ice-navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 0;
}

.ice-footer a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--ice-transition);
}

.ice-footer a:hover {
  color: var(--ice-strawberry);
}

.ice-footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  padding-bottom: 3rem;
}

.ice-footer__brand img {
  margin-bottom: 1rem;
  filter: brightness(1.1);
}

.ice-footer__brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.ice-footer__social {
  display: flex;
  gap: 0.75rem;
}

.ice-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background var(--ice-transition), transform var(--ice-transition);
}

.ice-footer__social-link:hover {
  background: var(--ice-strawberry);
  color: var(--ice-white);
  transform: translateY(-2px);
}

.ice-footer__links h3,
.ice-footer__contact h3 {
  font-family: var(--ice-font-display);
  font-size: 1.1rem;
  color: var(--ice-white);
  margin-bottom: 1rem;
}

.ice-footer__links li,
.ice-footer__contact li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.ice-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .ice-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  }
}
