/* ============================================
   SWEET CRUMBS — Design System
   Palette: Terracotta Studio
   Fonts: Zodiak (display) + Cabinet Grotesk (body)
   ============================================ */

:root {
  --terracotta:    #B5563E;
  --terracotta-lt: #D4896A;
  --cream:         #F2E6D9;
  --cream-dk:      #E8D5C0;
  --brown-dk:      #3D2B1F;
  --brown-md:      #6B4C3B;
  --white:         #FDFAF7;
  --text:          #2C1A10;
  --text-muted:    #7A5C4E;

  --font-display: 'Zodiak', Georgia, serif;
  --font-body:    'Cabinet Grotesk', system-ui, sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  32px;
  --radius-xl:  64px;

  --shadow-sm:  0 2px 12px rgba(61,43,31,0.08);
  --shadow-md:  0 8px 32px rgba(61,43,31,0.12);
  --shadow-lg:  0 24px 64px rgba(61,43,31,0.18);

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ---- TYPOGRAPHY ---- */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--brown-dk);
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  color: var(--terracotta);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(181,86,62,0.35);
}
.btn--primary:hover {
  background: var(--brown-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(181,86,62,0.4);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn--full { width: 100%; justify-content: center; }

/* ---- REVEAL ANIMATION ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 4%;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
.nav.scrolled {
  background: rgba(253,250,247,0.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 0.875rem 4%;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.4s;
}
.nav.scrolled .nav__logo { color: var(--brown-dk); }
.nav__logo-icon {
  color: var(--terracotta-lt);
  font-size: 1rem;
}
.nav.scrolled .nav__logo-icon { color: var(--terracotta); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
}
.nav.scrolled .nav__links a { color: var(--brown-md); }
.nav__links a:hover { color: var(--terracotta-lt); }
.nav.scrolled .nav__links a:hover { color: var(--terracotta); }
.nav__cta {
  background: var(--terracotta) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-xl);
  font-weight: 700 !important;
  transition: background 0.3s, transform 0.3s !important;
}
.nav__cta:hover { background: var(--brown-dk) !important; transform: translateY(-1px); }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav.scrolled .nav__hamburger span { background: var(--brown-dk); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--brown-dk);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { text-align: center; }
.mobile-menu li { margin: 1.5rem 0; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--cream);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--terracotta-lt); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(61,43,31,0.72) 0%,
    rgba(61,43,31,0.35) 60%,
    rgba(181,86,62,0.2) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 6%;
  animation: heroFadeUp 1.2s 0.3s both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta-lt);
  margin-bottom: 1rem;
  opacity: 1 !important;
  transform: none !important;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 1 !important;
  transform: none !important;
}
.hero__title em {
  font-style: italic;
  color: var(--terracotta-lt);
}
.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(242,230,217,0.9);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  opacity: 1 !important;
  transform: none !important;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 1 !important;
  transform: none !important;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 6%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(242,230,217,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 60px;
  height: 1px;
  background: rgba(242,230,217,0.4);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--terracotta-lt);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  to { left: 100%; }
}

/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee-strip {
  background: var(--terracotta);
  padding: 0.875rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0 2rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 7rem 6%;
  background: var(--white);
}
.about__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  aspect-ratio: 4/5;
}
.about__img-wrap img {
  border-radius: var(--radius-lg);
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.about__badge-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}
.about__badge-text {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
  margin-top: 0.2rem;
}
.about__body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.about__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dk);
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
}
.stat__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

/* ============================================
   MENU / CAKES
   ============================================ */
.menu {
  background: var(--cream);
  padding: 7rem 6%;
}
.menu__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.cake-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.cake-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.cake-card__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.cake-card__img-wrap img {
  transition: transform 0.6s ease;
}
.cake-card:hover .cake-card__img-wrap img {
  transform: scale(1.06);
}
.cake-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-xl);
}
.cake-card__body {
  padding: 1.5rem;
}
.cake-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--brown-dk);
  margin-bottom: 0.6rem;
}
.cake-card__body p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.cake-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cake-card__price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--terracotta);
}
.cake-card__link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brown-md);
  transition: color 0.3s, gap 0.3s;
}
.cake-card__link:hover { color: var(--terracotta); }

/* ============================================
   PROCESS
   ============================================ */
.process {
  background: var(--brown-dk);
  padding: 7rem 6%;
}
.process__inner { max-width: 900px; margin: 0 auto; }
.process__header {
  text-align: center;
  margin-bottom: 4rem;
}
.process__header .section-eyebrow { color: var(--terracotta-lt); }
.process__header .section-title { color: var(--cream); }
.process__header .section-title em { color: var(--terracotta-lt); }
.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process__step {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
}
.process__step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.7;
}
.process__step-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.process__step-content p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(242,230,217,0.65);
}
.process__connector {
  flex-shrink: 0;
  width: 60px;
  height: 1px;
  background: var(--terracotta);
  opacity: 0.4;
  margin-top: 1.75rem;
  align-self: flex-start;
}

/* ============================================
   GALLERY STRIP
   ============================================ */
.gallery {
  overflow: hidden;
  height: 280px;
}
.gallery__track {
  display: flex;
  height: 100%;
  animation: galleryScroll 30s linear infinite;
}
.gallery__item {
  flex-shrink: 0;
  width: 320px;
  height: 100%;
  overflow: hidden;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery__item:hover img { transform: scale(1.08); }
@keyframes galleryScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--white);
  padding: 7rem 6%;
}
.testimonials__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--terracotta);
  opacity: 0.15;
  line-height: 1;
}
.testimonial__stars {
  color: var(--terracotta);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.testimonial__text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.testimonial__author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial__author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brown-dk);
}
.testimonial__author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================
   ORDER FORM
   ============================================ */
.order {
  background: var(--cream);
  padding: 7rem 6%;
}
.order__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.order__body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.order__contact {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 2rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.9rem;
  color: var(--brown-md);
}
.contact-icon { font-size: 1.1rem; }
.order__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brown-md);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--cream-dk);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(181,86,62,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #C4A898; }
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.875rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--brown-dk);
  color: var(--cream);
  padding: 5rem 6% 2rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(242,230,217,0.12);
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1rem;
}
.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(242,230,217,0.6);
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer__social {
  display: flex;
  gap: 1rem;
}
.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(242,230,217,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(242,230,217,0.6);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.footer__social a:hover {
  border-color: var(--terracotta-lt);
  color: var(--terracotta-lt);
  background: rgba(181,86,62,0.1);
}
.footer__links h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta-lt);
  margin-bottom: 1.25rem;
}
.footer__links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a {
  font-size: 0.875rem;
  color: rgba(242,230,217,0.6);
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--cream); }
.footer__newsletter h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta-lt);
  margin-bottom: 0.75rem;
}
.footer__newsletter p {
  font-size: 0.875rem;
  color: rgba(242,230,217,0.6);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(242,230,217,0.2);
}
.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(242,230,217,0.08);
  border: none;
  color: var(--cream);
  font-size: 0.875rem;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(242,230,217,0.35); }
.newsletter-form button {
  padding: 0.75rem 1.25rem;
  background: var(--terracotta);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  transition: background 0.3s;
}
.newsletter-form button:hover { background: var(--terracotta-lt); }
.footer__bottom {
  padding-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(242,230,217,0.35);
}

/* ============================================
   TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--brown-dk);
  color: var(--cream);
  padding: 1rem 2rem;
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .menu__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .process__steps { flex-direction: column; align-items: center; }
  .process__connector { width: 1px; height: 40px; margin: 0; }
  .process__step { max-width: 400px; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .about {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 6%;
  }
  .about__img-wrap { aspect-ratio: 3/2; max-height: 360px; }
  .about__badge { width: 90px; height: 90px; bottom: -1rem; right: -0.5rem; }
  .about__badge-num { font-size: 1.4rem; }
  .menu__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .order__inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .about__stats { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.75rem; }
  .hero__title { font-size: 2.75rem; }
  .order__form { padding: 1.5rem; }
  .gallery { height: 200px; }
  .gallery__item { width: 220px; }
}