:root {
  color-scheme: light;
  --about-sky: #95a5ad;
  --about-mist: #d5d4c8;
  --about-ink: #f8f8f4;
  --about-muted: rgba(255, 255, 255, 0.74);
  --about-panel: rgba(255, 255, 255, 0.12);
  --about-line: rgba(255, 255, 255, 0.22);
  --about-shadow: rgba(41, 50, 52, 0.2);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  min-height: 100svh;
  overflow-x: hidden;
  background:
    radial-gradient(120% 40% at 50% 38%, rgba(235, 207, 154, 0.28), transparent 60%),
    linear-gradient(180deg, var(--about-sky), var(--about-mist) 46%, #7d909b);
  color: var(--about-ink);
  font-family: "Lato", Arial, Helvetica, sans-serif;
}

body.about-page::before {
  content: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.about-page .glass-nav {
  z-index: 30;
}

.about-page .brand,
.about-page .nav-links-group a,
.about-page .nav-dropdown-toggle,
.about-page .nav-cart,
.about-page .nav-auth {
  color: rgba(255, 255, 255, 0.94);
}

.about-shell {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
}

.about-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url("optimized-assets/hero.png") center 42% / min(58vw, 42rem) auto no-repeat;
  opacity: 0.28;
  filter: drop-shadow(0 1.6rem 3rem rgba(42, 31, 19, 0.18));
  pointer-events: none;
}

.about-shell::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(127, 144, 155, 0.86), rgba(127, 144, 155, 0.28) 32%, rgba(127, 144, 155, 0.2) 68%, rgba(127, 144, 155, 0.88)),
    linear-gradient(180deg, rgba(80, 94, 101, 0.1), rgba(80, 94, 101, 0.32));
  pointer-events: none;
}

.about-hero {
  width: min(88vw, 74rem);
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(18rem, 0.7fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
  margin: 0 auto;
  padding:
    calc(env(safe-area-inset-top, 0px) + 8rem)
    0
    5rem;
}

.about-kicker,
.about-card-label,
.team-kicker {
  margin: 0;
  color: rgba(255, 244, 224, 0.78);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about-title {
  margin: 0.7rem 0 0;
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(4.4rem, 10vw, 8.8rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 0.86;
  text-transform: uppercase;
  text-shadow: 0 1rem 2.2rem rgba(29, 42, 49, 0.2);
}

.about-lead {
  max-width: 40rem;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.64;
  text-shadow: 0 0.45rem 1rem rgba(29, 42, 49, 0.14);
}

.about-signature {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.55rem;
}

.about-pill {
  min-height: 2.35rem;
  display: inline-flex;
  align-items: center;
  padding: 0 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.about-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1.15rem, 3vw, 1.8rem);
  border: 1px solid var(--about-line);
  border-radius: 1.15rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    var(--about-panel);
  box-shadow:
    0 1.2rem 2.5rem var(--about-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.about-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.58;
}

.about-card-quote {
  margin: 0;
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.15;
}

@media (min-width: 821px) {
  .about-page {
    --about-desktop-header-clearance: calc(env(safe-area-inset-top, 0px) + clamp(11rem, 18vh, 13rem));
  }

  body.about-page::before {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 84;
    height: var(--about-desktop-header-clearance);
    background:
      linear-gradient(180deg, rgba(149, 165, 173, 0.98) 0%, rgba(149, 165, 173, 0.96) 58%, rgba(149, 165, 173, 0.72) 78%, rgba(149, 165, 173, 0) 100%);
    pointer-events: none;
  }

  .about-page .glass-nav {
    z-index: 95;
  }

  .about-page .about-hero {
    align-items: start;
    padding-top: var(--about-desktop-header-clearance) !important;
  }

  .about-page .team-section {
    scroll-margin-top: var(--about-desktop-header-clearance);
  }
}

@media (min-width: 821px) and (max-height: 720px) {
  .about-title {
    font-size: clamp(4.1rem, 8vw, 7.5rem);
  }

  .about-lead {
    max-width: 36rem;
    font-size: 1rem;
    line-height: 1.55;
  }

  .about-card {
    gap: 0.85rem;
    padding: clamp(1rem, 2.2vw, 1.45rem);
  }

  .about-card-quote {
    font-size: clamp(1.45rem, 2.45vw, 1.95rem);
  }
}

.team-section {
  width: min(88vw, 74rem);
  margin: 0 auto;
  padding: 0 0 calc(env(safe-area-inset-bottom, 0px) + 5rem);
}

.team-header {
  max-width: 42rem;
  margin-bottom: 1.4rem;
}

.team-title {
  margin: 0.45rem 0 0;
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 5.6rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 0.94;
  text-transform: uppercase;
}

.team-copy {
  margin: 1rem 0 0;
  color: var(--about-muted);
  font-size: 1rem;
  line-height: 1.62;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.team-card {
  min-height: 24rem;
  display: grid;
  align-content: end;
  overflow: hidden;
  position: relative;
  padding: 1rem;
  border: 1px solid var(--about-line);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 1.15rem 2.2rem rgba(31, 41, 46, 0.16);
}

.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--team-image) center / cover no-repeat;
  filter: saturate(0.88) contrast(1.02);
  transform: scale(1.03);
}

.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(19, 20, 18, 0.74));
}

.team-card-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.45rem;
}

.team-card h3 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.team-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.46;
}

@media (max-width: 820px) {
  .about-page {
    --about-mobile-header-clearance: calc(env(safe-area-inset-top, 0px) + 6.8rem);
  }

  .about-page .glass-nav {
    isolation: isolate;
  }

  .about-page .glass-nav::before {
    content: "";
    position: absolute;
    top: calc(0px - env(safe-area-inset-top, 0px));
    right: -0.85rem;
    bottom: -0.35rem;
    left: -0.85rem;
    z-index: -1;
    background: linear-gradient(180deg, rgba(149, 165, 173, 0.96), rgba(149, 165, 173, 0.78) 62%, rgba(149, 165, 173, 0));
    pointer-events: none;
  }

  .about-shell::before {
    background-size: min(110vw, 34rem) auto;
    background-position: center 9rem;
    opacity: 0.18;
  }

  .about-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding:
      var(--about-mobile-header-clearance)
      0
      3rem;
  }

  .about-title {
    font-size: clamp(3.2rem, 18vw, 5.2rem);
  }

  .about-lead {
    font-size: 0.98rem;
  }

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

  .team-section {
    padding:
      var(--about-mobile-header-clearance)
      0
      calc(env(safe-area-inset-bottom, 0px) + var(--mobile-bottom-nav-reserve, 6rem) + 2rem);
    scroll-margin-top: var(--about-mobile-header-clearance);
  }

  .team-card {
    min-height: 19rem;
  }
}
