:root {
  --green-950: #071c14;
  --green-900: #0b2d20;
  --green-800: #123d2b;
  --green-700: #1e543b;
  --paper: #eee9dc;
  --paper-warm: #e4dcc9;
  --ink: #11251b;
  --muted: #566159;
  --brass: #c4a265;
  --cream: #f5f0e3;
  --pencil-red: #e7683f;
  --line: rgba(17, 37, 27, 0.16);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --gutter: clamp(22px, 5vw, 76px);
  color-scheme: light;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  background: var(--cream);
  color: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  height: 88px;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--cream);
  border-bottom: 1px solid rgba(245, 240, 227, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: -0.02em;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 9px;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 650;
}

.site-header nav a,
.header-note {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.site-header nav a:hover,
.site-header nav a:focus-visible,
.header-note:hover,
.header-note:focus-visible {
  color: var(--brass);
}

.header-note {
  justify-self: end;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  font-weight: 700;
}

.hero {
  min-height: 900px;
  height: min(1000px, 100svh);
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background: var(--green-950);
}

.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-photo {
  background-image: url("/assets/dawn-walk.png");
  background-size: cover;
  background-position: center 61%;
  opacity: 0.74;
  transform: scale(1.01);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 28, 20, 0.97) 0%, rgba(7, 28, 20, 0.86) 37%, rgba(7, 28, 20, 0.28) 71%, rgba(7, 28, 20, 0.58) 100%),
    linear-gradient(0deg, rgba(7, 28, 20, 0.65), transparent 55%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: inherit;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 700px);
  justify-content: start;
  align-items: center;
  gap: clamp(42px, 7vw, 130px);
  padding: 132px var(--gutter) 55px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
}

.eyebrow {
  margin: 0;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-700);
}

.eyebrow.light {
  color: var(--brass);
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  text-wrap: balance;
}

h1 {
  margin: 20px 0 26px;
  max-width: 700px;
  font-size: clamp(64px, 6.6vw, 112px);
  line-height: 0.88;
  letter-spacing: -0.055em;
}

h1 em,
h2 em {
  font-weight: 400;
  color: var(--brass);
}

.hero-lede {
  max-width: 560px;
  margin-bottom: 34px;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.62;
  color: rgba(245, 240, 227, 0.83);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(245, 240, 227, 0.64);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  border: 1px solid transparent;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button-light {
  color: var(--green-950);
  background: var(--cream);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--brass);
}

.button-dark {
  color: var(--cream);
  background: var(--green-900);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--green-700);
}

.promise-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(550px, 100%);
  margin: 55px 0 0;
  padding: 22px 0 0;
  list-style: none;
  border-top: 1px solid rgba(196, 162, 101, 0.54);
}

.promise-row li {
  display: grid;
  gap: 2px;
}

.promise-row strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.promise-row span {
  font-size: 12px;
  color: rgba(245, 240, 227, 0.62);
}

.hero-device {
  position: relative;
  z-index: 3;
  align-self: end;
  justify-self: end;
  width: min(30vw, 430px);
  min-width: 350px;
  margin-bottom: -205px;
  filter: drop-shadow(0 42px 70px rgba(0, 0, 0, 0.4));
  transform: rotate(1.25deg);
  transform-origin: bottom center;
}

.device-caption {
  display: flex;
  justify-content: space-between;
  margin: 0 14px 14px;
  color: rgba(245, 240, 227, 0.72);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.phone {
  position: relative;
  overflow: hidden;
  border: 9px solid #11130f;
  border-radius: 54px;
  background: var(--green-950);
  box-shadow: inset 0 0 0 2px #46483f;
}

.phone::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 45px;
}

.phone-speaker {
  position: absolute;
  z-index: 5;
  top: 13px;
  left: 50%;
  width: 118px;
  height: 31px;
  border-radius: 999px;
  background: #050604;
  transform: translateX(-50%);
}

.score-top {
  padding: 54px 20px 0;
  color: var(--cream);
}

.score-nav {
  min-height: 62px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
}

.score-nav b {
  color: var(--brass);
  font-weight: 750;
}

.score-nav span {
  font-size: 26px;
  font-weight: 300;
}

.round-header {
  display: grid;
  grid-template-columns: 1.25fr 1px 0.82fr 1px 1.03fr;
  align-items: center;
  min-height: 147px;
  padding: 11px 3px 22px;
}

.round-header > span {
  display: grid;
  gap: 2px;
}

.round-header > i {
  width: 1px;
  height: 56px;
  background: rgba(245, 240, 227, 0.22);
}

.round-hole {
  align-self: end;
  grid-template-columns: auto 1fr;
  align-items: end;
  column-gap: 14px;
  padding-left: 9px;
}

.round-hole small,
.round-fact small {
  color: var(--brass);
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.round-hole small {
  padding-bottom: 13px;
}

.round-hole strong {
  font-family: var(--sans);
  font-size: 72px;
  line-height: 0.78;
  font-weight: 730;
  letter-spacing: -0.07em;
  font-variant-numeric: tabular-nums;
}

.round-fact {
  justify-items: center;
  text-align: center;
}

.round-fact strong {
  font-size: 26px;
  line-height: 1;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}

.score-paper {
  min-height: 650px;
  padding: 28px 22px 45px;
  text-align: center;
  color: var(--ink);
  background: var(--paper);
  border-radius: 28px 28px 0 0;
}

.step-button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 0;
  font-size: 31px;
  font-weight: 350;
  line-height: 1;
  cursor: pointer;
}

.score-stepper {
  display: grid;
  grid-template-columns: 64px 1fr 64px;
  align-items: center;
  gap: 8px;
  min-height: 122px;
  margin: 0 0 18px;
  padding: 0 16px;
  border: 1px solid rgba(11, 45, 32, 0.24);
  background: rgba(255, 255, 255, 0.36);
}

.step-button.minus {
  color: var(--green-700);
  background: rgba(11, 45, 32, 0.08);
}

.step-button.plus {
  justify-self: center;
  color: var(--cream);
  background: var(--green-900);
}

.score-stepper span {
  display: grid;
}

.score-stepper strong {
  font-family: var(--serif);
  font-size: 66px;
  line-height: 0.86;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}

.score-stepper em {
  margin-top: 8px;
  color: var(--pencil-red);
  font-style: normal;
  font-size: 10px;
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.score-stepper em.over {
  color: var(--pencil-red);
}

.record-button {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--cream);
  background: var(--green-900);
  border: 0;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.record-button:hover,
.record-button:focus-visible {
  background: var(--green-700);
}

.record-button.is-recorded {
  background: var(--green-700);
}

.sheet-totals + p i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brass);
}

.hole-navigator {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-height: 88px;
  margin-top: 14px;
  border: 1px solid rgba(11, 45, 32, 0.24);
  background: rgba(255, 255, 255, 0.3);
}

.hole-navigator button {
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 13px 16px;
  color: var(--green-700);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.hole-navigator button + button {
  border-left: 1px solid rgba(11, 45, 32, 0.24);
  text-align: right;
}

.hole-navigator button:first-child {
  text-align: left;
}

.hole-navigator small {
  color: var(--pencil-red);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hole-navigator button:last-child small {
  color: var(--brass);
}

.hole-navigator span {
  font-size: 14px;
  font-weight: 650;
}

.hole-navigator button:disabled {
  color: rgba(86, 97, 89, 0.22);
  cursor: default;
}

.hole-navigator button:disabled small {
  color: rgba(231, 104, 63, 0.48);
}

.intro {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 80px;
  padding: 150px var(--gutter) 110px;
  border-bottom: 1px solid var(--line);
}

.section-heading h2,
.product-copy h2,
.story-copy h2,
.privacy-copy h2,
.availability h2 {
  margin: 16px 0 0;
  font-size: clamp(50px, 6.2vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.intro-copy {
  max-width: 450px;
  align-self: end;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 var(--gutter);
}

.steps article {
  min-height: 410px;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 35px 36px 44px 0;
  border-right: 1px solid var(--line);
}

.steps article + article {
  padding-left: 36px;
}

.steps article:last-child {
  border-right: 0;
}

.step-number {
  color: var(--pencil-red);
  font-family: var(--serif);
  font-size: 18px;
}

.steps h3 {
  margin: 11px 0 13px;
  font-size: clamp(30px, 3vw, 42px);
  letter-spacing: -0.04em;
}

.steps article p:last-child {
  max-width: 330px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-stage {
  min-height: 890px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 7vw;
  padding: 120px var(--gutter);
  color: var(--cream);
  background: var(--green-950);
}

.product-copy {
  max-width: 560px;
}

.product-copy h2 {
  font-size: clamp(58px, 6vw, 94px);
}

.product-copy > p:not(.eyebrow) {
  max-width: 490px;
  margin: 28px 0 40px;
  color: rgba(245, 240, 227, 0.68);
  font-size: 17px;
  line-height: 1.72;
}

.editorial-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(245, 240, 227, 0.18);
}

.editorial-list li {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(245, 240, 227, 0.18);
  font-size: 14px;
}

.editorial-list span {
  color: var(--brass);
  font: 15px var(--serif);
}

.scorecard-sheet {
  position: relative;
  overflow: hidden;
  min-width: 760px;
  padding: 55px 50px 40px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 50px 80px rgba(0, 0, 0, 0.24);
  transform: rotate(-2deg);
}

.scorecard-sheet::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  background-image: repeating-linear-gradient(0deg, transparent 0 3px, rgba(17, 37, 27, 0.03) 3px 4px);
}

.sheet-title {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 26px;
  border-bottom: 2px solid var(--ink);
}

.sheet-title span {
  display: grid;
  gap: 5px;
}

.sheet-title span:last-child {
  text-align: right;
}

.sheet-title small {
  color: var(--green-700);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.sheet-title strong {
  font: 37px var(--serif);
}

.scorecard-grid {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.scorecard-grid .row {
  display: grid;
  grid-template-columns: 1.5fr repeat(9, 1fr) 1.25fr;
}

.scorecard-grid .row > * {
  min-height: 63px;
  display: grid;
  place-items: center;
  margin: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.scorecard-grid .row span {
  justify-content: start;
  padding-left: 15px;
  color: var(--green-700);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scorecard-grid .row b,
.scorecard-grid .row strong {
  font-family: var(--serif);
  font-size: 21px;
}

.scorecard-grid .row strong {
  background: rgba(196, 162, 101, 0.12);
}

.scorecard-grid .heading > * {
  min-height: 42px;
  font: 700 11px var(--sans);
  color: var(--green-700);
}

.scorecard-grid .scores b:nth-child(3),
.scorecard-grid .scores b:nth-child(8) {
  position: relative;
}

.scorecard-grid .scores b:nth-child(3)::after,
.scorecard-grid .scores b:nth-child(8)::after {
  content: "";
  position: absolute;
  width: 35px;
  height: 35px;
  border: 1.5px solid var(--pencil-red);
  border-radius: 50%;
}

.sheet-totals {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sheet-totals span {
  min-height: 98px;
  display: grid;
  place-content: center;
  gap: 5px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.sheet-totals span:last-child {
  border: 0;
}

.sheet-totals small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.sheet-totals strong {
  font: 34px var(--serif);
}

.sheet-totals + p {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(420px, 0.85fr) 1.15fr;
  min-height: 980px;
  overflow: hidden;
  background: var(--paper-warm);
}

.story-art {
  position: relative;
  isolation: isolate;
  min-height: 980px;
  overflow: hidden;
  color: var(--cream);
}

.story-art > img,
.story-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.story-art > img {
  z-index: -2;
  object-fit: cover;
  object-position: center;
}

.story-overlay {
  z-index: -1;
  background: linear-gradient(180deg, rgba(7, 28, 20, 0.25), rgba(7, 28, 20, 0.18) 35%, rgba(7, 28, 20, 0.94));
}

.story-brand {
  position: absolute;
  top: 58px;
  left: 55px;
  display: flex;
  align-items: center;
  gap: 12px;
  font: 28px var(--serif);
}

.story-brand img {
  width: 43px;
  height: 43px;
  border-radius: 9px;
}

.story-score {
  position: absolute;
  left: 55px;
  right: 55px;
  bottom: 240px;
  display: grid;
}

.story-score small {
  color: var(--brass);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.story-score strong {
  font: 150px/0.95 var(--serif);
  font-variant-numeric: tabular-nums;
}

.story-score span {
  font: 29px var(--serif);
}

.story-score i {
  width: 90px;
  height: 1px;
  margin: 26px 0 18px;
  background: var(--brass);
}

.story-score em {
  color: rgba(245, 240, 227, 0.78);
  font: italic 17px var(--serif);
}

.story-metrics {
  position: absolute;
  left: 55px;
  right: 55px;
  bottom: 105px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 20px 0;
  border-top: 1px solid rgba(245, 240, 227, 0.3);
  border-bottom: 1px solid rgba(245, 240, 227, 0.3);
}

.story-metrics span {
  display: grid;
  gap: 3px;
  border-right: 1px solid rgba(245, 240, 227, 0.22);
}

.story-metrics span + span {
  padding-left: 22px;
}

.story-metrics span:last-child {
  border: 0;
}

.story-metrics small {
  color: rgba(245, 240, 227, 0.62);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-metrics b {
  font: 25px var(--serif);
}

.story-art > p {
  position: absolute;
  left: 55px;
  bottom: 48px;
  margin: 0;
  color: rgba(245, 240, 227, 0.56);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.story-copy {
  align-self: center;
  padding: 110px max(var(--gutter), 8vw);
}

.story-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 30px 0 45px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.format-line {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
}

.format-line span {
  min-height: 54px;
  display: flex;
  align-items: center;
  margin-right: 26px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 700;
}

.share-cards {
  overflow: hidden;
  padding: 135px 0 115px;
  background: var(--paper);
}

.share-cards-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  align-items: end;
  gap: 8vw;
  padding: 0 var(--gutter) 72px;
}

.share-cards-heading h2 {
  margin: 16px 0 0;
  font-size: clamp(54px, 6.4vw, 98px);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.share-cards-heading h2 em {
  color: var(--brass);
  font-weight: 400;
}

.share-cards-intro > p {
  max-width: 520px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.share-cards-intro dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.share-cards-intro dl div {
  min-height: 76px;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
}

.share-cards-intro dl div + div {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.share-cards-intro dt {
  color: var(--brass);
  font: 34px var(--serif);
}

.share-cards-intro dd {
  margin: 0;
  color: var(--green-700);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.share-card-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(238px, 21.8vw, 326px);
  align-items: end;
  gap: clamp(18px, 2vw, 30px);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0 var(--gutter) 25px;
  scroll-padding-inline: var(--gutter);
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--brass) transparent;
  scrollbar-width: thin;
}

.share-card-rail::-webkit-scrollbar {
  height: 5px;
}

.share-card-rail::-webkit-scrollbar-thumb {
  background: var(--brass);
}

.share-look {
  min-width: 0;
  scroll-snap-align: start;
}

.share-look-canvas {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(17, 37, 27, 0.16);
}

.format-story {
  aspect-ratio: 9 / 16;
}

.format-square {
  aspect-ratio: 1;
}

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

.share-look-meta {
  display: grid;
  gap: 2px;
  padding: 17px 2px 0;
}

.share-look-meta strong {
  font: 24px var(--serif);
}

.share-look-meta span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.look-photo,
.look-photo-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.look-photo {
  object-fit: cover;
}

.look-photo-shade {
  z-index: -1;
  background: linear-gradient(180deg, rgba(7, 28, 20, 0.46), rgba(7, 28, 20, 0.16) 34%, rgba(7, 28, 20, 0.95));
}

.look-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 8.2% 7.6%;
}

.look-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font: 18px var(--serif);
}

.look-brand img {
  width: 27px;
  height: 27px;
  border-radius: 6px;
}

.look-summary {
  color: var(--cream);
}

.look-score-summary {
  display: grid;
  margin-top: auto;
}

.look-score-summary > small {
  color: var(--brass);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.look-score-summary > strong {
  font: clamp(82px, 9.8vw, 144px)/0.88 var(--serif);
  letter-spacing: -0.06em;
}

.look-score-summary > span {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  column-gap: 11px;
}

.look-score-summary b,
.look-score-summary i {
  color: var(--brass);
  font-size: 8px;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.look-score-summary i {
  grid-column: 2;
  color: rgba(245, 240, 227, 0.58);
}

.look-score-summary em {
  font: 35px/1 var(--serif);
}

.look-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
  padding: 13px 0;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  border-color: rgba(245, 240, 227, 0.24);
}

.look-stats > span {
  display: grid;
  gap: 2px;
  font: 18px var(--serif);
}

.look-stats > span + span {
  padding-left: 10px;
  border-left: 1px solid rgba(245, 240, 227, 0.2);
}

.look-stats small {
  color: rgba(245, 240, 227, 0.58);
  font: 7px var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.look-inner > p {
  display: flex;
  justify-content: space-between;
  margin: 14px 0 0;
  color: rgba(245, 240, 227, 0.56);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.share-look-paper .share-look-canvas {
  color: var(--ink);
  background: var(--cream);
}

.paper-bars::before,
.paper-bars::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--green-800);
}

.paper-bars::before {
  top: 0;
}

.paper-bars::after {
  bottom: 0;
  height: 17%;
}

.paper-rule,
.heritage-rule {
  position: absolute;
  z-index: 0;
  top: 7%;
  bottom: 7%;
  left: 5.3%;
  width: 3px;
  background: var(--brass);
}

.look-scorecard {
  gap: 0;
}

.look-card-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-bottom: 14px;
}

.look-card-title > strong {
  max-width: 65%;
  font: 22px/0.95 var(--serif);
}

.look-card-title > span {
  display: grid;
  justify-items: end;
  font: 28px/0.85 var(--serif);
}

.look-card-title small {
  margin-top: 7px;
  color: var(--pencil-red);
  font: 7px var(--sans);
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.look-score-grid {
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
  border-color: rgba(17, 37, 27, 0.2);
}

.look-score-grid > div {
  display: grid;
  grid-template-columns: 1.55fr repeat(6, 1fr) 1.3fr;
}

.look-score-grid b,
.look-score-grid span,
.look-score-grid strong {
  min-width: 0;
  min-height: 21px;
  display: grid;
  place-items: center;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  border-color: rgba(17, 37, 27, 0.2);
  font-size: 6px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.look-score-grid b {
  justify-content: start;
  padding-left: 5px;
  color: var(--green-700);
  font-size: 5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.look-score-grid strong {
  background: rgba(196, 162, 101, 0.16);
}

.look-scorecard > p {
  margin-top: 11px;
  color: var(--muted);
}

.share-look-heritage .share-look-canvas {
  color: var(--cream);
  background: var(--green-900);
}

.heritage-ring {
  position: absolute;
  top: -36%;
  right: -55%;
  width: 120%;
  aspect-ratio: 1;
  border: 1px solid rgba(196, 162, 101, 0.18);
  border-radius: 50%;
}

.share-look-heritage .look-score-grid {
  border-color: rgba(245, 240, 227, 0.2);
}

.share-look-heritage .look-score-grid > div > * {
  border-color: rgba(245, 240, 227, 0.2);
}

.share-look-heritage .look-score-grid b,
.share-look-heritage .look-card-title small {
  color: var(--brass);
}

.share-look-heritage .look-scorecard > p {
  color: rgba(245, 240, 227, 0.56);
}

.share-look-heritage .look-stats {
  margin-top: 14px;
}

.share-look-sticker .look-photo {
  object-position: 54% center;
}

.share-look-sticker .share-look-canvas::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 28, 20, 0.14);
}

.sticker-panel {
  position: absolute;
  z-index: 1;
  left: 8%;
  right: 8%;
  top: 50%;
  display: grid;
  grid-template-columns: 5px 1fr;
  min-height: 31.8%;
  overflow: hidden;
  color: var(--cream);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.028) 0 16.66%, rgba(7, 28, 20, 0.028) 16.66% 33.33%),
    var(--green-700);
  box-shadow: 0 18px 35px rgba(7, 28, 20, 0.32);
  transform: translateY(-50%);
}

.sticker-panel > i {
  background: var(--brass);
}

.sticker-panel > div {
  display: flex;
  flex-direction: column;
  padding: 9%;
}

.sticker-panel .look-brand small {
  margin-left: auto;
  color: rgba(245, 240, 227, 0.65);
  font: 7px var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sticker-panel h3 {
  margin: auto 0 0;
  font-size: 21px;
}

.sticker-result {
  display: flex;
  align-items: end;
  gap: 12px;
}

.sticker-result > strong {
  font: 66px/0.9 var(--serif);
  letter-spacing: -0.05em;
}

.sticker-result > span {
  padding-bottom: 3px;
  color: rgba(245, 240, 227, 0.65);
  font-size: 7px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sticker-result b {
  color: var(--brass);
}

.transparent-canvas {
  display: grid;
  place-items: center;
  background-color: var(--paper-warm);
  background-image:
    linear-gradient(45deg, rgba(17, 37, 27, 0.06) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(17, 37, 27, 0.06) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(17, 37, 27, 0.06) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(17, 37, 27, 0.06) 75%);
  background-position: 0 0, 0 12px, 12px -12px, -12px 0;
  background-size: 24px 24px;
}

.result-badge {
  width: 73%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--brass);
  border: 6px solid var(--brass);
  border-radius: 50%;
  box-shadow: 0 18px 35px rgba(7, 28, 20, 0.28), inset 0 0 0 2px rgba(17, 37, 27, 0.64);
}

.badge-brand {
  display: flex;
  align-items: center;
  gap: 5px;
  font: 11px var(--serif);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.badge-brand img {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.result-badge > strong {
  font: 74px/0.9 var(--serif);
  letter-spacing: -0.06em;
}

.result-badge > b {
  color: var(--green-900);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.result-badge > small {
  max-width: 78%;
  margin-top: 9px;
  overflow: hidden;
  font-size: 8px;
  font-weight: 650;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.share-style-index {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 43px var(--gutter) 0;
  padding-top: 19px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.share-style-index span {
  color: var(--green-700);
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.privacy {
  min-height: 680px;
  display: grid;
  grid-template-columns: 0.55fr 1fr 0.75fr;
  align-items: center;
  gap: 6vw;
  padding: 110px var(--gutter);
  color: var(--cream);
  background: var(--green-900);
}

.privacy-mark {
  width: min(300px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(196, 162, 101, 0.42);
  border-radius: 50%;
}

.privacy-mark img {
  width: 62%;
  border-radius: 20%;
}

.privacy-copy h2 {
  font-size: clamp(52px, 5.4vw, 84px);
}

.privacy-copy > p:not(.eyebrow) {
  max-width: 530px;
  margin: 28px 0 0;
  color: rgba(245, 240, 227, 0.7);
  font-size: 17px;
  line-height: 1.72;
}

.privacy dl {
  margin: 0;
  border-top: 1px solid rgba(245, 240, 227, 0.22);
}

.privacy dl div {
  min-height: 92px;
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(245, 240, 227, 0.22);
}

.privacy dt {
  color: var(--brass);
  font: 36px var(--serif);
}

.privacy dd {
  margin: 0;
  color: rgba(245, 240, 227, 0.75);
  font-size: 13px;
}

.availability {
  min-height: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 110px var(--gutter);
  text-align: center;
}

.availability h2 {
  margin-bottom: 25px;
}

.availability > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 17px;
}

footer {
  min-height: 116px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 25px var(--gutter);
  color: var(--cream);
  background: var(--green-950);
  border-top: 1px solid rgba(245, 240, 227, 0.16);
}

.footer-brand {
  font-size: 20px;
}

.footer-brand img {
  width: 34px;
  height: 34px;
}

footer p {
  margin: 0;
  color: rgba(245, 240, 227, 0.56);
  font-size: 11px;
}

footer p:last-child {
  justify-self: end;
}

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 4px;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 700px);
    gap: 36px;
  }

  .hero-device {
    width: min(38vw, 390px);
    min-width: 330px;
    margin-bottom: -180px;
  }

  .product-stage {
    grid-template-columns: 1fr;
  }

  .scorecard-sheet {
    min-width: 0;
    width: 100%;
  }

  .privacy {
    grid-template-columns: 0.5fr 1fr;
  }

  .privacy dl {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .privacy dl div {
    border-right: 1px solid rgba(245, 240, 227, 0.22);
  }
}

@media (max-width: 800px) {
  .site-header {
    height: 74px;
  }

  .brand {
    font-size: 21px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .header-note {
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .hero {
    min-height: 0;
    height: auto;
  }

  .hero-photo {
    background-position: 53% center;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(7, 28, 20, 0.84), rgba(7, 28, 20, 0.55) 36%, rgba(7, 28, 20, 0.97) 70%);
  }

  .hero-layout {
    min-height: 0;
    height: auto;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 132px var(--gutter) 90px;
  }

  h1 {
    font-size: clamp(56px, 15vw, 79px);
  }

  .hero-lede {
    font-size: 16px;
  }

  .promise-row {
    gap: 14px;
  }

  .promise-row span {
    font-size: 10px;
  }

  .hero-device {
    position: relative;
    right: auto;
    bottom: auto;
    align-self: auto;
    justify-self: center;
    width: min(86vw, 350px);
    min-width: 0;
    margin: 0 0 -180px;
    transform: none;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .section-heading h2,
  .product-copy h2,
  .story-copy h2,
  .privacy-copy h2,
  .availability h2 {
    font-size: clamp(48px, 14vw, 68px);
  }

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

  .steps article,
  .steps article + article {
    min-height: 300px;
    padding: 30px 0 38px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-stage {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .scorecard-sheet {
    margin-top: 55px;
    padding: 30px 22px 28px;
    transform: none;
  }

  .sheet-title strong {
    font-size: 27px;
  }

  .scorecard-grid {
    overflow-x: auto;
  }

  .scorecard-grid .row {
    min-width: 650px;
  }

  .story-section {
    grid-template-columns: 1fr;
  }

  .story-art {
    min-height: 820px;
  }

  .story-copy {
    order: -1;
    padding: 100px var(--gutter);
  }

  .share-cards {
    padding-top: 100px;
    padding-bottom: 90px;
  }

  .share-cards-heading {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-bottom: 58px;
  }

  .share-cards-heading h2 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .share-card-rail {
    grid-auto-columns: min(72vw, 282px);
  }

  .privacy {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .privacy-mark {
    width: 160px;
  }

  .privacy dl {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .privacy dl div {
    border-right: 0;
  }

  footer {
    min-height: 190px;
    grid-template-columns: 1fr;
    justify-items: start;
    padding-top: 35px;
    padding-bottom: 35px;
  }

  footer p:last-child {
    justify-self: start;
  }
}

@media (max-width: 480px) {
  .header-note {
    max-width: 98px;
    text-align: right;
    line-height: 1.2;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .promise-row strong {
    font-size: 16px;
  }

  .phone {
    border-width: 7px;
    border-radius: 48px;
  }

  .score-top {
    padding-left: 13px;
    padding-right: 13px;
  }

  .score-paper {
    padding-left: 17px;
    padding-right: 17px;
  }

  .score-stepper {
    padding-right: 11px;
    padding-left: 11px;
  }

  .round-hole {
    column-gap: 9px;
    padding-left: 4px;
  }

  .round-hole strong {
    font-size: 67px;
  }

  .share-cards-intro dl div {
    grid-template-columns: 45px 1fr;
  }

  .share-cards-intro dl div + div {
    padding-left: 14px;
  }

  .story-brand,
  .story-score,
  .story-metrics,
  .story-art > p {
    left: 28px;
  }

  .story-score,
  .story-metrics {
    right: 28px;
  }

  .story-score strong {
    font-size: 125px;
  }

  .story-metrics span + span {
    padding-left: 14px;
  }
}

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

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