:root {
  --ink: #1a1a1a;
  --ink-soft: #242220;
  --paper: #f7f6f3;
  --white: #ffffff;
  --text: #1a1a1a;
  --muted: #5c564c;
  --quiet: #6e675c;
  --band: #f2f0eb;
  --gold: #c9a74a;
  --gold-deep: #a8883a;
  --line: #e3ddd4;
  --line-soft: #e4dfd6;
  --danger: #8d3a2f;
  --serif: "Marcellus", "Times New Roman", serif;
  --sans: "Marcellus", "Times New Roman", serif;
  --header: 72px;
  color-scheme: light;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #ffffff;
  color: #1a1a1a;
  font-family: var(--sans);
  font-synthesis: none;
  font-size: 17px;
  line-height: 1.5;
  color-scheme: light;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

button, input, textarea { font: inherit; }

a { color: inherit; }

button { cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

::selection {
  background: #c9a74a;
  color: #1a1a1a;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 50;
  background: white;
  color: var(--ink);
  padding: 10px 14px;
}

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

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.narrow { width: min(760px, calc(100% - 40px)); }

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2, h3 { font-weight: 500; }

h1 {
  margin: 0 auto;
  max-width: 12ch;
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: #1a1a1a;
}

h1 span { display: block; }

h1 span:nth-child(2) {
  margin: 2px 0 10px;
}

.mark {
  display: inline-block;
  font-style: italic;
  font-weight: 500;
  padding-bottom: 3px;
  border-bottom: 3px solid var(--gold);
  line-height: 1.05;
}

h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.2;
  color: #1a1a1a;
}

.deck, .lede, .band p, .invite p, .close p, .points p, .steps p, .reviews .lede {
  color: #5c564c;
}

.deck {
  margin: 22px auto 0;
  max-width: 38rem;
  font-size: 18px;
  line-height: 1.02;
}

.lede { margin: 14px 0 0; max-width: 40rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 16px;
  border: 0;
  background: var(--gold);
  color: #16140f;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  text-align: center;
  border-radius: 8px;
}

.btn:hover { background: #d4b45e; }

.btn-ghost {
  background: transparent;
  color: #1a1a1a;
  box-shadow: inset 0 0 0 1px #c9c2b6;
}

.btn-ghost:hover { background: #f3f1ec; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header);
  background: #2f2d2b;
  border-bottom: 1px solid #242220;
}

.header-inner {
  position: relative;
  height: 100%;
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand { display: flex; align-items: center; }

.brand img { height: 46px; width: auto; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-cta { display: none; }

.js-motion .header-cta {
  display: inline-flex;
  position: absolute;
  top: 50%;
  right: 0;
  opacity: 0;
  transform: translate3d(18px, -46%, 0);
  pointer-events: none;
  transition:
    opacity 0.45s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-motion .site-header.has-cta .header-cta {
  opacity: 1;
  transform: translate3d(0, -50%, 0);
  pointer-events: auto;
}

.js-motion .reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-motion .reveal.is-in {
  opacity: 1;
  transform: none;
}

.js-motion .review-grid .reveal:nth-child(2),
.js-motion .stats .reveal:nth-child(2) { transition-delay: 0.08s; }

.js-motion .review-grid .reveal:nth-child(3),
.js-motion .stats .reveal:nth-child(3) { transition-delay: 0.16s; }

.js-motion .stats .reveal:nth-child(4) { transition-delay: 0.24s; }

.hero {
  display: block;
  padding: 16px 0 0;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 8px 40px;
  text-align: center;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.fine {
  margin: 16px 0 0;
  color: #f3efe8;
  font-size: 14px;
}

.hero h1,
.hero .deck {
  color: #fff;
  font-size: 22px;
}

.hero h1 {
  max-width: none;
  font-size: clamp(34px, 4.6vw, 76px);
  font-weight: 700;
  font-synthesis: weight;
  -webkit-text-stroke: 0.7px currentColor;
  paint-order: stroke fill;
}

.hero h1 span:last-child {
  white-space: nowrap;
  margin-bottom: 0;
}

.hero .deck { text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35); }

.fine a {
  color: #1c1b19;
  white-space: nowrap;
}

.desktop-only { display: none; }

.trust-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.trust-row li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.hero-photo {
  position: relative;
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
  overflow: hidden;
  border-radius: 18px;
}

.hero-photo > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-focus, center 12%);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 14, 12, 0.62) 0%, rgba(16, 14, 12, 0.42) 42%, rgba(16, 14, 12, 0.62) 100%);
}

.reviews {
  padding: 28px 0 48px;
  text-align: center;
  background: #f2f0eb;
}

#reviews-title,
#work-title,
#visit-title {
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--gold);
}

.reviews,
.reviews * {
  font-family: var(--serif);
  font-synthesis: none;
}

#reviews-title,
#work-title {
  display: block;
  width: fit-content;
  margin-inline: auto;
}

.review-grid {
  display: grid;
  gap: 22px;
  margin-top: 36px;
  text-align: left;
}

.review-grid figure {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 28px 28px 24px;
  background: #fff;
  border: 1px solid #e3ddd4;
  border-radius: 12px;
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.review-google {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.review-grid .stars {
  margin: 0;
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 0.12em;
  line-height: 1;
}

.review-grid blockquote {
  margin: 0;
  flex: 1;
}

.review-grid blockquote p {
  margin: 0 0 14px;
  color: #3d4450;
  font-size: 16px;
  line-height: 1.6;
}

.review-grid blockquote p:last-child { margin-bottom: 0; }

.review-grid figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 22px;
}

.review-initials {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #f3eee4;
  color: #8a7344;
  font-size: 13px;
  font-weight: 400;
}

.review-person { display: block; }

.review-person strong {
  display: block;
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 400;
}

.review-person span {
  display: block;
  margin-top: 2px;
  color: #8a8478;
  font-size: 13px;
  font-weight: 500;
}

.more-reviews { margin: 18px 0 0; font-size: 14px; }

.more-reviews a { color: #1c1b19; }

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 48px;
  background: #f2f0eb;
  border-top: 1px solid #e3ddd4;
  border-bottom: 1px solid #e3ddd4;
}

.stat {
  padding: 22px 18px 22px 20px;
  border-bottom: 1px solid #e3ddd4;
}

.stat:nth-child(odd) { border-right: 1px solid #e3ddd4; }

.stat:nth-last-child(-n + 2) { border-bottom: 0; }

.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  color: #1a1a1a;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: #5c564c;
  font-size: 13px;
  letter-spacing: 0.03em;
}

.band { padding: 36px 0; }

.band .wrap > .eyebrow,
.band .wrap > h2,
.band .wrap > .lede,
.reviews .wrap > .eyebrow,
.reviews .wrap > h2,
.reviews .wrap > .lede {
  text-align: center;
}

.band .wrap > .lede,
.reviews .wrap > .lede { margin-inline: auto; }

.band-tight { padding-top: 8px; }

.work-grid {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

@media (max-width: 719px) {
  .work-grid {
    width: calc(100% + 40px);
    margin-inline: -20px;
  }
}

.work-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #111;
}

.work-grid img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.work-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 88px 16px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55) 42%, rgba(0, 0, 0, 0.86));
  color: #fff;
  font-size: 14px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.work-grid figcaption span { color: #e7dfd2; }

.visit {
  padding: 64px 0 48px;
  background: #f2f0eb;
  border-top: 1px solid #e3ddd4;
}

.visit-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.visit-copy { text-align: center; }

.visit-copy {
  width: min(100%, 36rem);
  container-type: inline-size;
}

.visit h2 { color: #1a1a1a; }

#visit-title {
  white-space: nowrap;
  font-size: clamp(22px, 7.4cqi, 44px);
}

.visit-lead {
  margin: 16px auto 0;
  color: #3d3832;
  font-size: 18px;
  line-height: 1.35;
}

.visit-lead span { display: block; }

.visit .btn { margin-top: 0; }

.visit-places {
  margin: 0 auto;
  width: min(100%, 36rem);
  color: #5c564c;
  font-size: 13px;
  line-height: 1.45;
}

.invite, .close {
  padding: 20px 0 8px;
  text-align: center;
}

.invite h2, .close h2 { max-width: 16ch; margin-inline: auto; }

.invite .wrap, .close .wrap { text-align: center; }

.invite p, .close p { margin-inline: auto; }

.invite p, .close p {
  margin: 16px 0 0;
  max-width: 38rem;
  font-size: 18px;
}

.invite .btn { margin-top: 22px; }

.points, .steps {
  display: grid;
  gap: 18px 24px;
  max-width: 920px;
  margin: 18px auto 0;
}

.points article, .steps li {
  padding-top: 12px;
  border-top: 1px solid #e6e1d8;
}

.steps {
  list-style: none;
  padding: 0;
  counter-reset: step;
}

.steps li { counter-increment: step; }

.steps h3::before {
  content: counter(step) "  ";
  color: var(--gold);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.site-footer {
  padding: 18px 0 22px;
  border-top: 1px solid #e6e1d8;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-inner img {
  height: 32px;
  width: auto;
}

.site-footer p {
  margin: 0;
  color: #5c564c;
  font-size: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
}

.footer-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.qualify {
  color-scheme: light;
  color: #1a1a1a;
  background: #ffffff;
  overflow: hidden;
}

.qualify[open] {
  position: fixed;
  inset: 0;
  width: min(520px, 100%);
  height: auto;
  max-width: 520px;
  max-height: none;
  margin: 0 auto;
  padding: 0;
  border: 0;
}

.qualify::backdrop {
  background: rgba(10, 10, 10, 0.72);
}

.q-shell {
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.q-top { padding: 18px 20px 0; }

.q-top-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
}

.q-back { justify-self: start; }
.q-close { justify-self: end; }

.q-brand {
  margin: 0;
  flex: 1;
  min-width: 0;
  text-align: center;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a1a1a;
  white-space: nowrap;
}

.q-back,
.q-close {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 0;
}

.q-close { padding-left: 12px; }

.q-count {
  margin: 12px 0 8px;
  font-size: 13px;
  font-weight: 600;
  color: #5c564c;
}

.q-meter {
  height: 2px;
  background: #e3ddd4;
}

.q-meter span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
}

.q-step {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 26px 20px 12px;
  -webkit-overflow-scrolling: touch;
}

.q-kicker {
  margin: 0 0 8px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.q-step h2 {
  margin: 0 0 18px;
  color: #1a1a1a;
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.q-step h2:focus {
  outline: none;
}

.q-help {
  margin: -6px 0 18px;
  color: #5c564c;
  font-size: 15px;
}

.choice {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 12px;
  padding: 18px 18px;
  border: 1px solid #e3ddd4;
  border-radius: 16px;
  background: #f2f0eb;
  color: #1a1a1a;
  font-size: 17px;
  text-align: left;
}

@media (hover: hover) and (pointer: fine) {
  .choice:hover { border-color: #c9a74a; }
}

.choice[aria-pressed="true"] {
  border-color: var(--gold);
  background: rgba(201, 167, 74, 0.16);
  box-shadow: inset 0 0 0 1px var(--gold);
}

.choice[aria-pressed="true"]::after {
  content: "";
  width: 18px;
  height: 18px;
  flex: none;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 4px #fff;
}

.choice:disabled {
  opacity: 0.45;
  cursor: default;
}

.choice:disabled:hover { border-color: #ddd8d0; }

.q-block + .q-block { margin-top: 8px; }

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

.fields label, .stack-label {
  display: grid;
  gap: 6px;
  color: #5c564c;
  font-size: 13px;
  font-weight: 600;
}

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

input, textarea {
  width: 100%;
  padding: 14px 14px;
  border: 1px solid #e3ddd4;
  border-radius: 14px;
  background: #ffffff;
  color: #1a1a1a;
  font-size: 16px;
}

textarea { min-height: 140px; resize: vertical; }

input:focus, textarea:focus { border-color: var(--gold); }

.q-error {
  margin: 4px 0 0;
  color: var(--danger);
  font-size: 14px;
  font-weight: 600;
}

.sms {
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f2f0eb;
}

.sms p { margin: 0; }

.sms .who {
  color: #5c564c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sms .bubble { margin-top: 6px; font-size: 16px; color: #1a1a1a; }

.preview-note {
  margin: 12px 0 0;
  color: #5c564c;
  font-size: 13px;
}

.code-input {
  font-size: 28px;
  letter-spacing: 0.28em;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.dates {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 84px;
  gap: 8px;
  margin: 0 0 18px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.date-choice {
  min-height: 76px;
  padding: 10px 6px;
  border: 1px solid #e3ddd4;
  border-radius: 14px;
  background: #f2f0eb;
  color: #1a1a1a;
}

.date-choice small, .date-choice strong, .date-choice em {
  display: block;
  font-style: normal;
}

.date-choice small {
  color: #5c564c;
  font-size: 12px;
  font-weight: 600;
}

.date-choice strong {
  margin-top: 2px;
  font-size: 20px;
}

.date-choice[aria-pressed="true"] {
  border-color: var(--gold);
  background: rgba(201, 167, 74, 0.16);
  box-shadow: inset 0 0 0 1px var(--gold);
}

.times {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.times .choice { margin: 0; justify-content: center; }

.times .choice[aria-pressed="true"]::after { display: none; }

.when {
  margin: 0 0 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
}

.when strong {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.15;
  color: #1a1a1a;
}

.summary {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.summary div {
  display: grid;
  gap: 2px;
  padding-top: 10px;
  border-top: 1px solid #e3ddd4;
}

.summary dt {
  color: #5c564c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary dd { margin: 0; color: #1a1a1a; }

.q-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 20px calc(14px + env(safe-area-inset-bottom));
  border-top: 1px solid #e3ddd4;
  background: #ffffff;
}

.q-actions .q-error {
  flex: 1 0 100%;
  margin: 0;
}

.q-actions .btn { flex: 1; }

.q-actions .btn-ghost {
  flex: 0 0 auto;
  color: #1a1a1a;
  box-shadow: inset 0 0 0 1px #c9c2b6;
}

.q-actions .btn-ghost:hover { background: #f3f1ec; }

@media (min-width: 720px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
  .stat { border-bottom: 0; }
  .stat:not(:last-child) { border-right: 1px solid #e3ddd4; }
  .review-grid { grid-template-columns: repeat(3, 1fr); }
  .pair { grid-template-columns: 1fr 1fr; }
  .work-grid {
    grid-template-columns: 1.35fr 1fr;
    grid-template-rows: 280px 280px auto;
  }
  .work-grid figure:first-child { grid-column: 1; grid-row: 1 / span 2; }
  .work-grid figure:nth-child(2) { grid-column: 2; grid-row: 1; }
  .work-grid figure:nth-child(3) { grid-column: 2; grid-row: 2; }
  .work-grid figure:nth-child(4) { grid-column: 1 / -1; grid-row: 3; }
  .work-grid figure:first-child img,
  .work-grid figure:nth-child(2) img,
  .work-grid figure:nth-child(3) img { height: 100%; }
  .work-grid figure:nth-child(4) img { height: 420px; }
  .work-grid figure:nth-child(5) { grid-column: 1; grid-row: 4; }
  .work-grid figure:nth-child(6) { grid-column: 2; grid-row: 4; }
  .work-grid figure:nth-child(5) img,
  .work-grid figure:nth-child(6) img { height: 320px; }
  .points, .steps { grid-template-columns: repeat(3, minmax(0, 280px)); justify-content: center; gap: 16px 28px; }
  .points article, .steps li { height: 100%; }
}

@media (min-width: 960px) {
  .header-cta { display: inline-flex; }
  .desktop-only { display: inline-flex; }
  .fine a { display: none; }
  .hero .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero .hero-actions .btn { width: auto; }
  .close .hero-actions { margin-top: 26px; }
  .qualify[open] { inset: 24px 0; }
}

@media (max-width: 959px) {
  .close .hero-actions .btn { width: 100%; }
  .fine a { display: block; margin-top: 4px; }
}

@media (max-width: 420px) {
  .brand img { height: 36px; max-width: 42vw; }
  .hero h1 { font-size: 30px; }
  .review-grid figcaption { flex-wrap: wrap; }
}

@media (max-width: 720px) {
  .js-motion .header-cta {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .js-motion .site-header.has-cta .brand img {
    height: 34px;
    max-width: 32vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .q-meter span,
  .js-motion .header-cta,
  .js-motion .reveal { transition: none; }
}
