/* Hero Section - 16:9 for Desktop, 9:16 for Mobile */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  padding: 0 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-badge {
  display: inline-block;
  padding: 10px 28px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  color: white;
  margin-bottom: 32px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.hero-description {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-block;
  padding: 16px 48px;
  background: white;
  color: #4a5d45;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 2px solid white;
}

.hero-cta:hover {
  background: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* Eyebrow Style */
.eyebrow {
  font-family: var(--font-heading);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--color-secondary);
  margin: 0;
  font-weight: 600;
}

.hero-cta-form{
  display: inline-block;
  padding: 16px 48px;
  background: linear-gradient(135deg, #4a5d45, #4a5d45);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(74, 93, 69, 0.4);
  border: 2px solid transparent;
}

.hero-cta-form:hover {
  background: linear-gradient(135deg, #4a5d45, #4a5d45);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 93, 69, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Content Sections */
.section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 16px;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.section p {
  color: rgba(31, 32, 24, 0.8);
  text-align: justify;
  line-height: 1.6;
}

/* Two Column Layouts */
.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
}

.col-image {
  max-width: 540px;
}

.col-image img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.col-image img:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.col-content {
  flex: 1 1 360px;
  min-width: 300px;
}

/* Core Values Section */
.core-values {
  background: #f5efe2;
  padding: clamp(3.2rem, 6vw, 5rem) 0;
}

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

.section-header .eyebrow {
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-weight: 700;
}

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

.value-card {
  background: var(--color-surface);
  padding: 32px 24px;
  border: 1px solid rgba(31, 32, 24, 0.08);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  margin-bottom: 12px;
  font-weight: 600;
}

.value-card p {
  color: rgba(31, 32, 24, 0.76);
  margin: 0;
  line-height: 1.6;
}

/* Founder Section */
.founder-section {
  padding: clamp(3.2rem, 6vw, 5rem) 0;
}

.founder-bio {
  position: relative;
}

.founder-bio-extended {
  margin-top: 12px;
  transition: all 0.3s ease;
}

.read-more-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 28px;
  background: var(--color-accent);
  color: var(--color-primary);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.read-more-btn:hover {
  background: #dccaa2;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Responsive Styles */
@media (max-width: 900px) {
  .two-col {
    flex-direction: column;
  }

  .col-image {
    order: 1;
    max-width: 100%;
  }

  .col-content {
    order: 2;
  }

  /* Reset specific ordering for alternating layouts */
  .two-col .col-image[style*="order: 2"] {
    order: 1;
  }

  .two-col .col-content[style*="order: 1"] {
    order: 2;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 100vh;
    min-height: 600px;
  }

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

  .section {
    padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  }

  .two-col {
    gap: 32px;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 8px 22px;
    letter-spacing: 0.18em;
  }

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

  .hero-description {
    font-size: 1.05rem;
    line-height: 1.65;
  }
}

@media (max-width: 640px) {
  .hero-section {
    height: 100vh;
    min-height: 550px;
  }

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

  .hero-badge {
    font-size: 0.7rem;
    padding: 8px 20px;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 28px;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .hero-cta, .hero-cta-form {
    padding: 13px 36px;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    width: 100%;
    max-width: 280px;
  }

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

  .value-card {
    padding: 24px 20px;
  }

  .col-image img {
    border-radius: 10px;
  }

  .section h2 {
    font-size: 1.5rem;
  }

  .eyebrow {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 100vh;
    min-height: 500px;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 6px 16px;
  }

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

  .hero-description {
    font-size: 0.9rem;
  }

  .hero-buttons {
    gap: 12px;
  }

  .hero-cta, .hero-cta-form {
    padding: 12px 30px;
    font-size: 0.85rem;
  }
}

@media (min-width: 1920px) {
  .hero-section {
    height: 90vh;
  }
}
