/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --emerald-900: #042f23;
  --emerald-800: #064e3b;
  --emerald-700: #065f46;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --emerald-400: #34d399;
  --cream-50: #fafaf5;
  --cream-100: #f5f5ee;
  --cream-200: #e8e8dc;
  --cream-300: #d4d4c4;
  --neutral-800: #1c1917;
  --neutral-700: #292524;
  --neutral-600: #44403c;
  --neutral-500: #57534e;
  --neutral-400: #78716c;
  --neutral-300: #a8a29e;
  --neutral-200: #d6d3cd;
  --neutral-100: #e7e5e0;
  --white: #ffffff;

  --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 16px rgba(0,0,0,0.08), 0 8px 24px rgba(0,0,0,0.1);
  --shadow-xl: 0 16px 32px rgba(0,0,0,0.1), 0 16px 48px rgba(0,0,0,0.12);

  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--font-sans);
  color: var(--neutral-800);
  background: var(--cream-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  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;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* ===== TYPOGRAPHY ===== */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald-600);
  margin-bottom: var(--space-md);
}

.section-eyebrow--light {
  color: var(--emerald-400);
}

.section-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald-500);
  display: inline-block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--neutral-800);
  margin-bottom: var(--space-xl);
}

.section-title--light {
  color: var(--white);
}

.text-accent {
  color: var(--emerald-600);
}

.text-accent-light {
  color: var(--emerald-400);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn--primary {
  background: var(--emerald-700);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(6, 79, 59, 0.3);
}

.btn--primary:hover {
  background: var(--emerald-600);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(6, 79, 59, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--neutral-700);
  border: 1.5px solid var(--neutral-300);
}

.btn--ghost:hover {
  border-color: var(--emerald-600);
  color: var(--emerald-700);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-200);
  transition: box-shadow var(--transition-base);
}

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

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--neutral-800);
}

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

.nav__logo-text {
  font-family: var(--font-serif);
  font-weight: 600;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav__link {
  padding: 0.5rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--neutral-600);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav__link:hover {
  color: var(--emerald-700);
  background: rgba(6, 95, 70, 0.06);
}

.nav__link--cta {
  background: var(--emerald-700);
  color: var(--white) !important;
  margin-left: var(--space-sm);
}

.nav__link--cta:hover {
  background: var(--emerald-600);
}

.nav__menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--neutral-700);
  transition: background var(--transition-fast);
}

.nav__menu-btn:hover {
  background: var(--cream-200);
}

/* Mobile menu overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(4, 47, 35, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu-overlay__inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: var(--cream-50);
  padding: 5rem var(--space-xl) var(--space-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}

.menu-overlay.active .menu-overlay__inner {
  transform: translateX(0);
}

.menu-overlay__link {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--neutral-700);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--cream-200);
  transition: color var(--transition-fast);
}

.menu-overlay__link:hover {
  color: var(--emerald-700);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--cream-50);
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(6, 95, 70, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero__grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald-600);
  margin-bottom: var(--space-lg);
}

.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald-500);
  display: inline-block;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--neutral-800);
  margin-bottom: var(--space-xl);
  max-width: 540px;
}

.hero__lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--neutral-600);
  max-width: 480px;
  margin-bottom: var(--space-2xl);
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--neutral-200);
}

.hero__stat {
  display: flex;
  flex-direction: column;
}

.hero__stat-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neutral-800);
  line-height: 1.2;
}

.hero__stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--neutral-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--neutral-200);
}

/* Hero image stack */
.hero__right {
  position: relative;
}

.hero__img-stack {
  position: relative;
  height: 600px;
}

.hero__img {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.hero__img--main {
  width: 75%;
  height: 80%;
  top: 0;
  right: 0;
}

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

.hero__img--accent {
  width: 55%;
  height: 45%;
  bottom: 5%;
  left: 0;
  border: 4px solid var(--cream-50);
}

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

.hero__img--badge {
  width: auto;
  height: auto;
  bottom: 38%;
  left: 40%;
  transform: translateX(-50%);
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--emerald-700);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}

/* ===== ABOUT ===== */
.about {
  padding: var(--space-4xl) 0;
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about__text {
  max-width: 520px;
}

.about__copy {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--neutral-600);
  margin-bottom: var(--space-lg);
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.about__feature {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.about__feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(6, 95, 70, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-700);
}

.about__feature strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 2px;
}

.about__feature span {
  font-size: 0.88rem;
  color: var(--neutral-500);
  line-height: 1.5;
}

.about__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

/* ===== PRODUCTS ===== */
.products {
  padding: var(--space-4xl) 0;
  background: var(--cream-50);
}

.products__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto var(--space-3xl);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-slow);
  border: 1px solid var(--cream-200);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--emerald-400);
}

.product-card__img {
  height: 200px;
  overflow: hidden;
}

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

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

.product-card__body {
  padding: var(--space-lg);
}

.product-card__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: var(--space-sm);
}

.product-card__desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--neutral-500);
}

/* ===== WHY US ===== */
.why-us {
  padding: var(--space-4xl) 0;
  background: var(--emerald-900);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 90%, rgba(16, 185, 129, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(52, 211, 153, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.why-us .container {
  position: relative;
  z-index: 1;
}

.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.why-us__text {
  max-width: 480px;
}

.why-us__copy {
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
}

.why-us__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  transition: all var(--transition-base);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(52, 211, 153, 0.3);
  transform: translateY(-2px);
}

.why-card__num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(52, 211, 153, 0.25);
  line-height: 1;
  margin-bottom: var(--space-md);
  display: block;
}

.why-card__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.why-card__copy {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== VISIT ===== */
.visit {
  padding: var(--space-4xl) 0;
  background: var(--white);
}

.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: stretch;
}

.visit__info {
  max-width: 500px;
}

.visit__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.visit__detail {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.visit__detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(6, 95, 70, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-700);
}

.visit__detail strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 2px;
}

.visit__detail span,
.visit__detail a {
  font-size: 0.88rem;
  color: var(--neutral-500);
  line-height: 1.6;
}

.visit__detail a:hover {
  color: var(--emerald-600);
  text-decoration: underline;
}

.visit__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 400px;
}

.visit__map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

/* ===== CONTACT ===== */
.contact {
  padding: var(--space-4xl) 0;
  background: var(--cream-100);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact__text {
  max-width: 440px;
}

.contact__copy {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--neutral-600);
  margin-bottom: var(--space-xl);
}

.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-200);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--neutral-700);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact__optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--neutral-400);
}

.contact__input,
.contact__textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-sm);
  background: var(--cream-50);
  color: var(--neutral-800);
  transition: all var(--transition-fast);
  outline: none;
  width: 100%;
}

.contact__input:focus,
.contact__textarea:focus {
  border-color: var(--emerald-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.contact__input::placeholder,
.contact__textarea::placeholder {
  color: var(--neutral-400);
}

.contact__textarea {
  resize: vertical;
  min-height: 100px;
}

.contact__success {
  display: none;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-xl);
  background: rgba(6, 95, 70, 0.06);
  border: 1px solid rgba(6, 95, 70, 0.15);
  border-radius: var(--radius-md);
  color: var(--emerald-800);
  text-align: center;
  animation: fadeIn 0.3s ease;
}

.contact__success.show {
  display: flex;
}

.contact__success svg {
  margin: 0 auto var(--space-sm);
  color: var(--emerald-600);
}

.contact__success strong {
  font-size: 1rem;
}

.contact__success span {
  font-size: 0.88rem;
  color: var(--neutral-600);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--neutral-800);
  color: var(--white);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer__brand {
  max-width: 280px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer__tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

.footer__nav,
.footer__contact,
.footer__hours {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__nav strong,
.footer__contact strong,
.footer__hours strong {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--space-sm);
}

.footer__nav a,
.footer__contact a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer__nav a:hover,
.footer__contact a:hover {
  color: var(--emerald-400);
}

.footer__contact span,
.footer__hours span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.footer__bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer__bottom span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ===== SCROLL REVEAL (below-fold only) ===== */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
}

@media (prefers-reduced-motion: no-preference) {
  .reveal[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
  }
}

.reveal.visible[data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__grid {
    gap: var(--space-2xl);
  }

  .hero__img-stack {
    height: 480px;
  }

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

  .why-us__inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .why-us__text {
    max-width: 100%;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__menu-btn {
    display: flex;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    padding: var(--space-2xl) var(--space-xl);
    gap: var(--space-2xl);
  }

  .hero__headline {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .hero__right {
    order: -1;
  }

  .hero__img-stack {
    height: 360px;
  }

  .hero__stats {
    gap: var(--space-md);
  }

  .about__grid,
  .visit__grid,
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .about__text {
    max-width: 100%;
  }

  .products__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .why-us__cards {
    grid-template-columns: 1fr;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer__brand {
    max-width: 100%;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    justify-content: center;
  }

  .hero__img-stack {
    height: 300px;
  }

  .hero__img--main {
    width: 80%;
    height: 75%;
  }

  .hero__img--accent {
    width: 55%;
    height: 40%;
  }

  .hero__img--badge {
    left: 35%;
    font-size: 0.78rem;
    padding: 0.6rem 1rem;
  }
}
