/* ============================================
   CORE — Focus Patch Website
   css/styles.css
   ============================================ */

/* ------ Custom Properties ------ */
:root {
  --blue:       #3D82EE;
  --black:      #111111;
  --white:      #FFFFFF;
  --gray-light: #F6F6F6;
  --gray-mid:   #E4E4E4;
  --gray-text:  #777777;
  --font:       'DM Sans', sans-serif;
  --container:  1200px;
  --nav-h:      72px;
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --dur:        650ms;
}

/* ------ Reset ------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ------ Container ------ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* ------ Shared Typography ------ */
.section__label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 1rem;
}
.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 3.5rem;
}

/* ------ Buttons ------ */
.btn {
  display: inline-block;
  padding: 0.9rem 2.25rem;
  border: 1.5px solid var(--black);
  color: var(--black);
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  transition: background 0.22s ease, color 0.22s ease;
}
.btn:hover { background: var(--black); color: var(--white); }

.btn--dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn--dark:hover { background: #2a2a2a; border-color: #2a2a2a; }

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


/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.35s var(--ease-out), box-shadow 0.35s;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-mark {
  width: 64px;
  height: 64px;
  display: block;
}

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav__links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--black);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--blue); }
.nav__shop {
  pointer-events: none;
  opacity: 0.3;
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--black);
  transition: transform 0.3s var(--ease-out), opacity 0.25s;
}
.nav__toggle.active span:first-child { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.active span:last-child  { transform: translateY(-6.5px) rotate(-45deg); }


/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.js-ready .animate-in {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity  var(--dur) var(--ease-out),
    transform var(--dur) var(--ease-out);
  transition-delay: var(--delay, 0ms);
}
.js-ready .animate-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.hero__content {
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 2rem;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.hero__text {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.hero__eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-text);
}
.hero__headline {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.hero__brand {
  font-size: clamp(4rem, 9vw, 7.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-left: -0.04em;
}
.hero__tagline {
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--gray-text);
}
.hero__sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray-text);
  line-height: 1.75;
  max-width: 36ch;
}
.hero__cta { margin-top: 0.5rem; }

/* Hero image */
.hero__image-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__image-wrap img {
  width: 100%;
  max-width: 640px;
  height: auto;
  object-fit: contain;
}

/* Scroll cue */
.hero__scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero__scroll-line {
  display: block;
  width: 1.5px;
  height: 52px;
  background: var(--blue);
  transform-origin: top;
  animation: scrollLine 2s var(--ease-out) infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); opacity: 0; transform-origin: top; }
  40%  { transform: scaleY(1); opacity: 1; transform-origin: top; }
  60%  { transform: scaleY(1); opacity: 1; transform-origin: bottom; }
  100% { transform: scaleY(0); opacity: 0; transform-origin: bottom; }
}


/* ============================================
   SHARED SECTION WRAPPER
   ============================================ */
.section {
  padding: clamp(5rem, 10vw, 8rem) 0;
}
.section--gray { background: var(--gray-light); }


/* ============================================
   HOW IT WORKS
   ============================================ */
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 2.5rem;
  align-items: start;
}
.step__divider {
  width: 1px;
  height: 64px;
  background: var(--gray-mid);
  align-self: center;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.step__num {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--blue);
  text-transform: uppercase;
}
.step__title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.step__desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--gray-text);
  line-height: 1.75;
  max-width: 26ch;
}


/* ============================================
   PATCH ANATOMY
   ============================================ */
.patch-anatomy {
  padding-bottom: 0;
}
.patch-anatomy__image {
  width: 100%;
  margin-top: 2rem;
}
.patch-anatomy__image img {
  width: 100%;
  max-width: 900px;
  display: block;
  margin: 0 auto;
}

/* Layers image: overrides the generic animate-in with blur-to-sharp + rise */
.js-ready .animate-layers {
  opacity: 0;
  transform: translateY(48px) scale(0.97);
  filter: blur(10px);
  transition:
    opacity   0.9s var(--ease-out),
    transform 0.9s var(--ease-out),
    filter    0.9s var(--ease-out);
}
.js-ready .animate-layers.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
}

/* ============================================
   INGREDIENTS
   ============================================ */
.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--gray-mid);
  border: 1px solid var(--gray-mid);
}
.ingredient-card {
  background: var(--white);
  padding: 2.25rem 1.75rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}
.ingredient-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
}
.ingredient-card__num {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--blue);
  text-transform: uppercase;
}
.ingredient-card__name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.ingredient-card__desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--gray-text);
  line-height: 1.65;
}


/* ============================================
   PRODUCT CALLOUT
   ============================================ */
.product-callout__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.product-callout__img {
  width: 100%;
  object-fit: cover;
  display: block;
}
.product-callout__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.product-callout__text h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.product-callout__text p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--gray-text);
  line-height: 1.8;
  max-width: 38ch;
}
.product-callout__pill {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-text);
  border: 1px solid var(--gray-mid);
  padding: 0.4rem 0.9rem;
  width: fit-content;
}


/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  background: var(--black);
  padding: clamp(4.5rem, 9vw, 7rem) 0;
}
.newsletter__inner {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.newsletter__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.newsletter__sub {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  margin-top: -0.5rem;
}
.newsletter__form {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.25rem;
}
.newsletter__input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter__input::placeholder { color: rgba(255, 255, 255, 0.3); }
.newsletter__input:focus { border-color: rgba(255, 255, 255, 0.45); }
.newsletter__success {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  display: none;
}
.newsletter__success.show { display: block; }


/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--gray-mid);
}
.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 2rem;
}
.footer__logo .logo-mark { width: 36px; height: 36px; }
.footer__nav {
  display: flex;
  gap: 2rem;
  padding-left: 2rem;
}
.footer__nav a {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--gray-text);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--black); }
.footer__social {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.footer__social a {
  color: var(--gray-text);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.footer__social a:hover { color: var(--black); }
.footer__copy {
  font-size: 0.72rem;
  color: var(--gray-text);
}


/* ============================================
   INNER PAGE LAYOUT (about, directions, contact)
   ============================================ */
.page-hero {
  padding: calc(var(--nav-h) + 5rem) 0 4rem;
  border-bottom: 1px solid var(--gray-mid);
}
.page-hero__label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 1.25rem;
}
.page-hero__title {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 14ch;
}
.page-hero__sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray-text);
  line-height: 1.75;
  max-width: 44ch;
  margin-top: 1.5rem;
}


/* ============================================
   ABOUT PAGE
   ============================================ */
.about-body {
  padding: 5rem 0 8rem;
}
.about-body__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
}
.about-body__aside {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.about-body__aside img {
  width: 100%;
  object-fit: cover;
}
.about-body__text p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.9;
  color: #3a3a3a;
  margin-bottom: 1.75rem;
}
.about-body__text p:last-child { margin-bottom: 0; }
.about-body__text strong {
  font-weight: 600;
  color: var(--black);
}


/* ============================================
   DIRECTIONS PAGE
   ============================================ */
.directions-body {
  padding: 5rem 0 8rem;
}
.directions-body__inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 6rem;
  align-items: start;
}
.direction-step {
  display: flex;
  gap: 2.5rem;
  padding: 2.75rem 0;
  border-bottom: 1px solid var(--gray-mid);
}
.direction-step:first-of-type {
  border-top: 1px solid var(--gray-mid);
}
.direction-step__num {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--blue);
  flex-shrink: 0;
  min-width: 2.5rem;
  padding-top: 0.25rem;
}
.direction-step__body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.direction-step__body p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--gray-text);
  line-height: 1.75;
  max-width: 42ch;
}
.directions-note {
  margin-top: 3rem;
  padding: 1.5rem 1.75rem;
  background: var(--gray-light);
  border-left: 2px solid var(--blue);
  font-size: 0.82rem;
  color: var(--gray-text);
  line-height: 1.75;
}
.directions-note strong { color: var(--black); font-weight: 600; }
.directions-aside {
  position: sticky;
  top: calc(var(--nav-h) + 3rem);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.directions-aside__img {
  width: 100%;
  object-fit: cover;
}
.directions-aside__fact {
  padding: 1.5rem;
  border: 1px solid var(--gray-mid);
}
.directions-aside__fact h4 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.5rem;
}
.directions-aside__fact p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--gray-text);
  line-height: 1.65;
}


/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-body {
  padding: 5rem 0 8rem;
}
.contact-body__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}
.contact-block h3 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 0.75rem;
}
.contact-block p,
.contact-block a {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--black);
  line-height: 1.7;
}
.contact-block a:hover { color: var(--blue); }
.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.social-links a {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--black);
  transition: color 0.2s;
}
.social-links a:hover { color: var(--blue); }
.social-links svg { flex-shrink: 0; }

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-form h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.form-group label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-text);
}
.form-group input,
.form-group textarea {
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.9rem 1rem;
  border: 1px solid var(--gray-mid);
  background: var(--white);
  color: var(--black);
  outline: none;
  resize: vertical;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group textarea { min-height: 130px; }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--black); }
.form-success {
  font-size: 0.85rem;
  color: var(--gray-text);
  display: none;
  padding: 1rem;
  border: 1px solid var(--gray-mid);
  text-align: center;
}
.form-success.show { display: block; }


/* ============================================
   EMAIL POPUP
   ============================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.popup-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.popup {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 780px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.4s var(--ease-out);
}
.popup-overlay.is-open .popup {
  transform: translateY(0);
}
.popup__close {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: var(--black);
  z-index: 2;
  line-height: 1;
  padding: 0.25rem;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.popup__close:hover { opacity: 1; }
.popup__image {
  width: 100%;
  height: 100%;
  min-height: 380px;
}
.popup__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.popup__body {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.popup__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0;
}
.popup__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
  color: var(--black);
}
.popup__sub {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--gray-text);
  line-height: 1.6;
  margin: 0;
}
.popup__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.popup__form input[type="email"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-mid);
  background: var(--white);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
}
.popup__form input[type="email"]:focus {
  border-color: var(--blue);
}
.popup__form .btn {
  width: 100%;
  justify-content: center;
}
.popup__opt {
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--gray-text);
  opacity: 0.6;
  margin: 0;
}

/* Success state */
.popup--success {
  display: none;
  grid-template-columns: 1fr;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 3rem;
  min-height: 320px;
}

/* Responsive popup */
@media (max-width: 620px) {
  .popup {
    grid-template-columns: 1fr;
  }
  .popup__image {
    min-height: 200px;
    max-height: 220px;
  }
  .popup__body {
    padding: 2rem 1.5rem;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .ingredient-grid { grid-template-columns: repeat(3, 1fr); }
  .about-body__inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-body__aside { position: static; }
  .directions-body__inner { grid-template-columns: 1fr; gap: 3rem; }
  .directions-aside { position: static; flex-direction: row; }
  .directions-aside__img { display: none; }
}

@media (max-width: 768px) {
  /* Nav mobile */
  .nav__toggle { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 2rem;
    border-bottom: 1px solid var(--gray-mid);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
  .nav__links.open { display: flex; }
  .nav__links li { width: 100%; }
  .nav__links a { display: block; padding: 1rem 1.75rem; font-size: 0.95rem; }

  /* Hero mobile */
  .hero__content { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 2.5rem; padding-bottom: 3rem; }
  .hero__image-wrap { order: -1; }
  .hero__image-wrap::before { padding-top: 60%; }

  /* Steps mobile */
  .steps { grid-template-columns: 1fr; gap: 0; }
  .step { padding: 2rem 0; border-bottom: 1px solid var(--gray-mid); }
  .step:last-child { border-bottom: none; }
  .step__divider { display: none; }

  /* Ingredient grid mobile */
  .ingredient-grid { grid-template-columns: repeat(2, 1fr); }

  /* Product callout mobile */
  .product-callout__inner { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Newsletter form mobile */
  .newsletter__form { flex-direction: column; }

  /* Contact mobile */
  .contact-body__inner { grid-template-columns: 1fr; gap: 3.5rem; }

  /* Footer mobile */
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__nav { padding-left: 0; gap: 1.25rem; flex-wrap: wrap; }
  .footer__copy { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .ingredient-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__social { order: 2; }
  .directions-aside { flex-direction: column; }
}
