/* Haya Kape design system */
:root {
  --royal-blue: #2b4acb;
  --royal-blue-dark: #1e3699;
  --royal-blue-deep: #14236b;
  --white: #ffffff;
  --cream: #f7f1e8;
  --cream-strong: #efe5d7;
  --cream-dark: #ded2bf;
  --orange: #e85d24;
  --orange-hover: #c94716;
  --ube-purple: #7b5ea7;
  --strawberry: #e84a5f;
  --brown-sugar: #8b5a3c;
  --text-dark: #171727;
  --text-muted: #56566c;
  --line: rgba(30, 54, 153, 0.16);
  --line-strong: rgba(30, 54, 153, 0.28);
  --shadow-sm: 0 2px 10px rgba(20, 35, 107, 0.08);
  --shadow-md: 0 10px 28px rgba(20, 35, 107, 0.12);
  --shadow-lift: 0 16px 40px rgba(20, 35, 107, 0.18);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-pill: 999px;
  --font-display: "Fredoka", system-ui, sans-serif;
  --font-script: "Pacifico", cursive;
  --font-body: "Nunito", system-ui, sans-serif;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --nav-height: 64px;
  --sticky-cta-height: 56px;
  --focus-ring: 3px solid rgba(255, 184, 77, 0.9);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + var(--space-5));
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--cream);
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--royal-blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible {
  outline: var(--focus-ring);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 9999;
  padding: 0.65rem 1rem;
  color: var(--white);
  background: var(--orange);
  border-radius: var(--radius-sm);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 0.15s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--royal-blue);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.16);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-4);
}

.logo-text {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1;
}

.logo-text:hover {
  text-decoration: none;
}

.logo-text span {
  display: block;
  margin-top: 0.12rem;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  margin-inline: auto;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-nav {
  display: none;
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  padding: var(--space-3) var(--space-4) var(--space-4);
  background: var(--royal-blue-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-md);
}

.site-nav.is-open {
  display: grid;
  gap: var(--space-2);
}

.site-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(255, 255, 255, 0.13);
  text-decoration: none;
}

/* Buttons */
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.78rem 1.25rem;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 8px 20px rgba(232, 93, 36, 0.34);
}

.btn-primary:hover {
  background: var(--orange-hover);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.58);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--white);
}

.btn-small {
  min-height: 40px;
  padding: 0.58rem 1rem;
  font-size: 0.88rem;
}

/* Hero */
.hero {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.13), transparent 26rem),
    linear-gradient(135deg, var(--royal-blue), var(--royal-blue-dark));
  padding: calc(var(--nav-height) + 1rem) 0 1.5rem;
}

.hero-inner-content {
  display: grid;
  align-items: center;
  gap: var(--space-4);
}

.hero-copy {
  max-width: 42rem;
  text-align: center;
  margin-inline: auto;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 var(--space-2);
  padding: 0.24rem 0.72rem;
  color: var(--royal-blue-deep);
  background: var(--cream);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 8.4vw, 4.2rem);
  line-height: 0.98;
  font-weight: 800;
}

.hero-subline {
  max-width: 42ch;
  margin: var(--space-3) auto 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  line-height: 1.5;
}

.hero-subline strong {
  color: #ffe0a3;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.hero-card {
  width: min(270px, 74vw);
  margin: 0 auto;
  overflow: hidden;
  background: var(--cream);
  border: 4px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lift);
}

.hero-card img {
  width: 100%;
}

/* Value strip */
.value-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.value-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-2);
  padding-block: var(--space-3);
}

.value-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 42px;
  padding: 0.55rem 0.65rem;
  color: var(--royal-blue);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
}

.value-badge-icon {
  font-size: 1.1rem;
  line-height: 1;
}

/* Sections */
.section {
  padding: clamp(2.75rem, 6vw, 5rem) 0;
}

.section-alt {
  background: var(--white);
}

.section-header {
  max-width: 46rem;
  margin: 0 auto clamp(1.6rem, 4vw, 2.4rem);
  text-align: center;
}

.section-label {
  margin: 0 0 var(--space-1);
  color: var(--orange);
  font-family: var(--font-script);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.section-title {
  margin: 0;
  color: var(--royal-blue);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.65rem);
  font-weight: 800;
  line-height: 1.08;
}

.section-desc {
  max-width: 48ch;
  margin: var(--space-3) auto 0;
  color: var(--text-muted);
}

.section-subtitle {
  margin: 0 0 var(--space-3);
  color: var(--royal-blue);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.45rem);
  line-height: 1.15;
}

/* Product sections */
.featured-grid,
.snacks-grid,
.locations-grid,
.proof-grid {
  display: grid;
  gap: var(--space-5);
}

.featured-hero-card,
.featured-trio,
.special-card,
.snack-card,
.location-card,
.proof-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.featured-hero-card,
.featured-trio,
.snack-card {
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.featured-hero-card:hover,
.featured-trio:hover,
.snack-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}

.featured-hero-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.featured-hero-card img,
.featured-trio img,
.snack-card img {
  width: 100%;
  background: var(--cream);
  object-fit: contain;
}

.featured-hero-card img {
  aspect-ratio: 4 / 3;
  padding: var(--space-4);
}

.featured-hero-content {
  display: grid;
  align-content: start;
  padding: var(--space-5);
}

.featured-tag,
.price-badge,
.service-badge,
.story-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: var(--radius-pill);
  font-weight: 900;
  line-height: 1;
}

.featured-tag {
  margin-bottom: var(--space-3);
  padding: 0.42rem 0.72rem;
  color: var(--white);
  background: var(--ube-purple);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.featured-name {
  margin: 0;
  color: var(--royal-blue);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 4vw, 1.85rem);
  line-height: 1.1;
}

.featured-price,
.special-card .price,
.proof-value {
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
}

.featured-price {
  margin: var(--space-2) 0 var(--space-3);
  font-size: clamp(2rem, 5vw, 2.55rem);
}

.featured-desc {
  margin: 0;
  color: var(--text-muted);
}

.featured-side {
  display: grid;
  gap: var(--space-5);
}

.featured-trio img {
  aspect-ratio: 16 / 10;
  padding: var(--space-3);
}

.featured-trio-caption {
  padding: var(--space-4) var(--space-5) var(--space-5);
  text-align: center;
}

.featured-trio-caption h3 {
  margin: 0 0 var(--space-2);
  color: var(--royal-blue);
  font-family: var(--font-display);
  font-size: 1.22rem;
  line-height: 1.1;
}

.featured-trio-caption p {
  margin: 0;
  color: var(--text-muted);
}

.specials-block {
  padding: var(--space-5);
  background: rgba(255, 255, 255, 0.58);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-lg);
}

.specials-row {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
}

.special-card {
  display: grid;
  align-content: center;
  min-height: 7.2rem;
  padding: var(--space-4);
  text-align: center;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.special-card:hover {
  transform: translateY(-2px);
  border-color: var(--orange);
}

.special-card h4 {
  margin: 0 0 var(--space-2);
  color: var(--royal-blue);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.15;
}

.special-card .price {
  margin: 0;
  font-size: 1.55rem;
}

/* Snacks */
.snacks-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  max-width: 900px;
  margin-inline: auto;
}

.snack-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 11rem;
}

.snack-card img {
  height: 100%;
  min-height: 11rem;
  aspect-ratio: 1 / 1;
  padding: var(--space-3);
}

.snack-card-body {
  display: grid;
  align-content: center;
  padding: var(--space-5);
}

.snack-card-body h3 {
  margin: 0 0 var(--space-2);
  color: var(--royal-blue);
  font-family: var(--font-display);
  font-size: 1.32rem;
  line-height: 1.1;
}

.snack-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-style: italic;
}

/* Menu accordion */
.menu-accordion {
  display: grid;
  gap: var(--space-3);
  max-width: 850px;
  margin-inline: auto;
}

.menu-category {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.menu-category.is-open {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}

.menu-category-header {
  width: 100%;
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  color: var(--white);
  background: var(--royal-blue);
  border: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 800;
  text-align: left;
  transition: background 0.15s ease;
}

.menu-category-header:hover,
.menu-category.is-open .menu-category-header {
  background: var(--royal-blue-dark);
}

.menu-category-header > span:first-child {
  min-width: 0;
}

.price-badge {
  flex-shrink: 0;
  padding: 0.4rem 0.72rem;
  color: var(--white);
  background: var(--orange);
  font-family: var(--font-display);
  font-size: 0.88rem;
  white-space: nowrap;
}

.chevron {
  width: 1.8rem;
  height: 1.8rem;
  display: inline-grid;
  place-items: center;
  color: var(--royal-blue);
  background: var(--white);
  border-radius: 50%;
  font-size: 0.72rem;
  transition: transform 0.2s ease;
}

.menu-category.is-open .chevron {
  transform: rotate(180deg);
}

.menu-category-body {
  padding: var(--space-2) 0;
}

.menu-category-body[hidden] {
  display: none;
}

.menu-descriptor {
  margin: 0;
  padding: var(--space-3) var(--space-5) var(--space-1);
  color: var(--ube-purple);
  font-size: 0.86rem;
  font-style: italic;
  font-weight: 900;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: var(--space-4);
  padding: 0.72rem var(--space-5);
  border-bottom: 1px solid rgba(239, 229, 215, 0.9);
}

.menu-item:last-child {
  border-bottom: 0;
}

.menu-item-name {
  min-width: 0;
  font-weight: 800;
}

.menu-item-price {
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 900;
  white-space: nowrap;
}

.menu-note {
  max-width: 44ch;
  margin: var(--space-5) auto 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
  text-align: center;
}

/* Story */
.story-content {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.story-content p {
  margin: 0 0 var(--space-4);
  color: var(--text-dark);
  font-size: 1.05rem;
}

.story-highlight {
  color: var(--royal-blue);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  line-height: 1.25;
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.story-tag {
  padding: 0.44rem 0.82rem;
  color: var(--white);
  background: var(--royal-blue);
  font-size: 0.84rem;
}

/* Locations */
.locations-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  max-width: 760px;
  margin-inline: auto;
}

.location-card {
  padding: var(--space-5);
}

.location-card h3 {
  margin: 0 0 var(--space-3);
  color: var(--royal-blue);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.1;
}

.location-address {
  margin: 0 0 var(--space-3);
  color: var(--text-muted);
  font-size: 0.96rem;
}

.location-hours {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin: 0 0 var(--space-4);
  font-weight: 900;
}

.service-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.service-badge {
  padding: 0.42rem 0.66rem;
  color: var(--royal-blue);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.76rem;
}

/* Social proof */
.proof-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
  max-width: 980px;
  margin-inline: auto;
}

.proof-card {
  display: grid;
  align-content: center;
  min-height: 9rem;
  padding: var(--space-5);
  text-align: center;
}

.proof-stars {
  margin-bottom: var(--space-2);
  color: #c77700;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.proof-value {
  margin: 0;
  color: var(--royal-blue);
  font-size: clamp(1.65rem, 4vw, 2.2rem);
}

.proof-label,
.proof-quote {
  margin: var(--space-2) 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.proof-quote {
  font-style: italic;
}

/* Footer */
.site-footer {
  color: var(--white);
  background: var(--royal-blue);
  padding: var(--space-7) 0 calc(var(--space-7) + var(--sticky-cta-height));
  text-align: center;
}

.footer-brand {
  width: min(180px, 52vw);
  margin: 0 auto var(--space-5);
  overflow: hidden;
  background: var(--cream);
  border-radius: var(--radius-lg);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3) var(--space-5);
  margin-bottom: var(--space-5);
}

.footer-links a {
  color: var(--white);
  font-weight: 800;
}

.social-row {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.social-link {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  transition: background 0.15s ease, transform 0.15s ease;
}

.social-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.25);
  text-decoration: none;
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-copy,
.footer-note {
  margin: var(--space-4) 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
}

.footer-note {
  margin-top: var(--space-2);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  inset: auto 0 0;
  z-index: 999;
  display: flex;
  height: var(--sticky-cta-height);
  background: var(--orange);
  box-shadow: 0 -5px 18px rgba(0, 0, 0, 0.16);
}

.sticky-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  color: var(--white);
  font-weight: 900;
}

.sticky-cta a:hover {
  background: var(--orange-hover);
  text-decoration: none;
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 1.25rem, 1120px);
  }

  .hero {
    padding-top: calc(var(--nav-height) + 0.85rem);
  }

  .hero h1 {
    font-size: clamp(1.82rem, 10vw, 2.35rem);
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .value-badges {
    grid-template-columns: 1fr;
  }

  .menu-category-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .menu-category-header .chevron {
    grid-column: 2;
    grid-row: 1;
  }

  .menu-category-header .price-badge {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .menu-item {
    grid-template-columns: 1fr;
    gap: var(--space-1);
  }
}

@media (max-width: 640px) {
  .snack-card {
    grid-template-columns: 1fr;
  }

  .snack-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
}

@media (min-width: 768px) {
  body.nav-open {
    overflow: visible;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: var(--space-1);
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-nav a {
    min-height: 40px;
    padding: 0.46rem 0.72rem;
    font-size: 0.9rem;
  }

  .hero {
    padding: calc(var(--nav-height) + 2rem) 0 2.4rem;
  }

  .hero-inner-content {
    grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.72fr);
    gap: var(--space-6);
  }

  .hero-copy {
    margin: 0;
    text-align: left;
  }

  .hero-subline {
    margin-left: 0;
  }

  .hero-ctas {
    justify-content: flex-start;
  }

  .hero-card {
    width: min(34vw, 380px);
  }

  .value-badges {
    gap: var(--space-3);
  }

  .featured-grid {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    align-items: stretch;
  }

  .featured-hero-card img {
    aspect-ratio: 4 / 3;
  }

  .site-footer {
    padding-bottom: var(--space-7);
  }

  .sticky-cta {
    display: none;
  }
}

@media (min-width: 1024px) {
  .featured-grid {
    gap: var(--space-6);
  }

  .specials-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (min-width: 1440px) {
  .container {
    width: min(1180px, calc(100% - 4rem));
  }

  .hero-card {
    width: 400px;
  }
}

@media (min-width: 1800px) {
  .container {
    width: min(1240px, calc(100% - 6rem));
  }
}

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