/* ============================================
   AMAHI HOME — Premium Stylesheet
   ============================================ */

/* --- CSS VARIABLES --- */
:root {
  --color-bg: #FAF8F5;
  --color-bg-warm: #F5F0E8;
  --color-bg-sand: #EDE8DE;
  --color-text: #2C2C2C;
  --color-text-light: #6B6560;
  --color-accent: #B8704B;
  --color-accent-dark: #9A5C3A;
  --color-indigo: #2E3A5C;
  --color-indigo-dark: #1E2840;
  --color-border: #D4CFC7;
  --color-white: #FFFFFF;
  --color-charcoal: #1A1A1A;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', -apple-system, Helvetica Neue, sans-serif;

  --max-width: 1280px;
  --section-pad: 120px;
  --section-pad-mobile: 64px;
}

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

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

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}

/* --- FADE-IN ANIMATION --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.product-card.fade-in:nth-child(2) { transition-delay: 0.1s; }
.product-card.fade-in:nth-child(3) { transition-delay: 0.2s; }
.product-card.fade-in:nth-child(4) { transition-delay: 0.3s; }
.product-card.fade-in:nth-child(5) { transition-delay: 0.1s; }
.product-card.fade-in:nth-child(6) { transition-delay: 0.2s; }
.product-card.fade-in:nth-child(7) { transition-delay: 0.3s; }
.product-card.fade-in:nth-child(8) { transition-delay: 0.4s; }

.process-step.fade-in:nth-child(2) { transition-delay: 0.15s; }
.process-step.fade-in:nth-child(3) { transition-delay: 0.3s; }
.process-step.fade-in:nth-child(4) { transition-delay: 0.45s; }

.value-item.fade-in:nth-child(2) { transition-delay: 0.1s; }
.value-item.fade-in:nth-child(3) { transition-delay: 0.2s; }
.value-item.fade-in:nth-child(4) { transition-delay: 0.3s; }


/* --- BUTTONS --- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--color-charcoal);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: #333333;
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-text);
}

.btn-secondary:hover {
  background-color: var(--color-text);
  color: var(--color-bg);
}

.btn-light {
  background-color: var(--color-white);
  color: var(--color-charcoal);
}

.btn-light:hover {
  background-color: var(--color-bg-warm);
}

.btn-accent {
  background-color: var(--color-bg-warm);
  color: var(--color-charcoal);
  border-color: var(--color-bg-warm);
}

.btn-accent:hover {
  background-color: var(--color-bg-sand);
  border-color: var(--color-bg-sand);
}


/* --- ANNOUNCEMENT BAR --- */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  background-color: var(--color-charcoal);
  color: var(--color-white);
  text-align: center;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  transition: transform 0.4s ease;
}

.announcement-bar.hidden {
  transform: translateY(-100%);
}

/* --- NAVIGATION --- */
.site-header {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease, top 0.4s ease;
  background-color: rgba(26, 26, 26, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.site-header.scrolled {
  top: 0;
  background-color: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-border);
}

.site-header.scrolled .nav-links a {
  color: var(--color-text) !important;
}

.site-header.scrolled .logo-img {
  filter: brightness(0);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  height: 80px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
  flex: 1;
}

.nav-left {
  justify-content: flex-start;
}

.nav-right {
  justify-content: flex-end;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.6;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 32px;
}

.logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease;
}

.nav-spacer {
  flex: 1;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--color-white);
  transition: background-color 0.4s ease;
}

.site-header.scrolled .mobile-menu-toggle span {
  background-color: var(--color-text);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: var(--color-bg);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--color-text);
  cursor: pointer;
}

.mobile-nav-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  margin-bottom: 40px;
  filter: brightness(0);
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobile-nav-links a {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--color-text);
}

/* --- HERO --- */
.hero {
  position: relative;
  margin-top: 116px;
  height: calc(100vh - 116px);
  min-height: 540px;
  max-height: 900px;
  overflow: hidden;
  background-color: var(--color-charcoal);
}

.hero-image {
  position: absolute;
  inset: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Subtle Ken Burns animation */
.hero-image img.ken-burns {
  animation: kenBurns 12s ease forwards;
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.04); }
}

/* Gradient overlay — bottom-heavy for text readability */
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.25) 45%,
    rgba(0, 0, 0, 0.0) 75%
  );
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 0 64px 60px;
  color: var(--color-white);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  max-width: 800px;
}

.hero-sub {
  font-size: 20px;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 36px;
  max-width: 560px;
  font-weight: 300;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Outline button for hero */
.btn-outline {
  background-color: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-charcoal);
  border-color: var(--color-white);
}

/* --- TRUST BAR --- */
.trust-bar {
  background-color: var(--color-bg-warm);
  padding: 18px 40px;
  border-bottom: 1px solid var(--color-border);
}

.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-bar span {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-light);
  font-weight: 500;
}

.trust-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-border);
  flex-shrink: 0;
}

/* --- SECTION UTILITIES --- */
.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section-container-narrow {
  max-width: 800px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-text);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  font-family: var(--font-serif);
  font-style: italic;
}

.section-body {
  font-size: 15px;
  color: var(--color-text-light);
  max-width: 640px;
  margin: 16px auto 0;
  line-height: 1.8;
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.section-label-light {
  color: rgba(255, 255, 255, 0.7);
}

.section-cta {
  text-align: center;
  margin-top: 56px;
}

/* --- COLLECTION / PRODUCT GRID --- */
.collection {
  padding: var(--section-pad) 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  display: block;
  text-decoration: none;
  color: var(--color-text);
  cursor: zoom-in;
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 16px;
  background-color: var(--color-bg-sand);
}

.product-image-wrap img {
  transition: transform 0.6s ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.04);
}

.product-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s ease;
  pointer-events: none;
}

.product-card:hover .product-image-wrap::after {
  background: rgba(0,0,0,0.18);
}



/* --- ORIGIN STORY --- */
.story {
  padding: var(--section-pad) 0;
  background-color: var(--color-bg-warm);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  align-items: center;
}

.story-text h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 32px;
}

.story-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.story-text .btn-text {
  margin-top: 16px;
}

.story-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

/* --- VALUES --- */
.values {
  padding: 80px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  text-align: center;
}

.value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--color-accent);
}

.value-icon svg {
  width: 100%;
  height: 100%;
}

.value-item h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.value-item p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* --- PROCESS / HOW IT'S MADE --- */
.process {
  padding: var(--section-pad) 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.process-grid.process-grid-3 {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 32px;
}

.process-grid-3 .process-step {
  display: flex !important;
  flex-direction: column !important;
  grid-template-columns: none !important;
}

.process-grid-3 .process-image {
  aspect-ratio: 4 / 5 !important;
  margin-bottom: 24px !important;
}

.process-step {
  display: flex;
  flex-direction: column;
}

.process-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 24px;
}

.process-number {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 300;
  color: var(--color-border);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.process-text h3 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.process-text p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* --- IMAGE BREAK --- */
.image-break {
  height: 50vh;
  min-height: 320px;
  max-height: 500px;
  overflow: hidden;
}

.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

/* --- TRADE PROGRAM --- */
.trade {
  background-color: var(--color-charcoal);
  padding: var(--section-pad) 40px;
  text-align: center;
  color: var(--color-white);
}

.trade-inner {
  max-width: 900px;
  margin: 0 auto;
}

.trade h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.trade p {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  opacity: 0.82;
  margin-bottom: 0;
}

.trade-intro {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.trade-cards {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 48px;
  margin-top: 48px;
  margin-bottom: 56px;
  text-align: left;
}

.trade-card {
  background: none;
  border: none;
  padding: 0;
}

.trade-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--color-white);
  margin-bottom: 12px;
}

.trade-card p {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  opacity: 0.72;
  margin-bottom: 0;
  line-height: 1.7;
}


/* --- FAQ --- */
.faq {
  padding: var(--section-pad) 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-item summary {
  padding: 24px 0;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-item summary:hover {
  color: var(--color-accent);
}

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--color-text-light);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-answer {
  padding: 0 0 24px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--color-accent);
  border-bottom: 1px solid var(--color-accent);
}


/* --- FOOTER --- */
.site-footer {
  background-color: var(--color-charcoal);
  color: var(--color-white);
  padding: 80px 40px 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 80px;
  align-items: start;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  font-family: var(--font-serif);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--color-white);
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

/* --- LIGHTBOX --- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.93);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 80vw;
  max-height: 85vh;
  object-fit: contain;
  cursor: default;
  transition: opacity 0.15s ease;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.lightbox-close:hover {
  color: var(--color-white);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.18);
  color: var(--color-white);
}

.lightbox-prev { left: 28px; }
.lightbox-next { right: 28px; }

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.45);
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.08em;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }

  .process-grid.process-grid-3 {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px;
  }

  .story-grid {
    gap: 48px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 80px;
  }

  /* Mobile nav */
  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-nav-overlay {
    display: flex;
  }

  .nav-container {
    justify-content: space-between;
  }

  .logo {
    padding: 0;
  }

  .site-header {
    padding: 0 20px;
  }

  /* Hero */
  .hero {
    height: calc(100svh - 116px);
    min-height: 480px;
  }

  .hero-content {
    padding: 0 24px 40px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-sub {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }

  .hero-ctas .btn {
    text-align: center;
  }

  /* Product grid */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .section-container {
    padding: 0 24px;
  }

  /* Story */
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }

  .story-image {
    order: -1;
    aspect-ratio: 16 / 10;
  }

  /* Values */
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

  /* Process */
  .process-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .process-grid.process-grid-3 {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px;
  }

  .process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
  }

  .process-image {
    margin-bottom: 0;
    aspect-ratio: 1;
  }

  /* Trade */
  .trade {
    padding: 80px 24px;
  }

  /* Footer */
  .site-footer {
    padding: 56px 24px 0;
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  /* Trust bar */
  .trust-bar {
    padding: 14px 20px;
  }

  .trust-bar-inner {
    gap: 12px;
  }

  .trust-bar span {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 32px;
  }

  .product-grid {
    gap: 12px;
  }

  .product-info h3 {
    font-size: 13px;
  }

  .product-price {
    font-size: 13px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .process-step {
    grid-template-columns: 1fr;
  }

  .process-image {
    aspect-ratio: 16 / 10;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .btn {
    padding: 14px 32px;
    font-size: 12px;
  }
}
