/* АнтиКогольні напої — дизайн-система (органіка, земляні тони, UA) */
:root {
  --emerald: #0d5c4b;
  --emerald-light: #117a63;
  --teal: #1a6b5c;
  --olive: #4a6741;
  --olive-bg: #5c7a52;
  --chocolate: #3d2914;
  --chocolate-dark: #2d1f0f;
  --beige: #e8dcc8;
  --beige-light: #f5f0e6;
  --sand: #c4a574;
  --white: #ffffff;
  --text-light: rgba(255, 255, 255, 0.95);
  --text-muted: rgba(255, 255, 255, 0.85);
  --radius: 20px;
  --radius-lg: 28px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text-light);
  background: var(--olive-bg);
  line-height: 1.5;
  min-height: 100vh;
}

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

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  background: rgba(13, 92, 75, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  gap: 1.5rem;
}

.nav a {
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s;
}

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

/* Hero */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-left {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal) 0%, var(--emerald) 50%);
  clip-path: polygon(0 0, 85% 0, 55% 100%, 0 100%);
  z-index: 0;
}

.hero-bg-right {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--chocolate-dark) 0%, var(--chocolate) 60%);
  clip-path: polygon(85% 0, 100% 0, 100% 100%, 55% 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin-left: clamp(2rem, 8vw, 4rem);
  padding: 2rem 0;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--beige);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero .lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 420px;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: var(--font);
}

.btn-primary {
  background: var(--beige);
  color: var(--chocolate-dark);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

/* Sections common */
.section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}

/* Features block */
.features-section {
  background: var(--olive-bg);
  padding: 4rem 2rem;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--emerald);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 3rem 2rem;
}

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

.feature-card {
  text-align: center;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Design showcase */
.design-section {
  background: var(--olive-bg);
  padding: 4rem 2rem;
}

.design-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.design-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 1;
  background: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 1.5rem;
  text-align: center;
}

.design-card.img {
  background: var(--chocolate);
  padding: 0;
}

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

/* Specs */
.specs-section {
  background: linear-gradient(180deg, var(--olive-bg) 0%, var(--emerald) 100%);
  padding: 4rem 2rem;
}

.specs-container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.specs-list {
  list-style: none;
}

.specs-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-light);
  font-size: 1rem;
}

.specs-list li:last-child {
  border-bottom: none;
}

.specs-list strong {
  color: var(--beige);
  margin-right: 1rem;
}

/* Product line (model range) */
.products-section {
  background: var(--olive-bg);
  padding: 4rem 2rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 280px;
}

.product-card.green {
  background: var(--olive);
}

.product-card.brown {
  background: var(--chocolate);
}

.product-card.beige {
  background: var(--sand);
  color: var(--chocolate-dark);
}

.product-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.product-card.beige h3 {
  color: var(--chocolate-dark);
}

.product-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 1rem;
}

.product-card.beige p {
  color: rgba(45, 31, 15, 0.85);
}

.product-card .btn {
  margin-top: auto;
}

/* Product category heading */
.product-category-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--beige);
  margin: 3rem 0 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  grid-column: 1 / -1;
}

.product-category-title:first-child {
  margin-top: 0;
}

/* Product card with image */
.product-card.has-img {
  padding: 0;
  min-height: 320px;
  overflow: hidden;
}

.product-card.has-img .product-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.product-card.has-img .product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card.has-img .product-card-body {
  padding: 1.25rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-card.has-img h3 {
  margin-bottom: 0.35rem;
}

.product-card.has-img p {
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
}

/* Eco production block */
.eco-section {
  padding: 5rem 2rem;
  background: var(--olive);
}

.eco-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.eco-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.eco-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.eco-photos .eco-photo-main {
  grid-column: span 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16/10;
}

.eco-photos .eco-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eco-photos .eco-photo-sub {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 1;
}

.eco-photos .eco-photo-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eco-content h2 {
  margin-bottom: 1rem;
}

.eco-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.65;
}

.eco-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.eco-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-light);
  font-size: 0.98rem;
}

.eco-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--beige);
  font-weight: 700;
}

/* Story extended: two columns of text + second image */
.story-extended {
  padding: 3rem 2rem 5rem;
  background: var(--chocolate-dark);
}

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

.story-extended .story-content p {
  font-size: 1rem;
}

/* Story / About */
.story-section {
  padding: 5rem 2rem;
  background: var(--chocolate);
}

.story-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}

.story-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-content .section-title {
  text-align: left;
  margin-bottom: 1rem;
}

.story-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.story-content .btn {
  margin-top: 0.5rem;
}

/* Stats strip */
.stats-section {
  padding: 3rem 2rem;
  background: var(--emerald);
}

.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--beige);
  line-height: 1.2;
  display: block;
}

.stat-item .stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Gallery (extended) */
.gallery-section {
  background: var(--chocolate-dark);
  padding: 4rem 2rem;
}

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

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-soft);
}

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

.gallery-item.span-2 {
  grid-column: span 2;
  aspect-ratio: auto;
  min-height: 240px;
}

/* Testimonials */
.testimonials-section {
  padding: 5rem 2rem;
  background: var(--olive-bg);
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--emerald);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.testimonial-card .quote {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card .author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  object-fit: cover;
}

.testimonial-card .author-name {
  font-weight: 600;
  color: var(--white);
}

.testimonial-card .author-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Process / How we work */
.process-section {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, var(--olive-bg) 0%, var(--teal) 100%);
}

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

.process-step {
  text-align: center;
}

.process-step .step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: var(--beige);
  color: var(--chocolate-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.process-step h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* FAQ */
.faq-section {
  padding: 5rem 2rem;
  background: var(--chocolate);
}

.faq-list {
  max-width: 720px;
  margin: 2rem auto 0;
}

.faq-item {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--white);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--beige);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item .faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* Newsletter */
.newsletter-section {
  padding: 4rem 2rem;
  background: var(--emerald);
  text-align: center;
}

.newsletter-section .section-title {
  margin-bottom: 0.75rem;
}

.newsletter-section p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 440px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font);
  font-size: 1rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .btn {
  flex-shrink: 0;
}

/* Press / Trust */
.press-section {
  padding: 3rem 2rem;
  background: var(--olive-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.press-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.press-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.press-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  align-items: center;
}

.press-logo {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 1.1rem;
}

/* CTA block */
.cta-section {
  padding: 4rem 2rem;
  text-align: center;
  background: var(--emerald);
}

.cta-section h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background: var(--chocolate-dark);
  padding: 4rem 2rem 2rem;
}

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

.footer-brand .logo {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 280px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--beige);
  margin-bottom: 1rem;
}

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

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
}

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

.footer-copy {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: var(--text-muted);
  font-size: 1.1rem;
}

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

/* Page common (policy, contact, checkout) */
.page {
  padding-top: 80px;
  min-height: 100vh;
  background: var(--olive-bg);
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.page h1 {
  font-size: 2.25rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.page p, .page li {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.page ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

/* Contact form */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: var(--font);
  font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--beige);
  box-shadow: 0 0 0 3px rgba(232, 220, 200, 0.2);
}

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

.form-group .required::after {
  content: " *";
  color: #f0a0a0;
}

/* Checkout */
.checkout-section {
  max-width: 640px;
  margin: 0 auto;
  background: var(--emerald);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.checkout-section h2 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.checkout-section .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group.error input,
.form-group.error textarea {
  border-color: #e57373;
}

.form-group .error-msg {
  font-size: 0.85rem;
  color: #ffabab;
  margin-top: 0.35rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    margin-left: auto;
    margin-right: auto;
  }

  .hero .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-bg-left {
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 100%);
  }

  .hero-bg-right {
    clip-path: polygon(0 45%, 100% 0, 100% 100%, 0 100%);
  }

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

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

  .checkout-section .form-row {
    grid-template-columns: 1fr;
  }

  .story-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-content .section-title {
    text-align: center;
  }

  .story-content {
    text-align: center;
  }

  .story-content .btn {
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .gallery-item.span-2 {
    grid-column: span 2;
  }

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

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

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

  .eco-photos {
    order: -1;
  }

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

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    min-width: 100%;
  }
}

@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    gap: 1rem;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .design-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

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

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

  .gallery-item.span-2 {
    grid-column: span 1;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    max-width: none;
  }

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

  .eco-photos {
    grid-template-columns: 1fr;
  }

  .eco-photos .eco-photo-main {
    grid-column: span 1;
  }
}
