@font-face {
  font-family: "Open Sauce";
  src: url("/static/assets/fonts/opensauceone-medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --mobile-gutter: 1.75rem;
  --font-sans: "Open Sauce", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #101315;
  --ink-soft: #5d6464;
  --paper: #f7f7f5;
  --paper-deep: #ecefeb;
  --white: #ffffff;
  --gold: #d59a4b;
  --navy: #17324d;
  --green: #53685c;
  --green-deep: #24362c;
  --sky: #dbe8ec;
  --line: rgba(16, 19, 21, 0.14);
  --line-light: rgba(255, 255, 255, 0.24);
  --shadow: 0 22px 70px rgba(16, 19, 21, 0.14);
  --radius: 8px;
  --hero-x: 0px;
  --hero-y: 0px;
  --hero-scroll-y: 0px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-loaded .hero__content > *,
body.is-loaded .scroll-cue {
  opacity: 1;
  transform: translateY(0);
}

a {
  color: inherit;
}

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 40;
  transform: translateY(-170%);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 0.75rem 0.9rem;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: clip;
  color: var(--white);
  background: var(--green-deep);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) brightness(1.12);
  transform: translate3d(var(--hero-x, 0px), calc(var(--hero-y, 0px) + var(--hero-scroll-y, 0px)), 0)
    scale(1.045);
  will-change: transform;
}

.hero__shade {
  background:
    radial-gradient(circle at 50% 45%, rgba(16, 19, 21, 0.04), rgba(16, 19, 21, 0.32) 68%),
    linear-gradient(180deg, rgba(16, 19, 21, 0.18), rgba(16, 19, 21, 0.04) 38%, rgba(16, 19, 21, 0.28));
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4rem 0 5.5rem;
  text-align: center;
}

.hero__content > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 760ms ease, transform 760ms var(--ease);
}

.hero__content > :nth-child(2) {
  transition-delay: 80ms;
}

.hero__content > :nth-child(3) {
  transition-delay: 160ms;
}

.hero__content > :nth-child(4) {
  transition-delay: 240ms;
}

.hero__content > :nth-child(5) {
  transition-delay: 320ms;
}

.hero__logo {
  width: min(520px, 76vw);
  height: auto;
  margin: 0 auto 2.4rem;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.34));
}

.hero h1 {
  margin: 0;
  font-size: 4rem;
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 12px 46px rgba(0, 0, 0, 0.38);
}

.hero__kicker {
  margin: 1.05rem 0 0;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero__copy {
  width: min(710px, 100%);
  margin: 4rem auto 0;
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.75;
  text-wrap: balance;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.38);
}

.hero__actions,
.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero__actions {
  margin: 1.6rem 0 0;
}

.social-links {
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
}

.social-links a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0.76rem 1.1rem;
  font-size: 0.95rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--solid {
  background: var(--white);
  color: var(--ink);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.button--outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 1.5rem;
  width: 42px;
  height: 42px;
  opacity: 0;
  transform: translate(-50%, 10px);
  transition: opacity 760ms ease 430ms, transform 760ms var(--ease) 430ms;
}

.scroll-cue::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-right: 5px solid currentColor;
  border-bottom: 5px solid currentColor;
  border-radius: 2px;
  color: var(--white);
  transform: rotate(45deg) translate(-1px, -1px);
}

.scroll-cue--static {
  position: relative;
  left: auto;
  bottom: auto;
  display: inline-block;
  opacity: 1;
  transform: none;
}

main {
  background: var(--paper);
}

.page-section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 6rem 0;
}

.section-label {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-label--light {
  color: rgba(255, 255, 255, 0.78);
}

h2,
h3,
p {
  margin-top: 0;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: 3rem;
  line-height: 1.03;
  letter-spacing: 0;
  text-wrap: balance;
}

p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.founder {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1fr);
  align-items: center;
  gap: 5rem;
}

.founder__copy p {
  max-width: 620px;
  font-size: 1.08rem;
}

.founder__copy .button {
  margin-top: 1rem;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-deep);
  line-height: 0;
  box-shadow: var(--shadow);
}

.image-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.image-frame:hover img {
  transform: scale(1.025);
}

.image-frame--portrait {
  aspect-ratio: 4 / 5;
}

.image-frame--landscape {
  aspect-ratio: 1.35 / 1;
  align-self: center;
}

.services {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(20rem, 0.85fr);
  align-items: start;
  gap: 5.5rem;
  padding-top: 3rem;
}

.services__copy > p {
  max-width: 660px;
  font-size: 1.05rem;
}

.service-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.service-list li {
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.service-list span {
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 900;
}

.service-list strong {
  font-size: 1.05rem;
  line-height: 1.35;
}

.services__note {
  margin-top: 1.5rem;
  color: var(--ink);
}

.why-band,
.connect-band {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: clip;
  padding: 5rem 0;
  background: var(--green-deep);
  color: var(--white);
}

.why-band img,
.connect-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-band__shade,
.connect-band__shade {
  position: absolute;
  inset: 0;
  background: rgba(16, 19, 21, 0.5);
}

.why-band__content,
.connect-band__content {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100% - 2rem));
  text-align: center;
}

.why-band h2,
.connect-band h2 {
  color: var(--white);
}

.why-band p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.proof-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 2.4rem 0 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.proof-points div {
  padding: 1.25rem 0.9rem;
}

.proof-points div + div {
  border-left: 1px solid var(--line-light);
}

.proof-points dt {
  margin-bottom: 0.3rem;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 900;
}

.proof-points dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.testimonials {
  padding-top: 6.5rem;
  padding-bottom: 7rem;
}

.testimonials__head {
  width: min(720px, 100%);
  margin: 0 auto 3.25rem;
  text-align: center;
}

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

.quote-grid figure {
  margin: 0;
  padding: 0 2.25rem;
}

.quote-grid figure + figure {
  border-left: 1px solid var(--line);
}

.quote-grid blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.42;
  text-align: center;
}

.quote-grid figcaption {
  margin-top: 1.6rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.connect-band {
  min-height: 460px;
}

.connect-band h2 {
  margin-bottom: 1.2rem;
  color: var(--gold);
  font-size: 3.6rem;
}

.instagram-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.instagram-strip__head {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
}

.instagram-strip__head .section-label {
  margin: 0;
}

.instagram-strip__head a {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28em;
}

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

.instagram-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--paper-deep);
}

.instagram-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 480ms var(--ease), filter 220ms ease;
}

.instagram-tile::after {
  content: "View on Instagram";
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.8rem;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(16, 19, 21, 0.72));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.instagram-tile:hover img,
.instagram-tile:focus-visible img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.instagram-tile:hover::after,
.instagram-tile:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.instagram-empty {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0 1.6rem;
  border-top: 1px solid var(--line);
}

.instagram-empty p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.instagram-empty a {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28em;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(22rem, 1fr);
  gap: 5rem;
  align-items: start;
  padding-top: 6.5rem;
}

.contact__copy {
  position: sticky;
  top: 7rem;
}

.contact__copy p {
  max-width: 520px;
  font-size: 1.06rem;
}

.contact__direct {
  margin-top: 2rem;
  color: var(--ink);
  font-weight: 900;
}

.contact__direct a {
  display: block;
  width: fit-content;
  margin-top: 0.35rem;
  color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28em;
}

.tally-shell {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.tally-shell iframe {
  display: block;
  width: 100%;
  min-height: 520px;
  border: 0;
}

.site-footer {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  padding: 2.6rem 0 3rem;
  border-top: 1px solid var(--line);
}

.site-footer__brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1;
  color: var(--ink);
  text-decoration: none;
}

.site-footer__brand span {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-footer__brand small {
  color: currentColor;
  font-size: 0.7rem;
  opacity: 0.74;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-footer__links {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
}

.site-footer__links a,
.site-footer__credit {
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 900;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28em;
}

.site-footer__meta {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.site-footer__country {
  margin: 0;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
}

.site-footer__credit {
  display: inline;
  margin-left: 0.45rem;
  color: var(--ink);
  text-decoration: none;
}

.site-footer__credit span {
  color: var(--navy);
}

.site-footer__credit:hover,
.site-footer__credit:focus-visible {
  text-decoration: none;
}

.section-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms ease, transform 680ms var(--ease);
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 760px) {
  .hero h1 {
    font-size: 5.8rem;
  }

  h2 {
    font-size: 3.6rem;
  }
}

@media (min-width: 1120px) {
  .hero h1 {
    font-size: 7rem;
  }

  .hero__logo {
    width: min(620px, 70vw);
  }

  h2 {
    font-size: 4rem;
  }
}

@media (max-width: 920px) {
  .founder,
  .services,
  .contact {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }

  .services {
    padding-top: 1rem;
  }

  .contact__copy {
    position: static;
  }

  .quote-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .quote-grid figure {
    padding: 0;
  }

  .quote-grid figure + figure {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 2.2rem;
  }

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

@media (max-width: 620px) {
  .hero {
    min-height: 100svh;
  }

  .hero__content {
    width: min(460px, calc(100% - (var(--mobile-gutter) * 2)));
    padding-top: 3rem;
    padding-bottom: 4.75rem;
  }

  .hero__logo {
    width: min(380px, 82vw);
    margin-bottom: 1.8rem;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero__copy {
    margin-top: 2.6rem;
    font-size: 0.98rem;
  }

  .hero__actions,
  .social-links {
    justify-content: center;
  }

  .button {
    width: 100%;
  }

  .page-section {
    width: min(calc(100% - (var(--mobile-gutter) * 2)), 1180px);
    padding: 4.4rem 0;
  }

  h2 {
    font-size: 2.45rem;
  }

  .service-list li {
    grid-template-columns: 2.6rem minmax(0, 1fr);
  }

  .why-band,
  .connect-band {
    min-height: auto;
    padding: 4.4rem 0;
  }

  .why-band {
    margin: 4.4rem 0;
  }

  .proof-points {
    grid-template-columns: 1fr;
  }

  .proof-points div + div {
    border-left: 0;
    border-top: 1px solid var(--line-light);
  }

  .connect-band {
    min-height: 360px;
  }

  .connect-band h2 {
    font-size: 2.7rem;
  }

  .instagram-strip__head {
    width: min(calc(100% - (var(--mobile-gutter) * 2)), 1180px);
    align-items: flex-start;
    flex-direction: column;
  }

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

  .instagram-tile:nth-child(n + 4) {
    display: none;
  }

  .instagram-empty {
    width: min(calc(100% - (var(--mobile-gutter) * 2)), 1180px);
    align-items: flex-start;
    flex-direction: column;
  }

  .contact {
    padding-top: 4.8rem;
  }

  .tally-shell,
  .tally-shell iframe {
    min-height: 560px;
  }

  .site-footer {
    width: min(calc(100% - (var(--mobile-gutter) * 2)), 1180px);
    grid-template-columns: 1fr;
  }

  .site-footer__links {
    justify-content: flex-start;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .hero__image {
    transform: scale(1.02);
  }
}
