:root {
  --black: #0d0d0d;
  --charcoal: #242422;
  --ink: #1a1a19;
  --warmgray: #8a8579;
  --stone: #f4f2ee;
  --white: #ffffff;
  --teal: #0f9b8e;
  --teal-light: #12b3a4;
  --blue: #3b7ea1;
  --line: #e3ded4;
  --maxw: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.dark-page {
  background: var(--black);
  color: #f2efe8;
}

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

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

h1, h2, h3, h4, .brand, .btn, .eyebrow {
  font-family: Archivo, Inter, sans-serif;
}

.ticker {
  overflow: hidden;
  background: var(--teal);
  color: #f7fffd;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track {
  display: inline-block;
  min-width: 100%;
  padding: 10px 0;
  animation: ticker 26s linear infinite;
}

.ticker-track span {
  padding-right: 34px;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  min-height: 76px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: grid;
  grid-template-columns: 52px auto;
  gap: 12px;
  align-items: center;
  color: var(--black);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .03em;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-mark {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand span {
  color: var(--teal);
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--warmgray);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .22em;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  color: #3e3b35;
  font-size: 13.5px;
  font-weight: 700;
}

.nav-links a {
  border-bottom: 2px solid transparent;
  padding: 27px 0 25px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  border-color: var(--teal);
  color: var(--black);
}

.nav-cta {
  background: var(--black);
  color: white;
  padding: 12px 18px;
  font-family: Archivo, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.nav-cta:hover {
  background: var(--teal);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.hero {
  min-height: 76vh;
  position: relative;
  display: flex;
  align-items: end;
  color: white;
  overflow: hidden;
  background: var(--black);
}

.hero.compact {
  min-height: 56vh;
}

.hero-media,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 6, 6, .22), rgba(5, 6, 6, .72));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px 72px;
}

.eyebrow {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.hero .eyebrow,
.dark-section .eyebrow {
  color: #91dbd3;
}

h1 {
  max-width: 920px;
  margin: 16px 0 18px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: .95;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

h2 {
  max-width: 780px;
  margin: 12px 0 14px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.18;
}

p {
  line-height: 1.62;
}

.lead {
  max-width: 680px;
  color: #5c5952;
  font-size: 17px;
}

.hero .lead {
  color: #eee9df;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .16em;
}

.hero .service-line {
  display: flex;
  flex-wrap: wrap;
}

.hero .service-phrase {
  display: inline-block;
  white-space: nowrap;
}

.hero .service-unit {
  display: inline-flex;
  white-space: nowrap;
}

.hero .service-divider {
  display: inline-block;
  margin: 0 .45em;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 24px;
  border: 1.5px solid transparent;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.btn-dark {
  background: var(--black);
  color: white;
}

.btn-dark:hover {
  background: var(--charcoal);
}

.btn-teal {
  background: var(--teal);
  color: white;
}

.btn-teal:hover {
  background: var(--teal-light);
}

.btn-light {
  background: white;
  color: var(--black);
}

.btn-outline {
  border-color: rgba(255, 255, 255, .72);
  color: white;
}

.section {
  padding: 82px 0;
}

.section.stone {
  background: var(--stone);
}

.section.dark-section {
  background: var(--black);
  color: #f2efe8;
}

.originals-teaser {
  position: relative;
  overflow: hidden;
  background-color: var(--black);
  background-image: linear-gradient(90deg, rgba(5, 6, 6, .92), rgba(5, 6, 6, .78) 48%, rgba(5, 6, 6, .62)), var(--teaser-bg);
  background-position: center;
  background-size: cover;
  color: #f5f1e8;
  border-top: 1px solid rgba(15, 155, 142, .45);
  border-bottom: 1px solid rgba(15, 155, 142, .35);
}

.originals-teaser-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  gap: 42px;
  align-items: center;
  padding-top: 62px;
  padding-bottom: 62px;
}

.originals-teaser-copy h2 {
  max-width: 860px;
  color: white;
}

.originals-teaser-copy p {
  max-width: 760px;
  color: #d8d1c6;
  font-size: 18px;
}

.btn-dominant {
  min-height: 58px;
  padding-inline: 30px;
  box-shadow: 0 0 0 1px rgba(145, 219, 211, .18), 0 20px 54px rgba(15, 155, 142, .26);
}

.originals-mini-grid {
  display: grid;
  gap: 12px;
}

.originals-mini-card {
  display: grid;
  gap: 8px;
  min-height: 108px;
  padding: 18px;
  border: 1px solid rgba(145, 219, 211, .32);
  background: rgba(13, 13, 13, .62);
  backdrop-filter: blur(8px);
}

.originals-mini-card:hover {
  border-color: var(--teal);
  background: rgba(15, 155, 142, .18);
}

.originals-mini-card span {
  color: white;
  font-family: Archivo, Inter, sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.originals-mini-card small {
  color: #cfc8bd;
  font-size: 13px;
  line-height: 1.45;
}

.dark-section .lead,
.dark-section p,
.dark-page p {
  color: #c9c3b8;
}

.dark-page .card {
  background: #161615;
  border-color: #34322d;
  color: #f2efe8;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.grid.six {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  background: white;
  min-width: 0;
}

.card.pad {
  padding: 28px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.testimonial-card {
  position: relative;
  min-height: 240px;
  padding: 30px;
  border: 1px solid var(--line);
  background: white;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--teal);
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.5;
}

.testimonial-card cite {
  display: block;
  margin-top: 22px;
  color: var(--teal);
  font-family: Archivo, Inter, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.testimonial-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .52);
}

.testimonial-empty span {
  color: #908a80;
  font-family: Archivo, Inter, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.beards-story {
  align-items: start;
}

.beards-story a:not(.btn) {
  color: var(--teal);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fundraiser-card {
  background: var(--black);
  color: var(--white);
  border: 1px solid rgba(15, 155, 142, .35);
  padding: 18px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .22);
}

.fundraiser-product-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin: 14px 0 18px;
  background: var(--charcoal);
}

.fundraiser-card h3 {
  margin-bottom: 8px;
  color: var(--white);
}

.fundraiser-card p {
  color: rgba(255, 255, 255, .78);
}

.fundraiser-card strong {
  color: var(--teal-light);
  font-size: 28px;
}

.fundraiser-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-left: 6px solid var(--teal);
  padding: 26px 0 26px 28px;
}

.photo-card {
  min-height: 310px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  color: white;
}

.photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s;
}

.photo-card:hover img {
  transform: scale(1.04);
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.66));
}

.photo-card .cap {
  position: relative;
  z-index: 2;
  padding: 24px;
}

.service-grid {
  align-items: stretch;
}

.service-card {
  display: grid;
  grid-template-rows: 210px 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: white;
}

.service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform .45s;
}

.service-card:hover img {
  transform: scale(1.04);
}

.service-card-copy {
  padding: 24px;
}

.service-card-copy p {
  margin-bottom: 0;
  color: #68635b;
}

.muted {
  color: #68635b;
}

.stack-gap {
  margin-top: 24px;
}

.stack-gap-lg {
  margin-top: 32px;
}

.placeholder {
  color: var(--blue);
  font-weight: 800;
}

.triplet,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.pill {
  border: 1px solid var(--line);
  background: #fbfaf7;
  padding: 7px 10px;
  color: #4f4b44;
  font-size: 12px;
  font-weight: 800;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.stat {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  font-family: Archivo, sans-serif;
  font-size: 32px;
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.image-frame {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: #ddd7cc;
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.video-frame {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: var(--black);
}

.video-frame video {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  display: grid;
  gap: 7px;
  color: #4d493f;
  font-size: 13px;
  font-weight: 800;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d6d0c4;
  border-radius: 0;
  padding: 12px 13px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.form textarea {
  min-height: 130px;
  resize: vertical;
}

.form button:disabled {
  cursor: wait;
  opacity: .72;
}

.form-trap {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: #4d493f;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.form-status[data-state="success"] {
  color: var(--teal-dark);
}

.form-status[data-state="error"] {
  color: #8b2c18;
}

.resource-copy {
  max-width: 880px;
}

.resource-copy li {
  margin: 0 0 16px;
  line-height: 1.62;
}

.method-accordion {
  margin-top: 42px;
}

.method-accordion details {
  border: 1px solid var(--line);
  background: white;
  margin-top: 12px;
  padding: 0 20px;
}

.method-accordion summary {
  cursor: pointer;
  padding: 18px 0;
  font-family: Archivo, Inter, sans-serif;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.method-accordion details p {
  margin: 0 0 14px;
}

.dark-section .method-accordion details {
  background: #161615;
  border-color: #34322d;
}

.do-dont {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.do-dont div {
  border: 1px solid var(--line);
  padding: 18px;
  background: white;
  font-weight: 800;
  overflow-wrap: anywhere;
}

footer {
  background: var(--charcoal);
  color: #b9b3aa;
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 34px;
}

footer h4 {
  margin: 0 0 14px;
  color: white;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

footer li {
  margin-bottom: 9px;
}

.email-text {
  display: inline-flex;
  margin-top: 12px;
  border: 1px solid #5a554d;
  padding: 10px 12px;
  color: white;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid #3b3934;
  color: #837d74;
  font-size: 12.5px;
}

@media (max-width: 980px) {
  .nav-inner {
    min-height: 64px;
    align-items: center;
    flex-direction: row;
    padding-top: 8px;
    padding-bottom: 8px;
    gap: 14px;
  }

  .brand {
    grid-template-columns: 44px auto;
    gap: 10px;
    min-width: 0;
    font-size: 14px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand small {
    font-size: 11px;
    letter-spacing: .12em;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    margin-left: auto;
    border: 1px solid var(--line);
    background: var(--black);
    color: white;
    cursor: pointer;
    font-size: 26px;
    line-height: 1;
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 49;
    display: grid;
    gap: 0;
    max-height: calc(100dvh - 74px);
    overflow-y: auto;
    padding: 10px 18px 18px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 24px 54px rgba(0, 0, 0, .18);
    backdrop-filter: blur(10px);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    display: flex;
    align-items: center;
    min-height: 48px;
    border-bottom: 1px solid var(--line);
    color: #282620;
    font-weight: 800;
  }

  .mobile-menu a[aria-current="page"] {
    color: var(--teal);
  }

  .mobile-menu-cta {
    justify-content: center;
    min-height: 54px;
    margin-top: 14px;
    border: 0;
    background: var(--black);
    color: white !important;
    font-family: Archivo, Inter, sans-serif;
    font-size: 13px;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  body.nav-open {
    overflow: hidden;
  }

  .grid.three,
  .grid.four,
  .grid.six,
  .footer-grid,
  .split,
  .stat-strip,
  .do-dont,
  .originals-teaser-inner,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 520px) {
  .ticker {
    font-size: 10.5px;
    letter-spacing: .1em;
  }

  .ticker-track {
    padding: 8px 0;
  }

  .wrap,
  .nav-inner,
  .hero-content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav-inner {
    min-height: 60px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .brand {
    grid-template-columns: 38px minmax(0, auto);
    gap: 8px;
    font-size: 12.5px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand small {
    margin-top: 3px;
    font-size: 11px;
    letter-spacing: .08em;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }

  .hero {
    min-height: 68vh;
  }

  h1 {
    max-width: min(100%, 340px);
    font-size: 29px;
    line-height: 1.06;
  }

  .hero .lead {
    max-width: min(100%, 340px);
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: .04em;
  }

  .hero .service-line {
    display: block;
    width: 100%;
  }

  .hero .service-unit {
    display: block;
    margin-bottom: 4px;
  }

  .hero .service-divider {
    display: none;
  }

  .section {
    padding: 46px 0;
  }

  .btn {
    width: 100%;
  }

  .originals-teaser-inner {
    gap: 28px;
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .originals-teaser-copy p {
    font-size: 16px;
  }

  .testimonial-card {
    min-height: 0;
    padding: 24px;
  }

  .testimonial-card blockquote {
    font-size: 18px;
  }

  .fundraiser-strip {
    display: block;
    padding: 22px 0 0 20px;
  }

  .fundraiser-strip .btn {
    margin-top: 18px;
  }
}
