/* ============================================================
   DESIGN TOKENS — all values flow from here
   ============================================================ */
:root {
  /* Colour */
  --color-black:      #0a0a0a;
  --color-gray-dark:  #333333;
  --color-gray-mid:   #888888;
  --color-gray-light: #d9d9d9;
  --color-off-white:  #f7f7f7;
  --color-white:      #ffffff;

  /* Typography scale */
  --text-display: clamp(40px, 8vw, 72px);
  --text-h1:      clamp(28px, 5vw, 48px);
  --text-h2:      clamp(22px, 3.5vw, 40px);
  --text-h3:      18px;
  --text-body:    16px;
  --text-label:   11px;

  /* Font weights */
  --weight-thin:    200;
  --weight-light:   300;
  --weight-regular: 400;
  --weight-medium:  500;

  /* Spacing */
  --section-gap:        120px;
  --section-gap-mobile: 64px;
  --container-pad:      clamp(16px, 4vw, 48px);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--color-black);
  background-color: var(--color-white);
}

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

/* Typography */
.section-eyebrow {
  font-size: var(--text-label);
  font-weight: var(--weight-medium);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gray-mid);
  text-align: center;
  margin-bottom: 12px;
}

.section-title {
  font-size: var(--text-h2);
  font-weight: var(--weight-light);
  letter-spacing: -0.5px;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--color-black);
}

.section-subtitle {
  font-size: var(--text-body);
  color: var(--color-gray-mid);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.025em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
}

.btn-primary {
  background-color: #fff;
  color: #000;
}

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

.btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
  background-color: #fff;
  color: #000;
}

.btn-dark {
  background-color: #000;
  color: #fff;
}

.btn-dark:hover {
  background-color: #333;
}

.btn-light {
  background-color: #fff;
  color: #000;
}

.btn-light:hover {
  background-color: #f5f5f5;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--color-white);
  z-index: 1000;
  border-bottom: 1px solid var(--color-gray-light);
}

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

.logo {
  font-size: var(--text-label);
  font-weight: var(--weight-thin);
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--color-black);
  text-decoration: none;
}

.logo-icon {
  width: 32px;
  height: 32px;
  color: var(--color-black);
}

.logo-text {
  font-weight: 400;
}

.desktop-nav {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: var(--text-label);
  font-weight: var(--weight-medium);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-gray-dark);
  text-decoration: none;
  transition: color 0.2s ease, border-bottom 0.2s ease, padding-bottom 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-black);
  border-bottom: 1px solid var(--color-black);
  padding-bottom: 2px;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-icon-btn {
  background: none;
  border: none;
  font-size: 1.125rem;
  color: var(--color-black);
  cursor: pointer;
  padding: 12px;
  position: relative;
  transition: color 0.2s ease;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-icon-btn:hover {
  color: var(--color-gray-mid);
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: var(--color-black);
  color: var(--color-white);
  font-size: 0.75rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--color-black);
  cursor: pointer;
  padding: 12px;
  min-height: 44px;
  min-width: 44px;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-gray-light);
}

.mobile-menu-content {
  padding: 24px var(--container-pad);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu-content a {
  font-size: var(--text-label);
  font-weight: var(--weight-medium);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-black);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-gray-light);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mobile-menu-content a:last-child {
  border-bottom: none;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-color: var(--color-black);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: left;
  color: var(--color-white);
  padding: clamp(32px, 6vw, 80px);
  max-width: 700px;
}

.hero-eyebrow {
  font-size: var(--text-label);
  font-weight: var(--weight-medium);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
}

.hero-title {
  font-size: var(--text-display);
  font-weight: var(--weight-thin);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 14px;
  font-weight: var(--weight-light);
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 1s ease forwards;
}

/* Featured Collections */
.featured-collections {
  padding: var(--section-gap) 0;
  background-color: var(--color-white);
}

.section-header {
  margin-bottom: 4rem;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.collection-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-gray-light);
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.collection-card:hover {
  border-color: var(--color-black);
  transform: none;
}

.collection-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.collection-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.collection-card:hover .collection-image img {
  transform: scale(1.05);
}

.collection-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease;
}

.collection-card:hover .collection-overlay {
  background-color: rgba(0, 0, 0, 0.2);
}

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

.collection-title {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.025em;
  margin-bottom: 0.5rem;
}

.collection-subtitle {
  color: #666;
  margin-bottom: 1rem;
}

.collection-btn {
  background: none;
  border: none;
  font-size: 1rem;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto;
  transition: color 0.3s ease;
}

.collection-btn:hover {
  color: #666;
  text-decoration: underline;
}

/* Brand Story */
.brand-story {
  padding: var(--section-gap) 0;
  background-color: var(--color-off-white);
}

.brand-story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.brand-story-text {
  max-width: 500px;
}

.brand-story-text .section-title {
  text-align: left;
  margin-bottom: 1.5rem;
}

.brand-story-description {
  font-size: 1.125rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.brand-story-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Video Campaign */
.video-campaign {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-background {
  position: absolute;
  inset: 0;
  background-color: #000;
}

.video-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}

.video-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
}

.play-btn {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  margin: 0 auto 2rem;
  transition: all 0.3s ease;
}

.play-btn:hover {
  background-color: #fff;
  color: #000;
}

.video-info {
  position: absolute;
  bottom: -100px;
  left: 0;
}

.video-title {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.025em;
  margin-bottom: 0.5rem;
}

.video-subtitle {
  font-size: 1rem;
  opacity: 0.9;
}

/* Testimonials */
.testimonials {
  padding: var(--section-gap) 0;
  background-color: var(--color-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  padding: 2.5rem;
  border: 1px solid var(--color-gray-light);
  background: var(--color-white);
  text-align: center;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: #000;
}

.testimonial-quote {
  font-size: 1.125rem;
  font-style: italic;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.author-name {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.author-title {
  color: #666;
  font-size: 0.875rem;
}

/* Newsletter */
.newsletter {
  padding: 5rem 0;
  background-color: #000;
  color: #fff;
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-title {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.newsletter-description {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-input {
  padding: 14px 20px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  font-size: var(--text-body);
  color: var(--color-white);
  outline: none;
  flex: 1;
  min-width: 240px;
}

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

.newsletter-input:focus {
  border-bottom-color: var(--color-white);
}

/* Footer */
.footer {
  background-color: #000;
  color: #fff;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
  width: 32px;
  height: 32px;
  color: #fff;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.social-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #fff;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.025em;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

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

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  :root {
    --section-gap: var(--section-gap-mobile);
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-menu.active {
    display: block;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-content {
    padding: 32px 20px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero-buttons .btn {
    text-align: center;
    justify-content: center;
  }

  .section-title {
    font-size: 2rem;
  }

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

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

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

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

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .video-info {
    position: static;
    margin-top: 2rem;
  }

  .filters-container {
    flex-direction: column;
  }

  .filter-select,
  .sort-select {
    width: 100%;
  }
}

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

  .hero-title {
    font-size: 2rem;
  }

  .newsletter-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

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

/* About Page Styles */
.about-hero {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: calc(56px + 80px) 0 80px;
  text-align: center;
}

.about-hero .hero-title {
  font-size: var(--text-h1);
  font-weight: var(--weight-thin);
  letter-spacing: -1px;
  color: var(--color-white);
  margin-bottom: 16px;
}

.about-hero .hero-subtitle {
  font-size: var(--text-body);
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact-hero {
  padding: 8rem 0 4rem;
  margin-top: 64px;
  text-align: center;
}

.about-hero-content,
.contact-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.brand-story-detailed {
  padding: 5rem 0;
  background-color: #f9f9f9;
}

.brand-story-detailed .brand-story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.brand-story-detailed .section-title {
  text-align: left;
  margin-bottom: 2rem;
}

.story-paragraph {
  font-size: 1.125rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.values-section {
  padding: 5rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.value-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--color-gray-light);
  text-align: center;
}

.value-icon {
  font-size: 1.5rem;
  color: var(--color-black);
  margin-bottom: 1.25rem;
}

.value-title {
  font-size: var(--text-h3);
  font-weight: var(--weight-regular);
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
  color: var(--color-black);
}

.value-description {
  font-size: var(--text-body);
  color: var(--color-gray-mid);
  line-height: 1.7;
}

.team-section {
  padding: 5rem 0;
  background-color: #f9f9f9;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.team-member {
  text-align: center;
}

.member-image {
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 8px;
}

.member-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.member-name {
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.025em;
  margin-bottom: 0.5rem;
}

.member-role {
  color: #666;
}

.sustainability-section {
  padding: 5rem 0;
}

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

.sustainability-text .section-title {
  text-align: left;
  margin-bottom: 2rem;
}

.sustainability-paragraph {
  font-size: 1.125rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.sustainability-list {
  list-style: none;
  padding: 0;
}

.sustainability-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: #555;
}

.sustainability-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #000;
  border-radius: 50%;
  margin-right: 1rem;
}

/* Contact Page Styles */
.contact-section {
  padding: 5rem 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form-container {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-title {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.025em;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #333;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #000;
}

.contact-form .form-group label {
  display: block;
  font-size: 10px;
  font-weight: var(--weight-medium);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gray-mid);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--color-gray-light);
  border-radius: 0;
  padding: 10px 0;
  font-size: var(--text-body);
  font-family: "Inter", sans-serif;
  color: var(--color-black);
  background: transparent;
  outline: none;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--color-black);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--color-gray-mid);
}

.contact-info {
  padding: 2rem 0;
}

.info-title {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.025em;
  margin-bottom: 1.5rem;
}

.info-description {
  font-size: 1.125rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 2rem;
}

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

.contact-item {
  display: flex;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.25rem;
  color: #000;
  margin-top: 0.25rem;
}

.contact-text h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact-text p {
  color: #666;
  line-height: 1.5;
}

.faq-section {
  padding: 5rem 0;
  background-color: #f9f9f9;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f9f9f9;
}

.faq-question h3 {
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0;
}

.faq-question i {
  font-size: 1rem;
  color: #666;
  transition: transform 0.3s ease;
}

.faq-icon {
  transition: transform 0.3s ease;
  color: var(--color-black);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}


/* Responsive Design for Additional Pages */
@media (max-width: 768px) {
  .brand-story-detailed .brand-story-content,
  .sustainability-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .brand-story-detailed .section-title,
  .sustainability-text .section-title {
    text-align: center;
  }

  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .contact-details {
    gap: 1.5rem;
  }
}
