/* ============================================
   Le Petit Moka — Main Stylesheet
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Lato:wght@300;400;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --espresso:   #5D3A1A;
  --caramel:    #8B5E3C;
  --latte:      #C4A882;
  --cream-deep: #F5F0E8;
  --cream-soft: #FFFDF8;
  --gold:       #D4A853;
  --dark-roast: #3D2517;
  --dark-mid:   #2A1A0E;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --section-py: 5rem;
  --container-max: 1200px;
  --container-px: 1.5rem;

  /* Transitions */
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--espresso);
  background-color: var(--cream-soft);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* --- Utility --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--espresso);
}

.section-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.25rem 0 2rem;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--latte);
  opacity: 0.5;
}

.section-divider svg {
  flex-shrink: 0;
  color: var(--gold);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--transition-base), padding var(--transition-base), box-shadow var(--transition-base);
}

.nav.scrolled {
  background: rgba(61, 37, 23, 0.97);
  backdrop-filter: blur(10px);
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cream-soft);
  letter-spacing: 0.02em;
}

.nav__logo-icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
}

.nav__links {
  display: none;
  align-items: center;
  gap: 2.25rem;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 253, 248, 0.8);
  transition: color var(--transition-base);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition-base);
}

.nav__links a:hover {
  color: var(--gold);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  display: none;
  padding: 0.5rem 1.25rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  border-radius: 2px;
  font-size: 0.8rem !important;
  letter-spacing: 0.12em !important;
  transition: background var(--transition-base), color var(--transition-base) !important;
}

.nav__cta:hover {
  background: var(--gold) !important;
  color: var(--dark-roast) !important;
}

.nav__cta::after {
  display: none !important;
}

.nav__toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--cream-soft);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav__toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav__toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark-roast);
  z-index: 999;
  padding: 6rem 2rem 2rem;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile a {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--cream-soft);
  letter-spacing: 0.02em;
  transition: color var(--transition-base);
}

.nav__mobile a:hover {
  color: var(--gold);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--dark-roast);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(93, 58, 26, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 30%, rgba(139, 94, 60, 0.3) 0%, transparent 50%),
    linear-gradient(160deg, #2A1A0E 0%, #3D2517 40%, #5D3A1A 100%);
  will-change: transform;
}

/* Decorative grain texture overlay */
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

/* Decorative ring */
.hero__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(700px, 90vw);
  height: min(700px, 90vw);
  border: 1px solid rgba(212, 168, 83, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.hero__ring::before {
  content: '';
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(212, 168, 83, 0.07);
  border-radius: 50%;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 800px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 0.3s forwards;
}

.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--cream-soft);
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
  opacity: 0;
  transform: translateY(25px);
  animation: fadeInUp 0.9s ease 0.5s forwards;
}

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

.hero__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--latte);
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 0.7s forwards;
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 253, 248, 0.55);
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 0.9s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 1.1s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
}

.btn--primary {
  background: var(--gold);
  color: var(--dark-roast);
}

.btn--primary:hover {
  background: #e8bc63;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 168, 83, 0.35);
}

.btn--outline {
  background: transparent;
  border: 1px solid rgba(255, 253, 248, 0.3);
  color: var(--cream-soft);
}

.btn--outline:hover {
  border-color: rgba(255, 253, 248, 0.6);
  transform: translateY(-2px);
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 253, 248, 0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(212, 168, 83, 0.5));
  animation: scrollLine 1.5s ease-in-out 2s infinite;
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu {
  padding: var(--section-py) 0;
  background: var(--cream-deep);
}

.menu__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.menu__header .section-divider {
  justify-content: center;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.menu__tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.menu__tab {
  padding: 0.6rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--latte);
  color: var(--caramel);
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition-base);
}

.menu__tab:hover,
.menu__tab.active {
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--cream-soft);
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.menu__panel {
  display: none;
}

.menu__panel.active {
  display: block;
}

.menu-card {
  background: var(--cream-soft);
  border-radius: 4px;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(93, 58, 26, 0.08);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid rgba(196, 168, 130, 0.2);
}

.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(93, 58, 26, 0.14);
}

.menu-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.menu-card__icon {
  width: 36px;
  height: 36px;
  background: var(--cream-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--caramel);
  flex-shrink: 0;
}

.menu-card__name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.3;
  flex: 1;
}

.menu-card__price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

.menu-card__desc {
  font-size: 0.875rem;
  color: var(--caramel);
  line-height: 1.6;
}

.menu-card__divider {
  width: 30px;
  height: 1px;
  background: var(--latte);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: var(--section-py) 0;
  background: var(--cream-soft);
  overflow: hidden;
}

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

.about__image-wrap {
  position: relative;
}

.about__image-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--dark-mid);
}

.about__image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(93, 58, 26, 0.2) 0%, transparent 60%);
  z-index: 1;
}

.about__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #3D2517 0%, #5D3A1A 50%, #8B5E3C 100%);
}

/* SVG illustration for about section */
.about__illustration {
  width: 70%;
  opacity: 0.8;
}

.about__image-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: var(--gold);
  color: var(--dark-roast);
  padding: 1.25rem;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.4);
}

.about__image-badge strong {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
}

.about__image-badge span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
  margin-top: 0.2rem;
}

.about__content {
  padding-top: 1rem;
}

.about__content .section-title {
  margin-bottom: 0.5rem;
}

.about__subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--caramel);
  margin-bottom: 1.5rem;
}

.about__text {
  color: var(--caramel);
  font-size: 0.975rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.about__features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.about__feature-icon {
  width: 40px;
  height: 40px;
  background: var(--cream-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.about__feature h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 0.25rem;
}

.about__feature p {
  font-size: 0.825rem;
  color: var(--caramel);
  line-height: 1.5;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: var(--section-py) 0;
  background: var(--dark-roast);
  color: var(--cream-deep);
}

.contact__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.contact__header .section-title {
  color: var(--cream-soft);
}

.contact__header .section-divider::before,
.contact__header .section-divider::after {
  background: rgba(196, 168, 130, 0.3);
}

.contact__header .section-divider {
  justify-content: center;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact__block h3 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.875rem;
}

.contact__block p,
.contact__block address {
  font-style: normal;
  font-size: 0.975rem;
  color: rgba(245, 240, 232, 0.75);
  line-height: 1.8;
}

.contact__block a {
  color: rgba(245, 240, 232, 0.75);
  transition: color var(--transition-base);
}

.contact__block a:hover {
  color: var(--gold);
}

.contact__hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact__hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.7);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(196, 168, 130, 0.1);
}

.contact__hours-row:last-child {
  border-bottom: none;
}

.contact__hours-row strong {
  color: var(--cream-soft);
  font-weight: 400;
}

.contact__socials {
  display: flex;
  gap: 0.875rem;
  margin-top: 0.5rem;
}

.contact__social-link {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(196, 168, 130, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 240, 232, 0.6);
  transition: all var(--transition-base);
}

.contact__social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Map placeholder */
.contact__map {
  border-radius: 4px;
  overflow: hidden;
  min-height: 350px;
  background: rgba(42, 26, 14, 0.6);
  border: 1px solid rgba(196, 168, 130, 0.15);
  display: flex;
  flex-direction: column;
  position: relative;
}

.contact__map-inner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.contact__map-visual {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.contact__map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.contact__map-pin-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(212, 168, 83, 0.25);
  animation: pulse 2s ease-in-out infinite;
}

.contact__map-pin-line {
  width: 1px;
  height: 30px;
  background: rgba(212, 168, 83, 0.5);
}

.contact__map-label {
  background: var(--dark-roast);
  border: 1px solid rgba(212, 168, 83, 0.4);
  padding: 0.75rem 1.25rem;
  text-align: center;
  margin: 1rem;
  border-radius: 2px;
}

.contact__map-label strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--cream-soft);
  margin-bottom: 0.25rem;
}

.contact__map-label span {
  font-size: 0.8rem;
  color: var(--latte);
  letter-spacing: 0.05em;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark-mid);
  padding: 1.75rem 0;
  border-top: 1px solid rgba(196, 168, 130, 0.1);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer__bean {
  color: var(--gold);
  opacity: 0.7;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.4);
  letter-spacing: 0.08em;
}

.footer__copy a {
  color: var(--gold);
  opacity: 0.7;
  transition: opacity var(--transition-base);
}

.footer__copy a:hover {
  opacity: 1;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.2); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(212, 168, 83, 0.25); }
  50% { box-shadow: 0 0 0 12px rgba(212, 168, 83, 0.1); }
}

/* Scroll-triggered animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal--left {
  transform: translateX(-40px);
}

.reveal--left.revealed {
  transform: translateX(0);
}

.reveal--right {
  transform: translateX(40px);
}

.reveal--right.revealed {
  transform: translateX(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }

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

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__eyebrow,
  .hero__title,
  .hero__subtitle,
  .hero__tagline,
  .hero__actions,
  .hero__scroll {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ============================================
   RESPONSIVE: 768px
   ============================================ */
@media (min-width: 768px) {
  :root {
    --section-py: 6.5rem;
    --container-px: 2rem;
  }

  .nav__links {
    display: flex;
  }

  .nav__cta {
    display: inline-flex;
  }

  .nav__toggle {
    display: none;
  }

  .about__inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .footer__inner {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }
}

/* ============================================
   RESPONSIVE: 1024px
   ============================================ */
@media (min-width: 1024px) {
  :root {
    --section-py: 8rem;
    --container-px: 3rem;
  }

  .about__inner {
    gap: 6rem;
  }

  .menu__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
