/* ===== Hodjapa Food — Professional Food Website ===== */

:root {
  --teal: #1a4d47;
  --teal-dark: #0f332e;
  --teal-light: #2a6b63;
  --gold: #c8952e;
  --gold-light: #e8b84a;
  --cream: #faf7f2;
  --cream-dark: #f0ebe3;
  --charcoal: #2c2c2c;
  --gray: #6b6b6b;
  --gray-light: #a0a0a0;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(26, 77, 71, 0.1);
  --shadow-lg: 0 12px 48px rgba(26, 77, 71, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

.section {
  padding: 96px 0;
}

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

.section__tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--teal);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
}

.section__header {
  text-align: center;
  margin-bottom: 56px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

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

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 149, 46, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

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

.btn--small {
  padding: 10px 20px;
  font-size: 0.85rem;
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn--small:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
}

.btn--whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
  padding: 16px 32px;
  font-size: 1rem;
}

.btn--whatsapp:hover {
  background: #1fb855;
  border-color: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 77, 71, 0.08);
  transition: var(--transition);
}

.header--scrolled {
  box-shadow: var(--shadow);
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.02em;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

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

.nav__link:hover {
  color: var(--teal);
}

.nav__link--cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: var(--teal-light);
}

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

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal);
  transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 51, 46, 0.88) 0%,
    rgba(26, 77, 71, 0.65) 50%,
    rgba(15, 51, 46, 0.75) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  max-width: 680px;
}

.hero__badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(200, 149, 46, 0.2);
  border: 1px solid rgba(200, 149, 46, 0.4);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-light);
}

.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== About ===== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__images {
  position: relative;
}

.about__img--main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about__img--logo {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid var(--cream);
  box-shadow: var(--shadow);
  object-fit: cover;
  background: var(--white);
}

.about__text {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.75;
}

.about__features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__features li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about__icon {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 4px;
}

.about__features strong {
  display: block;
  color: var(--teal);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.about__features p {
  font-size: 0.875rem;
  color: var(--gray);
}

/* ===== Products ===== */
.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card--featured {
  border: 2px solid var(--gold);
}

.product-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--gold);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
}

.product-card__badge--new {
  background: var(--teal);
}

.product-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card__image--contain {
  background: linear-gradient(160deg, #f7f3ee 0%, #ebe4dc 100%);
}

.product-card__image--contain img {
  object-fit: contain;
  object-position: center;
  padding: 10px;
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card:hover .product-card__image--contain img {
  transform: scale(1.02);
}

.product-card__image--placeholder {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__soon-content {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 0.95rem;
}

.product-card__soon-icon {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.product-card__body {
  padding: 24px;
}

.product-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--teal);
  margin-bottom: 8px;
}

.product-card__desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-card__details {
  margin-bottom: 20px;
}

.product-card__details li {
  font-size: 0.85rem;
  color: var(--gray);
  padding: 4px 0;
  padding-left: 18px;
  position: relative;
}

.product-card__details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--cream-dark);
}

.product-card__price {
  font-weight: 600;
  color: var(--teal);
  font-size: 0.9rem;
}

.product-card__status {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-light);
  font-style: italic;
}

.product-card--soon {
  opacity: 0.85;
}

/* ===== Gallery ===== */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
  transition: transform 0.5s ease;
}

.gallery__item--wide img {
  aspect-ratio: 16/9;
}

.gallery__item:not(.gallery__item--wide) img {
  aspect-ratio: 1;
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(15, 51, 46, 0.85));
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  transform: translateY(100%);
  transition: transform var(--transition);
}

.gallery__item:hover figcaption {
  transform: translateY(0);
}

/* ===== Testimonial Videos ===== */
.testimonial__wrapper {
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: 48px;
  align-items: start;
  max-width: 920px;
  margin: 0 auto;
}

.testimonial__main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial__player {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  overflow: hidden;
  background: var(--charcoal);
  box-shadow:
    0 0 0 4px var(--teal-dark),
    0 0 0 6px rgba(26, 77, 71, 0.2),
    var(--shadow-lg);
}

.testimonial__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1;
}

.testimonial__cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  cursor: pointer;
  background: none;
}

.testimonial__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial__cover-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(15, 51, 46, 0.45);
  transition: background var(--transition);
}

.testimonial__cover:hover .testimonial__cover-overlay {
  background: rgba(15, 51, 46, 0.3);
}

.testimonial__cover.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.testimonial__cover-play {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #ff0000;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  box-shadow: 0 8px 28px rgba(255, 0, 0, 0.4);
  transition: var(--transition);
}

.testimonial__cover:hover .testimonial__cover-play {
  transform: scale(1.08);
  background: #e60000;
}

.testimonial__cover-text {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.testimonial__now-playing {
  width: 100%;
  max-width: 340px;
  margin-top: 20px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
}

.testimonial__now-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.testimonial__now-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--teal);
  margin-bottom: 4px;
}

.testimonial__now-name {
  font-size: 0.9rem;
  color: var(--gray);
}

.testimonial__list-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.testimonial__grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 600px;
  overflow-y: auto;
  padding-right: 4px;
}

.testimonial__card {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 10px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.testimonial__card:hover {
  border-color: rgba(26, 77, 71, 0.2);
  transform: translateX(4px);
}

.testimonial__card.is-active {
  border-color: var(--gold);
  background: #fffdf8;
}

.testimonial__thumb {
  position: relative;
  flex-shrink: 0;
  width: 72px;
  aspect-ratio: 9 / 16;
  border-radius: 10px;
  overflow: hidden;
}

.testimonial__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial__thumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
  opacity: 0;
  transition: opacity var(--transition);
}

.testimonial__card:hover .testimonial__thumb-play,
.testimonial__card.is-active .testimonial__thumb-play {
  opacity: 1;
}

.testimonial__card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.testimonial__card-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.testimonial__card-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.4;
}



/* ===== Why ===== */
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why__card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.why__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.why__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.why__card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--teal);
  margin-bottom: 8px;
}

.why__card p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== Order ===== */
.order__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.order__text {
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 28px;
}

.order__steps {
  margin-bottom: 32px;
}

.order__steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.order__steps li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.order__note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--gray-light);
  font-style: italic;
}

.order__visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ===== Footer ===== */
.footer {
  background: var(--teal-dark);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 64px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 16px;
  object-fit: cover;
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer__links li {
  margin-bottom: 8px;
}

.footer__links a,
.footer__contact a {
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__links a:hover,
.footer__contact a:hover {
  color: var(--gold-light);
}

.footer__contact p {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #1fb855;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 32px rgba(37, 211, 102, 0.6); }
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .products__grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }

  .nav__menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav__menu li {
    width: 100%;
  }

  .nav__link {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--cream-dark);
  }

  .nav__link--cta {
    text-align: center;
    margin-top: 12px;
  }

  .nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav__toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero__stats {
    gap: 24px;
  }

  .about__grid,
  .order__grid,
  .testimonial__wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 100%;
  }

  .testimonial__grid {
    max-height: none;
  }

  .about__img--logo {
    right: 16px;
    bottom: -16px;
    width: 90px;
    height: 90px;
  }

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

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

  .gallery__item--wide {
    grid-column: span 2;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__stats {
    flex-direction: column;
    gap: 16px;
  }

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

  .gallery__item--wide {
    grid-column: span 1;
  }
}