:root {
  --cream: #f5f0e8;
  --cream-strong: #ede6d8;
  --terra: #b8461a;
  --terra-deep: #8c3412;
  --terra-soft: #d4714a;
  --gold: #e8a020;
  --brown: #2c1a0e;
  --muted: #7a5c44;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(44, 26, 14, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.7;
  color: var(--brown);
  background: var(--cream);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 56px;
  background: rgba(245, 240, 232, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 70, 26, 0.12);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--brown);
}

.nav-logo__mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--terra), var(--terra-deep));
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.nav-logo strong {
  display: block;
  font-size: 0.96rem;
  font-family: "Playfair Display", serif;
  color: var(--terra);
}

.nav-logo small {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--terra);
}

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(184, 70, 26, 0.16);
}

.nav-button--ghost,
.nav-button--primary {
  border: 1px solid var(--terra);
  color: var(--terra);
  background: transparent;
}


/* =========================================
   MOBILE NAVIGATION - DESKTOP DEFAULT
========================================= */

.mobile-menu-toggle {
  display: none;
}

.mobile-navigation {
  display: none;
}


/* =========================================
   PAGE HERO
========================================= */

.page-hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 56px 70px;
  background: linear-gradient(
    135deg,
    rgba(44, 26, 14, 0.96),
    rgba(184, 70, 26, 0.9)
  );
  color: var(--white);
}

.page-hero--about {
  background: linear-gradient(
    120deg,
    rgba(44, 26, 14, 0.94),
    rgba(120, 40, 18, 0.88)
  );
}

.page-hero--founder {
  background: linear-gradient(
    120deg,
    rgba(28, 19, 12, 0.95),
    rgba(184, 70, 26, 0.8)
  );
}

.page-hero--work {
  background: linear-gradient(
    120deg,
    rgba(63, 41, 18, 0.96),
    rgba(184, 70, 26, 0.8)
  );
}

.page-hero--involved {
  background: linear-gradient(
    120deg,
    rgba(44, 26, 14, 0.94),
    rgba(115, 64, 28, 0.85)
  );
}

.page-hero__content {
  max-width: 780px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-weight: 700;
}

.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  line-height: 1.12;
  margin-bottom: 18px;
}

.page-hero p {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.86);
  max-width: 680px;
  margin: 0 auto;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.button--primary {
  background: var(--white);
  color: var(--terra);
}

.button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
}


/* =========================================
   CONTENT
========================================= */

.content-section,
.section {
  padding: 84px 56px;
}

.section--accent {
  background: var(--cream-strong);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  margin-bottom: 12px;
  color: var(--brown);
}

.section-heading p {
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.info-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px 24px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--terra);
}

.info-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.12rem;
  margin-bottom: 10px;
  color: var(--brown);
}

.info-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.quote-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 36px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--white), var(--cream-strong));
  box-shadow: var(--shadow);
  text-align: center;
}

.quote-card--large {
  padding: 48px;
}

.quote-card p {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--brown);
  margin-bottom: 14px;
}

.quote-card span {
  color: var(--terra);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 28px 56px 40px;
  background: var(--brown);
  color: rgba(255, 255, 255, 0.7);
}

.site-footer a {
  color: var(--terra-soft);
  text-decoration: none;
  font-weight: 600;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .card-grid {
    grid-template-columns: 1fr;
  }

}


/* =========================================
   MOBILE NAVIGATION
========================================= */

@media (max-width: 768px) {

  /* HEADER */

  .site-header {
    position: sticky;
    top: 0;

    width: 100%;

    padding: 12px 18px;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    gap: 0;

    z-index: 9999;
  }


  /* LOGO */

  .nav-logo {
    flex-shrink: 1;
    min-width: 0;
  }

  .nav-logo__mark {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
  }

  .nav-logo strong {
    font-size: 0.88rem;
  }

  .nav-logo small {
    font-size: 0.6rem;
  }


  /* HIDE DESKTOP NAVIGATION */

  .nav-links {
    display: none !important;
  }


  /* HAMBURGER BUTTON */

  .mobile-menu-toggle {
    display: flex !important;

    width: 44px;
    height: 44px;

    flex-shrink: 0;

    padding: 0;
    margin: 0;

    border: 0;
    border-radius: 8px;

    background: transparent;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;

    cursor: pointer;

    color: var(--brown);

    position: relative;

    z-index: 10002;

    -webkit-tap-highlight-color: transparent;
  }


  .mobile-menu-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    background: currentColor;

    border-radius: 2px;

    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }


  /* MOBILE NAVIGATION */

  .mobile-navigation {
    display: flex !important;

    position: absolute;

    top: 100%;
    left: 0;

    width: 100%;

    max-height: calc(100vh - 70px);

    overflow-y: auto;

    padding: 14px 18px 20px;

    flex-direction: column;

    gap: 4px;

    background: rgba(245, 240, 232, 0.99);

    border-top: 1px solid rgba(184, 70, 26, 0.12);

    box-shadow: 0 16px 35px rgba(44, 26, 14, 0.14);

    z-index: 10001;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform: translateY(-8px);

    transition:
      opacity 0.22s ease,
      transform 0.22s ease,
      visibility 0.22s ease;
  }


  /* OPEN MENU */

  .mobile-navigation.active {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform: translateY(0);
  }


  /* MOBILE LINKS */

  .mobile-navigation a {
    display: block;

    width: 100%;

    padding: 13px 12px;

    text-decoration: none;

    color: var(--muted);

    font-size: 0.88rem;

    font-weight: 600;

    letter-spacing: 0.04em;

    text-transform: uppercase;

    border-radius: 8px;

    transition:
      color 0.2s ease,
      background 0.2s ease;
  }


  .mobile-navigation a:hover,
  .mobile-navigation a:active {
    color: var(--terra);

    background: rgba(184, 70, 26, 0.07);
  }


  /* HAMBURGER TO X */

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }


  /* PAGE HERO */

  .page-hero {
    padding: 88px 22px 60px;
  }


  /* SECTIONS */

  .content-section,
  .section {
    padding: 64px 22px;
  }


  /* FOOTER */

  .site-footer {
    padding: 24px 22px 32px;

    flex-direction: column;

    align-items: flex-start;
  }


  /* GENERAL MOBILE SAFETY */

  .page-hero,
  .content-section,
  .section,
  .site-footer {
    max-width: 100%;
  }

}


/* =========================================
   HERO
========================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}

.hero-content {
  width: 100%;
  max-width: 1200px;
  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 60px;

  padding: 120px 40px 80px;
}

.hero h1,
.hero p,
.hero span {
  color: #fff;
}

.hero-logo-wrap img {
  max-width: 320px;
  width: 100%;
}


/* =========================================
   HERO MOBILE
========================================= */

@media (max-width: 768px) {

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    grid-template-columns: 1fr;

    text-align: center;

    gap: 30px;

    padding: 100px 22px 60px;
  }

  .hero-logo-wrap {
    margin: auto;
  }

  .hero-logo-wrap img {
    max-width: 260px;
    margin: auto;
  }

}