

:root {
  --brand-dark: #344c36;
  --brand-amber: #faad1b;
  --surface: #f6f1e8;
  --surface-soft: #fcfaf6;
  --text: #1f2d20;
  --muted: #5c665d;
  --border: rgba(52, 76, 54, 0.14);
  --shadow: 0 18px 45px rgba(37, 57, 35, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(250, 173, 27, 0.18), transparent 22%),
    linear-gradient(180deg, #fffdf9 0%, #f8f7f2 52%, #ffffff 100%);
}

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

a {
  text-decoration: none;
}

.primary-btn,
.secondary-btn {
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.primary-btn {
  background: var(--brand-amber);
  color: #1f240f;
  box-shadow: 0 10px 24px rgba(250, 173, 27, 0.28);
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.75);
  color: var(--brand-dark);
  border: 1px solid var(--border);
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
}

.about-hero,
.section,
.footer-container,
.footer-bottom {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.about-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  padding: 64px 0 40px;
  align-items: center;
}

.eyebrow,
.section-tag,
.mini-label {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9a6c00;
}

.hero-copy h1,
.section h2 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.05;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 3rem);
  margin: 16px 0 18px;
  max-width: 25ch;
}

.hero-text,
.content-card p,
.role-card p,
.founder-copy p,
.section-text,
.cta-section p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.hero-points span,
.bio-pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(52, 76, 54, 0.1);
  color: var(--brand-dark);
  font-weight: 700;
}

.hero-points i {
  color: #2e8a47;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-card,
.content-card,
.role-card,
.gallery-card,
.cta-section {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 18px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.hero-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 22px;
}

.hero-card-content {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(31, 47, 38, 0.78);
  color: white;
  backdrop-filter: blur(12px);
}

.hero-card-content p {
  line-height: 1.6;
}

.section {
  padding: 34px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.content-card {
  border-radius: 28px;
  padding: 34px;
}

.content-card h2,
.section-head h2,
.founder-copy h2,
.cta-section h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
  margin: 12px 0 16px;
}

.vision-card {
  background: linear-gradient(135deg, #2f4730 0%, #425f45 100%);
}

.vision-card h2,
.vision-card p,
.vision-card .section-tag {
  color: #fff;
}

.services-section .section-head,
.gallery-section .section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.role-card {
  border-radius: 24px;
  padding: 28px 22px;
}

.role-card img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 18px;
}

.role-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.32rem;
  margin-bottom: 10px;
}

.founder-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: center;
}

.founder-photo img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.founder-role {
  color: var(--brand-dark);
  font-weight: 800;
  margin-bottom: 12px;
}

.bio-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.gallery-card {
  border-radius: 26px;
  padding: 14px;
  grid-column: span 4;
}

.gallery-card.tall {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-card.wide {
  grid-column: span 7;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  max-height: 380px;
  object-fit: cover;
  border-radius: 20px;
}

.gallery-card figcaption {
  padding: 14px 8px 6px;
  color: var(--brand-dark);
  font-weight: 800;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-radius: 30px;
  padding: 34px;
  margin-bottom: 70px;
}

.footer {
  background-color: #1f2f26;
  color: #ffffff;
  padding: 80px 0 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.footer-col h3,
.footer-col h4 {
  color: var(--brand-amber);
  margin-bottom: 15px;
}

.footer-col p,
.footer-col li {
  color: #d6d6d6;
  font-size: 0.95rem;
  margin-bottom: 10px;
  line-height: 1.7;
  list-style: none;
}

.footer-col a {
  color: #d6d6d6;
}

.footer-col a:hover,
.social-icons a:hover {
  color: var(--brand-amber);
}

.social-icons {
  display: flex;
  gap: 14px;
  font-size: 1.3rem;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding-top: 20px;
}

#scrollTopBtn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: var(--brand-amber);
  color: #1f240f;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(37, 57, 35, 0.2);
}

.animate-footer {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.animate-footer.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 995px) {
  .about-hero,
  .intro-grid,
  .founder-section,
  .cta-section,
  .footer-container {
    grid-template-columns: 1fr;
  }

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

  .gallery-card,
  .gallery-card.tall,
  .gallery-card.wide {
    grid-column: span 6;
  }

  .cta-section {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .about-hero,
  .section,
  .footer-container,
  .footer-bottom {
    width: min(100% - 28px, 1200px);
  }

  .hero-card img,
  .founder-photo img {
    height: 360px;
    min-height: 360px;
  }

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

  .gallery-card,
  .gallery-card.tall,
  .gallery-card.wide {
    grid-column: span 1;
  }

  .content-card,
  .role-card,
  .cta-section {
    padding: 24px;
  }
}
