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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

/* About Section */
.about-section {
  padding: 4rem 6rem;
  background-color: #f6f7f6;
}

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

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

.about-col-offset {
  margin-top: 0;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.label-line {
  height: 1px;
  width: 3rem;
  background-color: #8a9b6e;
}

.section-label h3 {
  color: #8a9b6e;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #131613;
  line-height: 1.2;
}

.title-accent {
  color: #2c5926;
  font-style: italic;
  font-family: Georgia, serif;
}

.section-content {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #6b7280;
}

.section-content p {
  margin-bottom: 1rem;
}

.section-content p:last-child {
  margin-bottom: 0;
}

.service-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.service-list .material-symbols-outlined {
  color: #8a9b6e;
  margin-top: 0.25rem;
}

.about-believes h2 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #2c5926;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-believes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-believes li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: #4b5563;
}

.about-believes li span.material-symbols-outlined {
  color: #2c5926;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Philosophy Section */
.philosophy-section {
  padding: 4rem 6rem;
  background-color: white;
}

.philosophy-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.philosophy-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.philosophy-label {
  color: #8a9b6e;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.philosophy-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #131613;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.philosophy-content {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.btn-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #2c5926;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.btn-link .material-symbols-outlined {
  font-size: 1.125rem;
  transition: transform 0.3s;
}

.btn-link:hover .material-symbols-outlined {
  transform: translateX(0.25rem);
}

.philosophy-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.image-card {
  background-color: #f3f4f6;
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
}

.image-large {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.image-square {
  aspect-ratio: 1 / 1;
  width: 100%;
}

.image-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s;
}

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

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  width: 100%;
}

.image-title {
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
}

.image-subtitle {
  color: #d1d5db;
  font-size: 0.875rem;
}

.image-info {
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  gap: 1rem;
  background-color: rgba(44, 89, 38, 0.1);
  border: 1px solid rgba(44, 89, 38, 0.2);
}

.info-icon {
  font-size: 2.25rem;
  color: #2c5926;
}

.info-title {
  color: #2c5926;
  font-weight: 700;
  font-size: 1.125rem;
}

.info-subtitle {
  color: #6b7280;
  font-size: 0.75rem;
  margin-top: 0.5rem;
}


/* Responsive Styles */
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .btn-header {
    display: flex;
  }

  .nav-mobile {
    display: none;
  }

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

  .hero-subtitle {
    font-size: 1.25rem;
  }

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

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

  .philosophy-grid {
    flex-direction: row;
    gap: 4rem;
  }

  .philosophy-text {
    flex: 1;
  }

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

  .image-large {
    grid-column: 1 / -1;
  }

  .philosophy-title {
    font-size: 3rem;
  }

  .timeline-line {
    left: 50%;
    margin-left: -0.5px;
  }

  .timeline-left .timeline-content {
    text-align: right;
    padding-right: 3rem;
  }

  .timeline-right .timeline-content {
    padding-left: 3rem;
  }

  .timeline-dot {
    left: 50%;
    margin-left: -0.375rem;
  }

  .timeline-right .timeline-empty {
    display: block;
  }

  .timeline-left .timeline-empty {
    display: block;
  }

  .team-header {
    flex-direction: row;
    align-items: flex-end;
  }

  .team-heading {
    font-size: 2.25rem;
  }

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

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

  .footer-top {
    flex-direction: row;
  }

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 5rem;
  }
}
@media (max-width: 768px) {
  .about-section {
    padding: 2rem;
  }
  .philosophy-section {
    padding: 2rem;
  }
  .team-section {
    padding: 2rem;
  }
  .process-section {
    padding: 2rem;
  }
}