/* CSS Reset and Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  height: 100%;
  overflow-x: hidden; /* Prevent horizontal overflow */
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #fbfaf3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

p {
  font-size: 1.25rem; /* Increased from 1.125rem */
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

/* Druk Font Family - Only Wide Super */
@font-face {
  font-family: 'Druk';
  src: url('/assets/fonts/Druk-Font-Family/Druk Wide Family/DrukWide-Super.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Headings */
h1, h2 {
  font-family: 'Druk', sans-serif;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.05em; /* Increased kerning for better readability */
  text-transform: uppercase;
}

h3, h4, h5, h6 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: normal; /* Reduced from 0.02em to normal */
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

h5 {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
}

h6 {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

/* Header Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease;
}

.header.scrolled {
  background-color: #3a5a40; /* Dark green when scrolled */
}

.nav__container {
  width: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px; /* Increased from 80px */
}

.nav__logo img {
  height: 52px; /* Increased from 32px */
  width: 52px; /* Set fixed width to match height */
}

.nav__logo--scrolled {
  display: none;
}

/* Logo when header is scrolled (dark background) */
.header.scrolled .nav__logo--desktop {
  display: none;
}

.header.scrolled .nav__logo--scrolled {
  display: block;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 0.25rem;
}

.nav__toggle-line {
  width: 24px;
  height: 2px;
  background-color: #1a1a1a;
  transition: all 0.3s ease;
}

.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(7px, -6px);
}

.nav__menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav__link {
  font-family: 'Inter', sans-serif;
  font-weight: 700; /* Changed from 500 to 700 for bold */
  font-size: 1rem; /* Increased from 0.875rem */
  color: #1a1a1a;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.nav__link:hover {
  color: #2d5a2d;
}

/* Navigation links when header is scrolled (dark background) */
.header.scrolled .nav__link {
  color: #ffffff; /* White text on dark background */
}

.header.scrolled .nav__link:hover {
  color: #f0f0f0; /* Light gray on hover */
}

/* Main Content */
.main {
  margin-top: 0; /* Remove padding between header and main */
}

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

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: -1;
}

.hero__content {
  text-align: center;
  color: white;
  z-index: 1;
}

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

.hero__title {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.9;
  letter-spacing: 0.08em; /* Increased kerning for better readability */
  margin-bottom: 1.5rem;
  color: #ffffff; /* White color */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__title-line {
  display: block;
  line-height: 0.8;
}

/* Hero Subtitle Section */
.hero-subtitle {
  padding: 0;
  background-color: #2c322d; /* Dark green background */
}

.hero-subtitle__container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 50/50 layout */
  gap: 0;
}

.hero-subtitle__content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
}

.hero-subtitle__text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  color: #ffffff; /* White text */
  line-height: 1.6;
  margin: 0;
}

.hero-subtitle__image {
  position: relative;
  overflow: hidden;
}

.hero-subtitle__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
}

/* Home Navigation Section */
.home-navigation {
  padding: 6rem 0;
  background-color: #fbfaf3;
}

.home-navigation__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.home-navigation__title {
  font-family: 'Druk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.home-navigation__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.home-navigation__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home-navigation__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.home-navigation__button--primary {
  background-color: #3a5a40;
  color: #ffffff;
}

.home-navigation__button--primary:hover {
  background-color: #2d5a2d;
  transform: translateY(-2px);
}

.home-navigation__button--secondary {
  background-color: transparent;
  color: #1a1a1a;
  border-color: #3a5a40;
}

.home-navigation__button--secondary:hover {
  background-color: #3a5a40;
  color: #ffffff;
  transform: translateY(-2px);
}

.home-navigation__button-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.home-navigation__button-arrow {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.home-navigation__button:hover .home-navigation__button-arrow {
  transform: translateX(4px);
}

.home-navigation__news-title {
  font-family: 'Druk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.home-navigation__news-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.home-navigation__news-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.home-navigation__news-item:hover {
  background-color: #ffffff;
  border-color: #3a5a40;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.home-navigation__news-date {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #3a5a40;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.home-navigation__news-title-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.4;
}

.home-navigation__news-link {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #3a5a40;
  text-decoration: none;
  transition: color 0.3s ease;
}

.home-navigation__news-link:hover {
  color: #2d5a2d;
}

.mission__text {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #4a4a4a;
  max-width: 600px;
  margin: 0 auto;
}

/* Page Header */
.page-header {
  padding: 6rem 0 4rem;
  background-color: #3a5a40; /* Dark green background */
  margin-top: 120px; /* Add space for fixed navigation */
}

.page-header__container {
  max-width: 1200px; /* Changed from width: 100% */
  margin: 0 auto; /* Center the container */
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 150px; /* Minimum height for desktop */
}

/* Article page header - single column */
.page-header--article .page-header__container {
  grid-template-columns: 1fr;
  text-align: center;
}

.page-header__title {
  font-size: clamp(2rem, 4vw, 3rem); /* Reduced from 2.5rem, 5vw, 4rem */
  color: #ffffff; /* White text */
  margin: 0;
}

.page-header__description {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #ffffff; /* White text */
  line-height: 1.6;
  margin: 0;
  opacity: 0.9; /* Slightly transparent for hierarchy */
}

/* Brands Section */
.brands {
  padding: 4rem 0 8rem;
}

.brands__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.brands__featured {
  margin-bottom: 6rem;
}

.brands__section {
  margin-bottom: 6rem; /* Increased from 4rem to 6rem */
}

.brands__section-title {
  font-family: 'Druk', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

/* Seed Retailers section - 2 columns */
.brands__section:first-of-type .brands__grid {
  grid-template-columns: repeat(2, 1fr);
}

/* THCA section - 3 columns with first position filled */
.brands__section:last-of-type .brands__grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: none;
  margin: 0;
}

/* Ensure desktop grid layout */
@media (min-width: 769px) {
  .brands__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.brand-card {
  /* Removed background, border-radius, padding, box-shadow */
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand-card:hover {
  transform: translateY(-4px);
}

.brand-card__image {
  flex-shrink: 0;
}

.brand-card__logo {
  height: auto;
  max-width: 120px;
}

.brand-card__content {
  flex: 1;
}

.brand-card__title {
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.brand-card__title--druk {
  font-family: 'Druk', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.brand-card__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #666;
  font-style: italic;
  margin-bottom: 2rem; /* Increased from 1rem to 2rem */
}

.brand-card__description {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 2rem;
}

.brand-card__links {
  display: flex;
  gap: 1rem;
}

.brand-card__link {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: #2d5a2d;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border: 2px solid #2d5a2d;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.brand-card__link:hover {
  background-color: #2d5a2d;
  color: white;
}

/* Featured Brand Card */
.brand-card--featured {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 3rem 0;
}

.brand-card--featured .brand-card__content {
  flex: 1;
}

.brand-card__social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.brand-card__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #f0f0f0;
  border-radius: 50%;
  color: #666;
  transition: all 0.3s ease;
}

.brand-card__social-link:hover {
  background-color: #2d5a2d;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Compact Brand Cards */
.brand-card--compact {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 1.5rem;
  align-items: center; /* Ensure vertical alignment */
  height: 100%; /* Make all cards same height */
}

.brand-card__image--top {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0; /* Prevent image from shrinking */
}

.brand-card--compact .brand-card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1; /* Allow content to fill remaining space */
}

.brand-card--empty {
  /* Empty placeholder for grid alignment */
  display: none; /* Hide empty cards on mobile */
}

.brand-card__title--small {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.brand-card__website {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.brand-card__website:hover {
  color: #2d5a2d;
}

.brand-card__website svg {
  transition: transform 0.2s ease;
}

.brand-card__website:hover svg {
  transform: translateX(2px);
}

/* About Page Styles */
.about-intro {
  padding: 4rem 0;
}

.about-intro__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.about-intro__lead {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  line-height: 1.7;
  color: #4a4a4a;
  margin-top: 2rem;
}

.about-mission {
  padding: 4rem 0;
  background-color: #fbfaf3;
}

.about-mission__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.about-mission__quote {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  line-height: 1.7;
  color: #1a1a1a;
  font-style: italic;
  margin: 2rem 0 1rem;
}

.about-mission__attribution {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

.about-merger {
  padding: 4rem 0;
}

.about-merger__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-merger__intro {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 2rem 0 3rem;
  text-align: center;
}

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

.merger-brand {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #2d5a2d;
  flex: 1 1 calc(33.333% - 1.33rem);
  min-width: 250px;
}

.merger-brand h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.merger-brand p {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #666;
  line-height: 1.5;
}

.about-ecosystem {
  padding: 4rem 0;
  background-color: #fbfaf3;
}

.about-ecosystem__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-ecosystem__intro {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 2rem 0 3rem;
  text-align: center;
}

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

.ecosystem-feature {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  flex: 1 1 calc(50% - 1rem);
  min-width: 280px;
}

.ecosystem-feature h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.ecosystem-feature p {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #666;
  line-height: 1.5;
}

.about-market {
  padding: 4rem 0;
}

.about-market__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-market__content {
  text-align: center;
}

.market-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin: 3rem 0;
  justify-content: center;
}

.market-stat {
  text-align: center;
  flex: 1 1 200px;
  min-width: 200px;
}

.market-stat h3 {
  color: #2d5a2d;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.market-stat p {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #666;
  font-weight: 500;
}

.about-market__description {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #4a4a4a;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
}

.about-future {
  padding: 4rem 0;
  background-color: #fbfaf3;
}

.about-future__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-future__content p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 1.5rem;
}

.about-future__commitment {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #1a1a1a;
  font-style: italic;
  margin-top: 2rem;
  padding: 2rem;
  background: white;
  border-radius: 8px;
  border-left: 4px solid #2d5a2d;
}

.about-contact {
  padding: 4rem 0 8rem;
}

.about-contact__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.about-contact__content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 3rem;
  justify-content: center;
}

.contact-info {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  flex: 1 1 300px;
  min-width: 300px;
}

.contact-info h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.contact-info p {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.contact-info a {
  color: #2d5a2d;
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* People Section */
.people {
  padding: 4rem 0 8rem;
  background-color: #fbfaf3;
}

.people__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.people__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

.people__grid--leadership {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 6rem; /* Extra space between leadership and team */
}

.people__grid--team {
  grid-template-columns: repeat(3, 1fr);
}

.people__section {
  margin-bottom: 6rem;
}

.people__section:last-child {
  margin-bottom: 0;
}

.people__section-title {
  font-family: 'Druk', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #1a1a1a;
  margin-bottom: 3rem;
  text-align: center;
}

/* Desktop grid layouts are handled by the specific grid classes */

.person-card {
  /* Removed background, border-radius, padding, box-shadow */
  text-align: center;
  transition: transform 0.3s ease;
}

.person-card:hover {
  transform: translateY(-2px);
}

.person-card__image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  overflow: hidden;
}

.person-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%); /* Black and white filter */
}

.person-card__name {
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.person-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #666;
  font-weight: 500;
  margin-bottom: 1rem;
}

.person-card__quote {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #4a4a4a;
  font-style: italic;
  line-height: 1.5;
}

.person-card__bio {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #4a4a4a;
  line-height: 1.6;
  margin-top: 1rem;
}

/* Contact Page Styles */
.contact {
  padding: 4rem 0 8rem;
  background-color: #fbfaf3;
}

.contact__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.contact__info h2 {
  margin-bottom: 1.5rem;
}

.contact__info p {
  margin-bottom: 2rem;
  color: #4a4a4a;
}

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

.contact__detail h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.contact__detail p {
  margin: 0;
  color: #2d5a2d;
  font-weight: 500;
}

/* Form Styles */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form__input,
.form__select,
.form__textarea {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  background-color: #ffffff;
  color: #1a1a1a;
  transition: border-color 0.3s ease;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: #2d5a2d;
}

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

.form__submit {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #2d5a2d;
  border: none;
  border-radius: 4px;
  padding: 1rem 2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form__submit:hover {
  background-color: #1a3a1a;
}

/* Privacy Page Styles */
.privacy {
  padding: 4rem 0 8rem;
  background-color: #fbfaf3;
}

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

.privacy__content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.privacy__content p {
  margin-bottom: 1.5rem;
  color: #4a4a4a;
  line-height: 1.6;
}

.privacy__content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.privacy__content li {
  margin-bottom: 0.5rem;
  color: #4a4a4a;
}

.privacy__content a {
  color: #2d5a2d;
  text-decoration: none;
}

.privacy__content a:hover {
  text-decoration: underline;
}

/* Press Page Styles */
.press {
  padding: 4rem 0 8rem;
  background-color: #fbfaf3;
}

.press__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.press__intro,
.press__experts,
.press__services,
.press__brands,
.press__company {
  margin-bottom: 4rem;
}

.press__intro h2,
.press__experts h2,
.press__services h2,
.press__brands h2,
.press__company h2 {
  margin-bottom: 1.5rem;
}

.press__intro p,
.press__experts p,
.press__services p,
.press__company p {
  margin-bottom: 1.5rem;
  color: #4a4a4a;
}

.press__contact {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
}

.press__contact h3 {
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.press__contact p {
  margin: 0;
  color: #4a4a4a;
}

.press__contact a {
  color: #2d5a2d;
  text-decoration: none;
  font-weight: 500;
}

.press__contact a:hover {
  text-decoration: underline;
}

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

.press__services li {
  padding: 0.5rem 0;
  color: #4a4a4a;
  position: relative;
  padding-left: 1.5rem;
}

.press__services li::before {
  content: "•";
  color: #2d5a2d;
  font-weight: bold;
  position: absolute;
  left: 0;
}

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

.press__expert {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.press__expert-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
  margin: 0 auto 1.5rem;
  display: block;
}

.press__expert h3 {
  margin-bottom: 0.5rem;
  color: #1a1a1a;
  font-size: 1.125rem;
}

.press__expert-title {
  margin-bottom: 1rem;
  color: #2d5a2d;
  font-weight: 600;
  font-size: 0.9375rem;
  text-transform: uppercase;
}

.press__expert-areas {
  margin: 0;
  color: #4a4a4a;
  font-size: 0.875rem;
  line-height: 1.5;
}

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

.press__brand {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.press__brand h3 {
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

.press__brand p {
  margin-bottom: 1.5rem;
  color: #4a4a4a;
  font-size: 0.9375rem;
}

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

.press__link {
  color: #2d5a2d;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.press__link:hover {
  text-decoration: underline;
}

.press__company-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

/* News Page Styles */
.news {
  padding: 4rem 0 8rem;
  background-color: #fbfaf3;
}

.news__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.news__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
  min-height: 100vh; /* Ensure full height for proper sidebar positioning */
}

.news__articles {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.news__article {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 2rem;
}

.news__article:last-child {
  border-bottom: none;
}

.news__article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.news__date {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #666;
  font-weight: 500;
}

.news__category {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #2d5a2d;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news__title {
  margin-bottom: 1rem;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem); /* Reduced from default h2 size */
}

.news__title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news__title a:hover {
  color: #2d5a2d;
}

.news__excerpt {
  color: #4a4a4a;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.news__read-more {
  color: #2d5a2d;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news__read-more:hover {
  text-decoration: underline;
}

.news__sidebar {
  position: sticky;
  top: 140px; /* Account for fixed header */
  align-self: start; /* Align to top of grid container */
  height: fit-content; /* Ensure sidebar height fits content */
}

.news__contact-box,
.article__contact-box {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.news__contact-box h3,
.article__contact-box h3 {
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.news__contact-info,
.article__contact-info {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.news__contact-photo,
.article__contact-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%); /* Black and white filter */
}

.news__contact-details,
.article__contact-details {
  flex: 1;
}

.news__contact-details h4,
.article__contact-details h4 {
  margin-bottom: 0.25rem;
  color: #1a1a1a;
  font-size: 1rem;
}

.news__contact-details p,
.article__contact-details p {
  margin-bottom: 0.5rem;
  color: #666;
  font-size: 0.875rem;
}

.news__contact-details a,
.article__contact-details a {
  color: #2d5a2d;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
}

.news__contact-details a:hover,
.article__contact-details a:hover {
  text-decoration: underline;
}

.news__contact-box p,
.article__contact-box p {
  color: #4a4a4a;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.news__press-link,
.article__press-link {
  display: inline-block;
  color: #2d5a2d;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.5rem;
  border: 2px solid #2d5a2d;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.news__press-link:hover,
.article__press-link:hover {
  background-color: #2d5a2d;
  color: #ffffff;
}

/* Article Page Styles */
.article {
  padding: 4rem 0 8rem;
  background-color: #fbfaf3;
  width: 100%;
  overflow-x: hidden;
}

.article__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.article__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
  min-height: 100vh; /* Ensure full height for proper sidebar positioning */
  width: 100%;
  max-width: 100%;
}

.article__body {
  /* Removed background, padding, border-radius, and box-shadow */
  width: 100%;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Article header styles removed - title now in page header */

.article__featured-image {
  margin-bottom: 2rem;
}

.article__image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.article__body h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article__body h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.article__body p {
  margin-bottom: 1.5rem;
  color: #4a4a4a;
  line-height: 1.6;
  max-width: 100%;
  overflow-wrap: break-word;
}

.article__body ul,
.article__body ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  max-width: 100%;
  overflow-wrap: break-word;
}

.article__body li {
  margin-bottom: 0.5rem;
  color: #4a4a4a;
}

.article__body strong {
  color: #1a1a1a;
  font-weight: 600;
}

/* Ensure all content within article body is responsive */
.article__body * {
  max-width: 100%;
  box-sizing: border-box;
}

.article__sidebar {
  position: sticky;
  top: 140px; /* Account for fixed header */
  align-self: start; /* Align to top of grid container */
  height: fit-content; /* Ensure sidebar height fits content */
}

.page-header__meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* Article page header meta - single line */
.page-header--article .page-header__meta {
  flex-direction: row;
  gap: 0.5rem;
  justify-content: center;
}

.page-header__date,
.page-header__updated {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #ffffff;
  opacity: 0.8;
}

/* Featured In Section */
.featured-in {
  background-color: #fbfaf3;
  padding: 3rem 0;
  overflow: hidden;
}

.featured-in__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.featured-in__title {
  font-family: 'Druk', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 900;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.featured-in__marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.featured-in__track {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  animation: marquee 30s linear infinite;
}

.featured-in__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.featured-in__logo:hover {
  opacity: 1;
}

.featured-in__image {
  max-height: 60px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.featured-in__logo:hover .featured-in__image {
  filter: grayscale(0%);
}

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

.featured-in__marquee:hover .featured-in__track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .featured-in__track {
    animation: none;
    transform: none;
  }
}

/* Pre-Footer */
.pre-footer {
  background-color: #fbfaf3;
  padding: 0;
}

.pre-footer__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 100%;
  margin: 0;
  min-height: 300px;
}

.pre-footer__image {
  position: relative;
  overflow: hidden;
}

.pre-footer__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pre-footer__content {
  background-color: #3a5a40;
  color: #ffffff;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.pre-footer__title {
  font-family: 'Druk', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 1.5rem 0;
  color: #ffffff;
}

.pre-footer__copy {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #ffffff;
  margin: 0 0 2rem 0;
  opacity: 0.9;
}

.pre-footer__links {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.pre-footer__link {
  color: #ffffff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 1rem 2rem;
  border: 2px solid #ffffff;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.pre-footer__link:hover {
  background-color: #ffffff;
  color: #3a5a40;
}

/* Footer */
.footer {
  background-color: #2c322d;
  color: #ffffff;
  padding: 2rem 0; /* Add padding back */
  margin-bottom: 0; /* Ensure no margin below */
}

.footer__container {
  width: 100%;
  padding: 0 2rem;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.footer__logo img {
  height: 32px; /* Increased from 24px */
  width: auto;
}

.footer__copyright {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #999;
}

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

.footer__link {
  font-family: 'Inter', sans-serif;
  font-size: 1rem; /* Increased from 0.875rem */
  color: #999;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__link:hover {
  color: #ffffff;
}

.footer__link--linkedin {
  font-size: 1rem;
}

/* Responsive Design */
@media (min-width: 769px) and (max-width: 1024px) {
  .people__grid--leadership {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .people__grid--team {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .merger-brand {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .nav__container {
    padding: 0 1rem;
    height: 70px;
    justify-content: space-between;
  }
  
  /* Mobile navbar always green */
  .header {
    background-color: #3a5a40 !important;
  }
  
  /* Mobile logo smaller */
  .nav__logo img {
    height: 40px;
    width: 40px;
  }
  
  /* Mobile burger menu green */
  .nav__toggle-line {
    background-color: #ffffff;
  }
  
  /* Mobile menu background green with white text */
  .nav__menu {
    background-color: #3a5a40;
    backdrop-filter: none;
  }
  
  .nav__link {
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .nav__link:hover {
    color: #f0f0f0;
  }
  
  .nav__logo--desktop {
    display: none !important;
  }
  
  .nav__logo--scrolled {
    display: block !important;
  }
  
  .nav__toggle {
    display: flex;
  }
  
  .nav__menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #3a5a40;
    backdrop-filter: none;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .nav__menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav__link {
    font-size: 1rem;
    padding: 0.5rem 0;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .nav__link:hover {
    color: #f0f0f0;
  }
  
  .main {
    margin-top: 0;
  }
  
  .hero__container {
    padding: 0 1rem;
  }
  
  .mission {
    padding: 6rem 0;
  }
  
  .mission__container {
    padding: 0 1rem;
  }
  
  .page-header {
    padding: 2rem 0 2rem;
    margin-top: 70px; /* Match mobile nav height */
  }
  
  .page-header__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-subtitle {
    padding: 2rem 0;
  }
  
  .mission__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .brands__featured {
    margin-bottom: 4rem;
  }
  
  .brand-card--featured {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0;
  }
  
  .brands__grid {
    grid-template-columns: 1fr;
  }
  
  /* Seed Retailers section - 1 column on mobile */
  .brands__section:first-of-type .brands__grid {
    grid-template-columns: 1fr;
  }
  
  /* THCA section - 1 column on mobile */
  .brands__section:last-of-type .brands__grid {
    grid-template-columns: 1fr;
    max-width: none;
    margin: 0;
  }
  
  .brand-card {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .brand-card__links {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .people__section {
    margin-bottom: 4rem;
  }
  
  .people__section-title {
    margin-bottom: 2rem;
  }
  
  .people__grid--leadership {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }
  
  .people__grid--team {
    grid-template-columns: 1fr;
  }
  
  .person-card {
    padding: 1.5rem;
  }
  
  /* About page mobile styles */
  .merger-brand {
    flex: 1 1 100%;
  }
  
  .ecosystem-feature {
    flex: 1 1 100%;
  }
  
  .market-stat {
    flex: 1 1 100%;
  }
  
  .contact-info {
    flex: 1 1 100%;
  }
  
  /* Hero Subtitle Mobile */
  .hero-subtitle__container {
    grid-template-columns: 1fr;
  }
  
  .hero-subtitle__content {
    padding: 3rem 2rem;
    order: 2;
  }
  
  .hero-subtitle__image {
    display: none;
  }
  
  /* Home Navigation Mobile */
  .home-navigation__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .home-navigation__buttons {
    gap: 0.75rem;
  }
  
  .home-navigation__button {
    padding: 0.875rem 1.25rem;
  }
  
  /* Featured In Mobile */
  .featured-in {
    padding: 2rem 0;
  }
  
  .featured-in__title {
    margin-bottom: 1.5rem;
  }
  
  .featured-in__track {
    gap: 2rem;
    animation: marquee 25s linear infinite;
  }
  
  .featured-in__logo {
    height: 50px;
  }
  
  .featured-in__image {
    max-height: 50px;
    max-width: 100px;
  }

  /* Pre-Footer Mobile */
  .pre-footer__container {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .pre-footer__content {
    padding: 3rem 2rem;
    text-align: center;
    align-items: center;
  }
  
  .pre-footer__links {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }
  
  .footer__content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer__logo {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer__nav {
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .footer__link {
    display: flex;
    align-items: center;
    white-space: nowrap;
  }
  
  /* Contact Page Mobile */
  .contact__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  /* Press Page Mobile */
  .press__experts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .press__brand-grid {
    grid-template-columns: 1fr;
  }
  
  /* News Page Mobile */
  .news__content {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: auto; /* Remove min-height on mobile */
  }
  
  .news__sidebar {
    position: static;
    order: -1;
    height: auto; /* Remove height constraint on mobile */
  }
  
  /* Article Page Mobile */
  .article__content {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: auto; /* Remove min-height on mobile */
  }
  
  .article__sidebar {
    position: static;
    order: -1;
    height: auto; /* Remove height constraint on mobile */
  }
  
  .article__body {
    padding: 0; /* Remove padding on mobile */
  }
}

@media (max-width: 480px) {
  .nav__menu {
    gap: 1rem;
  }
  
  .nav__link {
    font-size: 0.75rem;
  }
  
  .hero__title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }
  
  .hero__subtitle {
    font-size: 1rem;
  }
  
  .mission {
    padding: 4rem 0;
  }
  
  .mission__text {
    font-size: 1rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles */
.nav__link:focus,
.footer__link:focus {
  outline: 2px solid #2d5a2d;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .hero__overlay {
    background: rgba(0, 0, 0, 0.8);
  }
  
  .nav__link:hover {
    color: #000000;
  }
}
