/* ============================================
   WESTPORT NUTRITION — Editorial Style
   Emerald Green + Cream Palette
   ============================================ */

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

:root {
  --emerald-900: #0d4a3a;
  --emerald-800: #13634d;
  --emerald-700: #1a7a5e;
  --emerald-600: #229470;
  --cream-100: #faf8f4;
  --cream-200: #f5f0e8;
  --cream-300: #ebe4d6;
  --cream-400: #ddd5c4;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  --white: #ffffff;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--cream-100);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* --- Typography --- */
.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 1.5rem;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--emerald-900);
  margin-bottom: 1.5rem;
}

.hero__headline--accent {
  font-style: italic;
  font-weight: 400;
  color: var(--emerald-600);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 100px;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--emerald-900);
  color: var(--cream-100);
  border: 1.5px solid var(--emerald-900);
}

.btn--primary:hover {
  background-color: var(--emerald-700);
  border-color: var(--emerald-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 74, 58, 0.25);
}

.btn--ghost {
  background-color: transparent;
  color: var(--emerald-900);
  border: 1.5px solid var(--emerald-900);
}

.btn--ghost:hover {
  background-color: var(--emerald-900);
  color: var(--cream-100);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.625rem 1.5rem;
  font-size: 0.8125rem;
}

.btn--full {
  width: 100%;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  border-bottom-color: var(--cream-300);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.nav__logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--emerald-900);
  color: var(--cream-100);
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 8px;
}

.nav__logo-text {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--emerald-900);
  letter-spacing: -0.01em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-mid);
  transition: color 0.2s ease;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--emerald-700);
  transition: width 0.3s var(--ease-out);
}

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

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

.nav__cta {
  font-weight: 500 !important;
  color: var(--emerald-900) !important;
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--emerald-900);
  border-radius: 100px;
  transition: all 0.3s var(--ease-out) !important;
}

.nav__cta::after {
  display: none;
}

.nav__cta:hover {
  background-color: var(--emerald-900);
  color: var(--cream-100) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.nav__toggle-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--emerald-900);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

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

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

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

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--cream-100);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-out);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.mobile-menu__link {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--emerald-900);
  transition: color 0.2s ease;
}

.mobile-menu__link:hover {
  color: var(--emerald-600);
}

.mobile-menu__link--cta {
  margin-top: 1rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border: 1.5px solid var(--emerald-900);
  border-radius: 100px;
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 2rem 4rem;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  flex: 1;
}

.hero__content {
  max-width: 560px;
}

.hero__desc {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 2.5rem;
  max-width: 440px;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__image-col {
  position: relative;
}

.hero__image-stack {
  position: relative;
}

.hero__img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(13, 74, 58, 0.15);
}

.hero__img--main {
  width: 100%;
  aspect-ratio: 600/750;
}

.hero__img--float {
  position: absolute;
  bottom: -2rem;
  left: -3rem;
  width: 60%;
  aspect-ratio: 400/300;
  border-radius: 12px;
  overflow: hidden;
  border: 6px solid var(--cream-100);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.hero__badge {
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--emerald-900);
  color: var(--cream-100);
  padding: 0.75rem 1.25rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(13, 74, 58, 0.3);
}

.hero__scroll {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0;
  color: var(--text-light);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 48px;
  height: 1px;
  background-color: var(--cream-400);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--emerald-700);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* --- Marquee --- */
.marquee {
  background-color: var(--emerald-900);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__track {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
}

.marquee__item {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.7);
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- About --- */
.about {
  padding: 8rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about__label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 2rem;
}

.about__label-line {
  width: 32px;
  height: 1.5px;
  background-color: var(--emerald-700);
  flex-shrink: 0;
}

.about__headline {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--emerald-900);
  margin-bottom: 2rem;
}

.about__body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
}

.about__stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--cream-300);
}

.about__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.about__stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--emerald-900);
  line-height: 1;
}

.about__stat-label {
  font-size: 0.8125rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

.about__stat-divider {
  width: 1px;
  height: 48px;
  background-color: var(--cream-400);
}

.about__image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(13, 74, 58, 0.12);
  aspect-ratio: 700/500;
}

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

/* --- Products --- */
.products {
  padding: 6rem 2rem 8rem;
  background-color: var(--cream-200);
}

.products__header {
  max-width: 1280px;
  margin: 0 auto 4rem;
}

.products__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--emerald-900);
  margin-top: 1rem;
}

.products__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.product-card {
  background-color: var(--cream-100);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(13, 74, 58, 0.12);
}

.product-card__img {
  aspect-ratio: 500/400;
  overflow: hidden;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

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

.product-card__body {
  padding: 2rem;
}

.product-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--emerald-900);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.product-card__desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-mid);
}

/* --- Features --- */
.features {
  padding: 8rem 2rem;
  background-color: var(--emerald-900);
}

.features__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.features__label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.5);
  margin-bottom: 4rem;
}

.features__label .about__label-line {
  background-color: rgba(250, 248, 244, 0.3);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature {
  padding: 2rem;
  border: 1px solid rgba(250, 248, 244, 0.1);
  border-radius: 16px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.feature:hover {
  border-color: rgba(250, 248, 244, 0.25);
  background-color: rgba(250, 248, 244, 0.04);
}

.feature__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background-color: rgba(250, 248, 244, 0.08);
  color: var(--cream-200);
  margin-bottom: 1.5rem;
}

.feature__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream-100);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.feature__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(250, 248, 244, 0.55);
}

/* --- Visit --- */
.visit {
  padding: 8rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.visit__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--emerald-900);
  margin-bottom: 3rem;
}

.visit__details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.visit__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.visit__detail-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color: var(--cream-200);
  color: var(--emerald-900);
  flex-shrink: 0;
}

.visit__detail-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.visit__detail-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

.visit__detail-value {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.visit__detail-value a {
  color: var(--emerald-700);
  transition: color 0.2s ease;
}

.visit__detail-value a:hover {
  color: var(--emerald-900);
}

.visit__map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(13, 74, 58, 0.1);
}

.visit__map-placeholder {
  background-color: var(--cream-200);
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  min-height: 320px;
  justify-content: center;
  color: var(--emerald-900);
}

.visit__map-label {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--emerald-900);
}

/* --- Contact --- */
.contact {
  padding: 8rem 2rem;
  background-color: var(--cream-200);
}

.contact__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--emerald-900);
  margin-bottom: 1.5rem;
}

.contact__desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 2.5rem;
}

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

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

.contact__info-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

.contact__info-value {
  font-size: 1rem;
  color: var(--emerald-700);
  transition: color 0.2s ease;
}

.contact__info-value:hover {
  color: var(--emerald-900);
}

/* --- Form --- */
.contact__form {
  background-color: var(--cream-100);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(13, 74, 58, 0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.form-group__input,
.form-group__textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background-color: var(--cream-200);
  border: 1.5px solid transparent;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form-group__input::placeholder,
.form-group__textarea::placeholder {
  color: var(--text-light);
}

.form-group__input:focus,
.form-group__textarea:focus {
  border-color: var(--emerald-700);
  background-color: var(--white);
}

.form-group__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__success {
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background-color: var(--emerald-900);
  color: var(--cream-100);
  border-radius: 10px;
  font-size: 0.9375rem;
  margin-top: 1rem;
}

.contact__success.show {
  display: flex;
}

/* --- Footer --- */
.footer {
  background-color: var(--emerald-900);
  padding: 4rem 2rem 2rem;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250, 248, 244, 0.1);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__brand .nav__logo-mark {
  width: 44px;
  height: 44px;
  font-size: 1.25rem;
}

.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream-100);
}

.footer__tagline {
  font-size: 0.875rem;
  color: rgba(250, 248, 244, 0.45);
  margin-top: 0.25rem;
}

.footer__links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(250, 248, 244, 0.6);
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--cream-100);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy,
.footer__address {
  font-size: 0.8125rem;
  color: rgba(250, 248, 244, 0.35);
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(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; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero__grid {
    gap: 3rem;
  }
  
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero__img--float {
    left: -1.5rem;
    bottom: -1.5rem;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }
  
  .nav__toggle {
    display: flex;
  }
  
  .hero {
    padding-top: 72px;
    padding-bottom: 2rem;
  }
  
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero__content {
    max-width: 100%;
  }
  
  .hero__image-col {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .hero__img--float {
    left: -1rem;
    bottom: -1rem;
    width: 55%;
  }
  
  .hero__badge {
    right: -0.5rem;
    top: 1rem;
  }
  
  .about {
    padding: 5rem 1.5rem;
  }
  
  .about__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .about__image {
    aspect-ratio: 4/3;
  }
  
  .products {
    padding: 4rem 1.5rem 6rem;
  }
  
  .products__grid {
    grid-template-columns: 1fr;
  }
  
  .features {
    padding: 5rem 1.5rem;
  }
  
  .features__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .feature {
    padding: 1.5rem;
  }
  
  .visit {
    padding: 5rem 1.5rem;
  }
  
  .visit__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact {
    padding: 5rem 1.5rem;
  }
  
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact__form {
    padding: 1.75rem;
  }
  
  .footer__top {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer__links {
    gap: 1.25rem;
  }
  
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .hero__scroll {
    display: none;
  }
  
  .about__stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }
  
  .nav__inner {
    padding: 0 1.25rem;
  }
  
  .hero {
    padding: 64px 1.25rem 2rem;
  }
  
  .hero__actions {
    flex-direction: column;
  }
  
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero__img--float {
    display: none;
  }
  
  .hero__badge {
    right: 0;
  }
}
