@font-face {
  font-family: "League Gothic";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/league-gothic-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/fonts/manrope-latin.woff2") format("woff2");
}

:root {
  --paper: #f7f5f1;
  --paper-deep: #efece6;
  --ink: #0a0a09;
  --ink-700: #161513;
  --ink-600: #2a2926;
  --ink-500: #4a4844;
  --ink-400: #7c7972;
  --ink-300: #b3afa7;
  --red: #d93324;
  --red-deep: #a82318;
  --red-tint: #f6dad6;
  --display: "League Gothic", "Arial Narrow", sans-serif;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --max: 1200px;
  --shadow: 5px 5px 0 var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
iframe:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 1000;
  background: var(--red);
  color: #fff;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 12px;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 66px;
  border-bottom: 2px solid var(--ink-600);
  background: var(--ink);
  color: var(--paper);
}

.nav-inner {
  width: min(calc(100% - 48px), var(--max));
  min-height: 66px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  text-decoration: none;
}

.brand-link img {
  width: 38px;
  height: 38px;
}

.brand-wordmark {
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: .06em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links a {
  color: var(--ink-300);
  padding: 9px 12px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.nav-links .nav-cta {
  margin-left: 14px;
  border: 2px solid var(--red);
  background: var(--red);
  color: #fff;
  padding: 9px 16px;
}

.nav-links .nav-cta:hover {
  border-color: var(--red-deep);
  background: var(--red-deep);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--ink-500);
  background: transparent;
  color: var(--paper);
  padding: 9px 12px;
  font: 800 .72rem/1 var(--sans);
  letter-spacing: .12em;
  text-transform: uppercase;
}

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

.mobile-menu {
  position: fixed;
  inset: 66px 0 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  background: var(--ink);
  padding: 26px 24px 48px;
}

.mobile-menu a {
  border-bottom: 1px solid var(--ink-600);
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(2rem, 11vw, 3.25rem);
  line-height: 1;
  padding: 18px 0;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-menu a:last-child {
  color: var(--red);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 66px);
  display: flex;
  align-items: center;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(74px, 10vw, 134px) 24px clamp(72px, 9vw, 120px);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 9, .96) 0%, rgba(10, 10, 9, .86) 40%, rgba(10, 10, 9, .46) 72%, rgba(10, 10, 9, .26) 100%);
  pointer-events: none;
}

.hero-grid {
  position: static;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.hero-grid > div {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--red);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.section-heading,
.cta-band h2,
.footer-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: .9;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(4.2rem, 9.8vw, 9.4rem);
}

body[data-page-event="meet_page_view"] .hero h1 {
  max-width: 15ch;
  font-size: clamp(4.2rem, 8vw, 8rem);
}

.hero h1 .red {
  color: var(--red);
}

.hero-copy {
  max-width: 57ch;
  margin: 28px 0 0;
  color: #d9d6cf;
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  background: var(--ink);
  box-shadow: var(--shadow);
  color: var(--paper);
  padding: 13px 21px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  box-shadow: none;
  transform: translate(5px, 5px);
}

.button-red {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.button-red:hover {
  border-color: var(--red-deep);
  background: var(--red-deep);
}

.button-light {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.button-ghost {
  border-color: var(--ink-400);
  background: transparent;
  box-shadow: none;
  color: var(--paper);
}

.button-ghost:hover {
  border-color: var(--paper);
  transform: none;
}

.hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  margin: 0;
  overflow: hidden;
  background: var(--ink-700);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(10, 10, 9, .08), rgba(10, 10, 9, .72));
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media-stationery img {
  filter: grayscale(1) contrast(1.12) brightness(.72);
}

.hero-media-ink img {
  object-position: 44% center;
  filter: saturate(.88) contrast(1.08) brightness(.8);
}

.section {
  position: relative;
  padding: clamp(72px, 9vw, 112px) 24px;
}

.grin-seam {
  display: block;
  height: 72px;
  line-height: 0;
}

.grin-seam svg {
  width: 100%;
  height: 100%;
  display: block;
}

.grin-seam .gs-edge {
  display: none;
}

.grin-seam .gs-fill {
  fill: var(--paper);
}

.grin-seam--tint .gs-fill {
  fill: var(--paper-deep);
}

.grin-seam--dark .gs-fill {
  fill: var(--ink);
}

.grin-seam--flip svg {
  transform: scaleX(-1);
}

.grin-seam.on-dark {
  background: var(--ink);
}

.grin-seam.on-paper {
  background: var(--paper);
}

.grin-seam.on-tint {
  background: var(--paper-deep);
}

.cta-band,
.ggg-site-footer {
  position: relative;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-alt {
  background: var(--paper-deep);
}

.section-dark {
  background: var(--ink);
  color: var(--paper);
}

.container {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.intro-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(230px, .72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 8vw, 108px);
  align-items: start;
}

.section-heading {
  max-width: 12ch;
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.lede {
  margin: 0;
  color: var(--ink-500);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.section-dark .lede {
  color: var(--ink-300);
}

.body-copy p:first-child {
  margin-top: 0;
}

.body-copy p:last-child {
  margin-bottom: 0;
}

.content-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: stretch;
}

.content-media-copy .section-heading {
  margin-bottom: 28px;
}

.media-panel {
  min-height: clamp(360px, 38vw, 520px);
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--ink-700);
  box-shadow: 8px 8px 0 var(--red);
}

.media-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-panel--palette img {
  object-position: 54% center;
  filter: saturate(.72) contrast(1.04);
}

.media-panel--marker img {
  object-position: 58% center;
  filter: saturate(.9) contrast(1.06);
}

.location-marquee {
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--red);
  color: var(--ink);
  overflow: hidden;
  white-space: nowrap;
  padding: 18px 0;
}

.location-marquee-track {
  display: flex;
  width: max-content;
  animation: location-scroll 28s linear infinite;
}

.location-marquee span {
  font-family: var(--display);
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 1;
  padding-right: 22px;
  text-transform: uppercase;
}

.location-marquee i {
  color: var(--paper);
  font-size: .34em;
  font-style: normal;
  vertical-align: middle;
}

@keyframes location-scroll {
  to {
    transform: translateX(-33.333%);
  }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 46px;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.service-card,
.review-card {
  min-height: 260px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 30px;
  background: var(--paper);
}

.service-card:nth-child(even) {
  background: #fff;
}

.card-number {
  color: var(--red);
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: .08em;
}

.service-card h3,
.review-card h3,
.step h3,
.fit-panel h3 {
  margin: 16px 0 12px;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.service-card p,
.review-card p,
.step p,
.fit-panel p {
  margin: 0;
  color: var(--ink-500);
  font-size: .93rem;
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--red-deep);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.proof-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--ink-600);
  background: var(--ink-700);
}

.proof-image {
  width: 100%;
  height: clamp(250px, 24vw, 340px);
  border-bottom: 1px solid var(--ink-600);
  object-fit: cover;
}

.proof-image--logo {
  object-fit: contain;
  background: #fff;
  padding: clamp(24px, 3vw, 48px);
}

.proof-body {
  flex: 1;
  padding: 22px;
}

.proof-label {
  color: var(--red);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.proof-body h3 {
  margin: 8px 0 10px;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: var(--paper);
}

.proof-body p {
  margin: 0;
  color: var(--ink-300);
  font-size: .86rem;
}

.proof-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 48px;
  border-top: 2px solid var(--paper);
  border-left: 2px solid var(--paper);
}

.step {
  min-height: 250px;
  border-right: 2px solid var(--paper);
  border-bottom: 2px solid var(--paper);
  padding: 28px;
}

.step .card-number {
  color: var(--red);
}

.step h3 {
  color: var(--paper);
}

.step p {
  color: var(--ink-300);
}

.cta-band {
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--red);
  color: #fff;
  padding: clamp(58px, 8vw, 94px) 24px;
}

.cta-band-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: end;
}

.cta-band h2 {
  max-width: 12ch;
  font-size: clamp(3.6rem, 7vw, 7rem);
}

.cta-band p {
  max-width: 62ch;
  margin: 20px 0 0;
}

.phone-line {
  margin-top: 18px;
  font-weight: 800;
}

.phone-line a {
  color: #fff;
}

.faq-list {
  max-width: 920px;
  margin: 42px auto 0;
  border-top: 2px solid var(--ink);
}

.faq-list details {
  border-bottom: 2px solid var(--ink);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  padding: 24px 4px;
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--red);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 75ch;
  padding: 0 4px 24px;
  color: var(--ink-500);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 46px;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.review-card {
  min-height: 230px;
}

.priority-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: priority;
}

.priority-list li {
  counter-increment: priority;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  border-top: 1px solid var(--ink-300);
  padding: 18px 0;
}

.priority-list li::before {
  content: "0" counter(priority);
  color: var(--red);
  font-family: var(--display);
  font-size: 1.4rem;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 46px;
  border: 2px solid var(--ink);
}

.fit-panel {
  padding: 34px;
  background: #fff;
}

.fit-panel + .fit-panel {
  border-left: 2px solid var(--ink);
  background: var(--paper-deep);
}

.fit-panel ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.fit-panel li {
  border-top: 1px solid var(--ink-300);
  padding: 12px 0;
  color: var(--ink-500);
}

.fit-panel li::before {
  content: "— ";
  color: var(--red);
  font-weight: 800;
}

.scheduler-shell {
  margin-top: 44px;
  border: 2px solid var(--ink);
  background: #fff;
  box-shadow: 8px 8px 0 var(--red);
}

.scheduler-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  padding: 18px 22px;
}

.scheduler-head strong {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 400;
  text-transform: uppercase;
}

.scheduler-head span {
  color: var(--ink-300);
  font-size: .78rem;
}

.scheduler-frame {
  width: 100%;
  min-height: 720px;
  display: block;
  border: 0;
  background: #fff;
}

.scheduler-fallback {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 2px solid var(--ink);
  padding: 18px 22px;
  font-size: .86rem;
}

.scheduler-fallback a {
  color: var(--red-deep);
  font-weight: 800;
}

.after-booking {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.after-booking article {
  border-top: 4px solid var(--red);
  background: var(--paper-deep);
  padding: 24px;
}

.after-booking h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 400;
  text-transform: uppercase;
}

.after-booking p {
  margin: 0;
  color: var(--ink-500);
  font-size: .9rem;
}

.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 24px 28px;
}

.footer-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 64px;
}

.footer-logo {
  width: min(230px, 75%);
  height: auto;
}

.footer-tagline {
  max-width: 38ch;
  margin: 18px 0 0;
  color: var(--ink-300);
}

.footer-nap {
  margin: 20px 0 0;
  color: var(--ink-300);
  font-size: .85rem;
}

.footer-nap a {
  color: var(--paper);
}

.footer-title {
  font-size: 1.7rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  margin-top: 16px;
}

.footer-links a {
  color: var(--ink-300);
  font-size: .82rem;
}

.footer-links a:hover {
  color: var(--paper);
}

.footer-bottom {
  width: min(100%, var(--max));
  margin: 42px auto 0;
  border-top: 1px solid var(--ink-600);
  padding-top: 20px;
  color: var(--ink-400);
  font-size: .72rem;
}

.consent-panel[hidden] {
  display: none;
}

.consent-panel {
  position: fixed;
  z-index: 500;
  right: 20px;
  bottom: 20px;
  width: min(430px, calc(100% - 40px));
  border: 2px solid var(--paper);
  background: var(--ink);
  box-shadow: 8px 8px 0 var(--red);
  color: var(--paper);
  padding: 22px;
}

.consent-panel h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  text-transform: uppercase;
}

.consent-panel p {
  margin: 0;
  color: var(--ink-300);
  font-size: .82rem;
}

.consent-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.consent-actions button {
  border: 2px solid var(--paper);
  background: transparent;
  color: var(--paper);
  padding: 10px 14px;
  font: 800 .7rem/1 var(--sans);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.consent-actions .allow {
  border-color: var(--red);
  background: var(--red);
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-grid,
  .intro-grid,
  .split-grid,
  .content-media-grid,
  .cta-band-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 680px) {
  .nav-inner {
    width: min(calc(100% - 32px), var(--max));
  }

  .brand-wordmark {
    font-size: 1.05rem;
  }

  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 20vw, 6.3rem);
  }

  body[data-page-event="meet_page_view"] .hero h1 {
    max-width: 12ch;
    font-size: clamp(3.5rem, 17vw, 5.7rem);
  }

  .section,
  .cta-band {
    padding-left: 18px;
    padding-right: 18px;
  }

  .card-grid,
  .proof-grid,
  .review-grid,
  .steps,
  .fit-grid,
  .after-booking {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 700px;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(10, 10, 9, .96), rgba(10, 10, 9, .7));
  }

  .grin-seam {
    height: 44px;
  }

  .proof-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .fit-panel + .fit-panel {
    border-top: 2px solid var(--ink);
    border-left: 0;
  }

  .scheduler-shell {
    box-shadow: 5px 5px 0 var(--red);
  }

  .scheduler-frame {
    min-height: 720px;
  }

  .media-panel {
    min-height: 310px;
    box-shadow: 5px 5px 0 var(--red);
  }

  .scheduler-head,
  .scheduler-fallback {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .consent-actions {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .location-marquee-track {
    animation: none;
  }
}
