@font-face {
  font-family: "Newsreader";
  src: url("../fonts/Newsreader.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/HankenGrotesk.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg: #f5f0e7;
  --color-surface: #fffaf2;
  --color-surface-2: #ebe2d5;
  --color-text: #191a18;
  --color-text-muted: #69675f;
  --color-primary: #20211f;
  --color-accent: #ad8553;
  --color-accent-deep: #795b36;
  --color-line: #d7cdbf;
  --color-white: #fffdf9;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 80px;
  --space-8: 96px;
  --text-display: clamp(3.3rem, 7.6vw, 7.3rem);
  --text-h1: clamp(2.75rem, 6vw, 5.75rem);
  --text-h2: clamp(2.2rem, 4.2vw, 4.6rem);
  --text-h3: clamp(1.35rem, 2vw, 1.9rem);
  --text-body: 1rem;
  --text-small: .875rem;
  --radius-sm: 4px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --shadow: 0 24px 70px rgba(26, 25, 21, .12);
  --font-display: "Newsreader", Georgia, serif;
  --font-body: "Hanken Grotesk", Arial, sans-serif;
  --max: 1240px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.66;
  -webkit-font-smoothing: antialiased
}

body.menu-open {
  overflow: hidden
}

a {
  color: inherit
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

button,
input {
  font: inherit
}

button,
a {
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--color-accent) 70%, white);
  outline-offset: 3px
}

.shell {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto
}

.header-top {
  height: 30px;
  display: grid;
  place-items: center;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase
}

.site-header {
  position: relative;
  z-index: 30;
  border-bottom: 1px solid var(--color-line);
  background: color-mix(in srgb, var(--color-bg) 94%, transparent);
  backdrop-filter: blur(12px)
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4)
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: max-content
}

.brand-lockup img {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .1)
}

.brand-lockup span {
  display: grid;
  line-height: 1.05
}

.brand-lockup strong {
  font-size: .92rem;
  letter-spacing: .16em
}

.brand-lockup small {
  margin-top: 5px;
  color: var(--color-text-muted);
  font-family: var(--font-display);
  font-size: .83rem;
  font-style: italic
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em
}

.main-nav a {
  text-decoration: none
}

.main-nav a:hover {
  color: var(--color-accent-deep)
}

.nav-order {
  border: 1px solid var(--color-primary);
  padding: 11px 15px
}

.nav-order:hover {
  background: var(--color-primary);
  color: var(--color-white) !important
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-line);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px
}

.menu-toggle span {
  width: 20px;
  height: 1px;
  background: var(--color-text)
}

.eyebrow {
  margin: 0;
  color: var(--color-accent-deep);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase
}

.eyebrow--light {
  color: #d1ae80
}

.section-no {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-accent);
  clip-path: polygon(18% 0, 82% 0, 100% 18%, 100% 82%, 82% 100%, 18% 100%, 0 82%, 0 18%);
  font-size: .72rem;
  font-weight: 700;
  color: var(--color-accent-deep)
}

.section-no--dark {
  color: #d1ae80
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(34px, 5vw, 76px);
  align-items: end;
  padding-top: var(--space-6);
  padding-bottom: var(--space-7)
}

.hero-copy {
  padding-bottom: var(--space-3)
}

.article-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: var(--space-5)
}

.article-meta span {
  padding: 7px 10px;
  border: 1px solid var(--color-line);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .35)
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-h1);
  line-height: .97;
  letter-spacing: -.035em;
  max-width: 760px;
  margin: 12px 0 24px
}

.hero-dek {
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.45;
  color: #41413c;
  max-width: 750px;
  margin: 0
}

.hero-note {
  margin-top: var(--space-5);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  max-width: 560px;
  align-items: center;
  border-top: 1px solid var(--color-line);
  padding-top: 20px
}

.hero-note p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: .9rem
}

.hero-note strong {
  color: var(--color-text)
}

.facet-badge {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--color-primary);
  color: var(--color-white);
  clip-path: polygon(20% 0, 80% 0, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0 80%, 0 20%);
  font-family: var(--font-display);
  font-size: 1.1rem
}

.hero-visual {
  margin: 0;
  position: relative
}

.image-frame {
  overflow: hidden;
  background: var(--color-surface-2);
  position: relative
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, .3);
  pointer-events: none
}

.image-frame--hero {
  aspect-ratio: 4/5;
  clip-path: polygon(9% 0, 100% 0, 100% 91%, 91% 100%, 0 100%, 0 9%)
}

.hero-visual figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--color-line);
  font-size: .72rem;
  color: var(--color-text-muted)
}

.hero-visual figcaption span {
  letter-spacing: .12em;
  color: var(--color-text);
  white-space: nowrap
}

.hero-visual figcaption p {
  margin: 0
}

.story-band {
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-8) 0
}

.story-grid {
  display: grid;
  grid-template-columns: 120px minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start
}

.section-index {
  display: flex;
  gap: 12px;
  align-items: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg)
}

.section-index span {
  font-family: var(--font-display);
  font-size: 3rem;
  color: #d0ab7b
}

.section-index p {
  margin: 0;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #b9b5ab
}

.story-copy h2,
.price-copy h2,
.faq-intro h2,
.thanks-info h2 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.025em
}

.story-copy h2 {
  font-size: var(--text-h2);
  margin: 10px 0 28px
}

.story-copy p:not(.eyebrow) {
  max-width: 690px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.65;
  color: #dfded8
}

.question-card {
  background: #2d2e2a;
  border: 1px solid #44443f;
  padding: 32px;
  clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%)
}

.question-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: #cda873
}

.question-card blockquote {
  margin: 22px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.4vw, 3.7rem);
  line-height: 1
}

.question-card p {
  margin: 0;
  color: #b7b5ad;
  font-size: .85rem
}

.familiar {
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(80px, 10vw, 140px)
}

.section-heading {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 50px;
  align-items: end;
  margin-bottom: var(--space-6)
}

.section-heading>div {
  display: flex;
  align-items: center;
  gap: 14px
}

.section-heading>div p {
  margin: 0
}

.section-heading h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.03em;
  margin: 0;
  max-width: 850px
}

.section-heading--familiar {
  display: block;
  max-width: 900px;
  margin-bottom: clamp(42px, 5vw, 70px)
}

.section-heading--familiar>div {
  margin-bottom: 18px
}

.section-heading--familiar h2 {
  max-width: 760px
}

.familiar-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(42px, 6vw, 88px);
  align-items: start
}

.history-copy {
  position: sticky;
  top: 28px
}

.history-copy>p {
  font-family: var(--font-display);
  font-size: 1.14rem;
  line-height: 1.72;
  color: #3f403c
}

.history-copy>p:first-child:first-letter {
  float: left;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: .75;
  padding: 11px 10px 3px 0;
  color: var(--color-accent-deep)
}

.editor-note {
  margin-top: 36px;
  border-left: 2px solid var(--color-accent);
  padding: 8px 0 8px 20px;
  color: var(--color-text-muted);
  font-size: .82rem
}

.editor-note span {
  font-size: .67rem;
  letter-spacing: .18em;
  color: var(--color-accent-deep);
  font-weight: 700
}

.editor-note p {
  margin: 7px 0 0
}

.editorial-collage {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 16px;
  align-items: end;
  padding-top: 8px
}

.editorial-collage figure {
  margin: 0
}

.editorial-collage .image-frame {
  aspect-ratio: 4/5
}

.editorial-collage .collage-b {
  margin-top: 62px
}

.editorial-collage .collage-b .image-frame {
  aspect-ratio: 4/4.7
}

.price-reveal {
  background: var(--color-surface);
  color: var(--color-text);
  padding: clamp(82px, 9vw, 124px) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line)
}

.price-reveal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(10px, 1.15vw, 18px);
  height: 100%;
  background: var(--color-accent)
}

.price-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(270px, .52fr);
  gap: clamp(52px, 8vw, 118px);
  align-items: end;
  position: relative
}

.price-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px
}

.price-reveal .section-no {
  color: var(--color-text);
  border-color: var(--color-accent-deep)
}

.price-reveal .eyebrow {
  color: var(--color-text)
}

.price-copy h2 {
  font-size: clamp(2.7rem, 5.25vw, 5.45rem);
  margin: 0 0 28px;
  max-width: 930px
}

.price-copy h2 em {
  display: inline-block;
  position: relative;
  font-style: italic;
  font-weight: 500;
  color: var(--color-accent-deep);
  white-space: nowrap;
  padding-inline: .03em
}

.price-copy h2 em::after {
  content: "";
  position: absolute;
  left: 2%;
  right: -2%;
  bottom: .06em;
  height: 2px;
  background: var(--color-accent);
  transform: rotate(-1.5deg);
  transform-origin: left center
}

.price-copy>p:last-child {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.16rem;
  line-height: 1.68;
  color: #44433e
}

.price-editorial-note {
  border-left: 1px solid var(--color-line);
  padding: 10px 0 10px clamp(24px, 3vw, 42px);
  max-width: 390px;
  justify-self: end
}

.price-editorial-note>span {
  display: block;
  font-size: .66rem;
  letter-spacing: .17em;
  font-weight: 700;
  color: var(--color-accent-deep);
  margin-bottom: 18px
}

.price-editorial-note p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: .88rem;
  line-height: 1.65
}

.price-editorial-note .price-note-lede {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.12;
  color: var(--color-text);
  margin-bottom: 18px
}

.route {
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(80px, 10vw, 140px)
}

.route-intro {
  display: grid;
  grid-template-columns: 70px 210px 1fr;
  gap: 24px;
  align-items: start
}

.route-intro h2 {
  grid-column: 3;
  font-family: var(--font-display);
  font-size: var(--text-h2);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -.03em;
  margin: 0
}

.route-intro>p:last-child {
  grid-column: 3;
  max-width: 760px;
  color: var(--color-text-muted);
  font-size: 1.03rem
}

.route-line {
  margin-top: var(--space-6);
  display: grid;
  grid-template-columns: 1fr 70px 1fr 70px 1fr;
  border-top: 1px solid var(--color-line);
  padding-top: 28px
}

.route-line>div span {
  display: block;
  color: var(--color-accent-deep);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  margin-bottom: 10px
}

.route-line>div strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500
}

.route-line>div p {
  font-size: .88rem;
  color: var(--color-text-muted);
  max-width: 300px
}

.route-line i {
  height: 1px;
  background: var(--color-accent);
  align-self: 40%;
  position: relative
}

.route-line i::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  background: var(--color-accent);
  transform: rotate(45deg)
}

.details-section {
  background: var(--color-surface);
  padding: clamp(80px, 10vw, 140px) 0
}

.section-heading--details {
  margin-bottom: 48px
}

.details-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, .82fr);
  gap: 18px;
  align-items: stretch
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px
}

.spec-card {
  min-height: 220px;
  border: 1px solid var(--color-line);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  background: #fffdf9;
  clip-path: polygon(0 0, 91% 0, 100% 9%, 100% 100%, 0 100%);
  overflow: hidden
}

.spec-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow)
}

.spec-card>span {
  position: absolute;
  top: 22px;
  left: 24px;
  font-size: .66rem;
  letter-spacing: .18em;
  color: var(--color-accent-deep);
  font-weight: 700
}

.spec-card>i {
  position: absolute;
  right: 22px;
  top: 18px;
  font-size: 2.15rem;
  color: color-mix(in srgb, var(--color-accent) 72%, transparent);
  font-weight: 300
}

.spec-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.08;
  margin: 0 0 9px;
  max-width: 300px
}

.spec-card p {
  color: var(--color-text-muted);
  font-size: .86rem;
  max-width: 440px;
  margin: 0
}

.spec-card--full {
  grid-column: 1/-1;
  min-height: 174px;
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: end;
  gap: 18px;
  padding-top: 54px
}

.spec-card--full>span {
  left: 24px
}

.spec-card--full>i {
  position: static;
  font-size: 3rem;
  align-self: center;
  color: var(--color-accent-deep)
}

.spec-card--full h3 {
  font-size: 1.7rem;
  max-width: none
}

.product-figure {
  margin: 0;
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column
}

.image-frame--product {
  flex: 1;
  min-height: 520px;
  aspect-ratio: auto;
  clip-path: polygon(0 0, 91% 0, 100% 9%, 100% 100%, 9% 100%, 0 91%)
}

.product-figure figcaption {
  margin-top: 12px;
  padding: 16px 2px 0;
  border-top: 1px solid var(--color-line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-text-muted)
}

.product-figure figcaption p {
  margin: 0
}

.product-figure figcaption span {
  font-family: var(--font-body);
  font-style: normal;
  font-size: .68rem;
  letter-spacing: .15em;
  color: var(--color-accent-deep)
}

.daily {
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(80px, 10vw, 140px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(42px, 7vw, 95px);
  align-items: center
}

.daily-media {
  position: relative
}

.image-frame--daily {
  aspect-ratio: 4/4.5;
  clip-path: polygon(9% 0, 100% 0, 100% 91%, 91% 100%, 0 100%, 0 9%)
}

.floating-label {
  position: absolute;
  right: -24px;
  bottom: 34px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 18px 22px;
  min-width: 220px;
  box-shadow: var(--shadow)
}

.floating-label span {
  display: block;
  font-size: .66rem;
  letter-spacing: .15em;
  color: #d0ac7b;
  margin-bottom: 4px
}

.floating-label strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem
}

.daily-copy h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.03em;
  margin: 14px 0 26px
}

.daily-copy>p:not(.eyebrow) {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.72;
  color: #44443f
}

.daily-copy .section-no {
  margin-bottom: 22px
}

.wear-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px
}

.wear-tags span {
  padding: 8px 11px;
  border: 1px solid var(--color-line);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--color-surface)
}

.faq-section {
  background: var(--color-primary);
  color: var(--color-white);
  padding: clamp(80px, 10vw, 140px) 0
}

.faq-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(46px, 8vw, 110px);
  align-items: start
}

.faq-intro {
  position: sticky;
  top: 28px
}

.faq-intro h2 {
  font-size: var(--text-h2);
  margin: 16px 0 24px
}

.faq-intro>p:last-child {
  color: #bdbab0;
  max-width: 460px
}

.faq-list {
  border-top: 1px solid #454640
}

.faq-item {
  border-bottom: 1px solid #454640
}

.faq-item button {
  width: 100%;
  min-height: 78px;
  background: transparent;
  border: 0;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 18px 0;
  cursor: pointer
}

.faq-item button span {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.1vw, 1.8rem)
}

.faq-item button b {
  font-weight: 400;
  font-size: 1.4rem;
  transition: transform .25s ease;
  color: #d1ae80
}

.faq-item.is-open button b {
  transform: rotate(45deg)
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease
}

.faq-answer>p {
  overflow: hidden;
  margin: 0;
  color: #c4c2b9;
  max-width: 700px
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr
}

.faq-item.is-open .faq-answer>p {
  padding: 0 42px 22px 0
}

.order-section {
  padding: clamp(80px, 10vw, 140px) 0;
  background: linear-gradient(120deg, var(--color-bg) 0%, var(--color-bg) 58%, #e7ddce 58%, #e7ddce 100%)
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: start
}

.order-editorial h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -.03em;
  margin: 15px 0 26px;
  max-width: 620px
}

.order-editorial>p {
  max-width: 610px;
  color: var(--color-text-muted);
  font-size: 1.05rem
}

.order-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  padding: 20px 0;
  margin: 30px 0;
  max-width: 590px
}

.order-price span {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em
}

.order-price strong {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 500;
  line-height: 1
}

.order-smallprint {
  margin-top: 36px;
  padding: 20px 22px;
  background: var(--color-surface);
  border-left: 2px solid var(--color-accent);
  max-width: 590px
}

.order-smallprint p {
  margin: 5px 0 0;
  color: var(--color-text-muted);
  font-size: .84rem
}

.lead-form {
  background: var(--color-surface);
  padding: 34px;
  border: 1px solid var(--color-line);
  box-shadow: 0 25px 70px rgba(61, 51, 39, .12);
  clip-path: polygon(0 0, 93% 0, 100% 7%, 100% 100%, 7% 100%, 0 93%)
}

.form-head {
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--color-line)
}

.form-head span {
  font-size: .66rem;
  letter-spacing: .17em;
  color: var(--color-accent-deep);
  font-weight: 700
}

.form-head h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  margin: 8px 0 0
}

.form-head p {
  font-family: var(--font-display);
  font-size: 2.6rem;
  margin: 2px 0 0
}

.lead-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .03em
}

.lead-form label>span {
  font-weight: 400;
  color: var(--color-text-muted)
}

.lead-form input:not([type=checkbox]) {
  width: 100%;
  height: 50px;
  border: 1px solid var(--color-line);
  background: #fffdfa;
  padding: 0 14px;
  color: var(--color-text);
  border-radius: 0
}

.lead-form input:not([type=checkbox]):focus {
  border-color: var(--color-accent)
}

.consent {
  grid-template-columns: 22px 1fr !important;
  align-items: start;
  gap: 10px !important;
  font-weight: 400 !important;
  line-height: 1.45;
  letter-spacing: 0 !important;
  color: var(--color-text-muted)
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--color-accent-deep)
}

.btn {
  min-height: 46px;
  border: 1px solid transparent;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: .03em
}

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

.btn--dark:hover {
  background: #383a35;
  transform: translateY(-1px)
}

.btn--gold {
  background: var(--color-accent);
  color: #191713
}

.btn--gold:hover {
  background: #c39a66
}

.btn--ghost {
  background: transparent;
  border-color: #53534e;
  color: var(--color-white)
}

.btn--ghost:hover {
  border-color: #d0ac7b;
  color: #d0ac7b
}

.btn--submit {
  width: 100%;
  margin-top: 8px;
  justify-content: space-between;
  padding-inline: 18px
}

.form-note {
  font-size: .73rem;
  color: var(--color-text-muted);
  margin: 12px 0 0
}

.site-footer {
  background: #171816;
  color: #c5c2b9;
  padding: 70px 0 34px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .65fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid #343530
}

.brand-lockup--footer {
  color: var(--color-white)
}

.brand-lockup--footer small {
  color: #9c9a92
}

.footer-brand>p {
  max-width: 390px;
  color: #9f9d95;
  font-family: var(--font-display);
  font-size: 1.02rem
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px
}

.footer-links a {
  text-decoration: none;
  font-size: .85rem
}

.footer-links a:hover {
  color: #d0ac7b
}

.footer-kicker {
  display: block;
  color: #d0ac7b;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 10px
}

.footer-company p {
  color: #a9a69e;
  font-size: .82rem;
  line-height: 1.55
}

.footer-bottom {
  padding-top: 30px;
  display: grid;
  grid-template-columns: 1.6fr .4fr;
  gap: 50px;
  font-size: .72rem;
  color: #7f7e77
}

.footer-bottom p {
  margin: 0
}

.legal-main {
  padding-bottom: 100px
}

.legal-hero {
  padding: 80px 0 54px;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 60px;
  align-items: end;
  border-bottom: 1px solid var(--color-line)
}

.legal-hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  line-height: .98;
  font-weight: 500;
  letter-spacing: -.03em;
  margin: 12px 0 18px
}

.legal-hero>div>p:last-child {
  max-width: 660px;
  color: var(--color-text-muted);
  font-family: var(--font-display);
  font-size: 1.15rem
}

.legal-seal {
  justify-self: end;
  width: 210px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--color-accent);
  clip-path: polygon(18% 0, 82% 0, 100% 18%, 100% 82%, 82% 100%, 18% 100%, 0 82%, 0 18%);
  background: var(--color-surface)
}

.legal-seal span {
  font-family: var(--font-display);
  font-size: 3.7rem
}

.legal-seal small {
  font-size: .65rem;
  letter-spacing: .1em
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 790px);
  gap: 70px;
  padding-top: 70px;
  align-items: start
}

.legal-aside {
  position: sticky;
  top: 28px;
  border-top: 1px solid var(--color-line);
  padding-top: 15px;
  color: var(--color-text-muted);
  font-size: .8rem
}

.legal-aside span {
  color: var(--color-accent-deep);
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: .68rem
}

.legal-article {
  font-family: var(--font-display);
  font-size: 1.06rem;
  color: #353632
}

.legal-article h2 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.12;
  margin: 45px 0 13px;
  color: var(--color-text)
}

.legal-article p {
  margin: 0 0 18px
}

.legal-article .legal-updated {
  font-family: var(--font-body);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--color-accent-deep);
  margin-bottom: 34px
}

.legal-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 26px 0
}

.legal-data>div {
  padding: 20px;
  border: 1px solid var(--color-line);
  background: var(--color-surface)
}

.legal-data span {
  display: block;
  font-family: var(--font-body);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-text-muted)
}

.legal-data strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500
}

.thanks-main {
  padding-bottom: 0
}

.thanks-hero {
  padding: 90px 0;
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 70px;
  align-items: center
}

.thanks-copy h1 {
  font-family: var(--font-display);
  font-size: var(--text-display);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.04em;
  margin: 12px 0 24px
}

.thanks-copy h1 span:not(:empty)::before {
  content: ", "
}

.thanks-copy>p:last-of-type {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-text-muted);
  max-width: 700px;
  margin-bottom: 30px
}

.thanks-seal {
  width: 310px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-accent);
  background: var(--color-surface);
  clip-path: polygon(18% 0, 82% 0, 100% 18%, 100% 82%, 82% 100%, 18% 100%, 0 82%, 0 18%)
}

.thanks-seal span,
.thanks-seal small {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em
}

.thanks-seal strong {
  font-family: var(--font-display);
  font-size: 6.5rem;
  font-weight: 500;
  line-height: 1;
  margin: 8px 0
}

.next-steps {
  padding: 60px 0 110px
}

.next-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px
}

.next-grid article {
  padding: 30px;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  min-height: 250px
}

.next-grid article>span {
  font-size: .67rem;
  letter-spacing: .18em;
  color: var(--color-accent-deep)
}

.next-grid h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.1;
  margin: 40px 0 12px
}

.next-grid p {
  font-size: .9rem;
  color: var(--color-text-muted)
}

.thanks-info {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 90px 0
}

.thanks-info-grid {
  display: grid;
  grid-template-columns: 1fr .55fr;
  gap: 90px
}

.thanks-info h2 {
  font-size: var(--text-h2);
  margin: 10px 0 24px;
  max-width: 760px
}

.thanks-info>div>div:first-child>p:last-child {
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: #c2c0b8;
  max-width: 720px
}

.thanks-contact {
  border-left: 1px solid #444540;
  padding-left: 40px
}

.thanks-contact span {
  color: #d1ae80;
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 700
}

.thanks-contact p {
  color: #b6b4ac;
  font-size: .85rem
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.is-visible {
  opacity: 1;
  transform: none
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none
  }

  * {
    animation: none !important;
    transition-duration: .01ms !important
  }
}

@media(max-width:1024px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 34px
  }

  .story-grid {
    grid-template-columns: 70px 1fr
  }

  .question-card {
    grid-column: 2
  }

  .section-heading {
    grid-template-columns: 170px 1fr;
    gap: 30px
  }

  .section-heading--familiar {
    display: block;
    max-width: 820px
  }

  .section-heading--familiar>div {
    margin-bottom: 16px
  }

  .familiar-layout {
    grid-template-columns: 1fr
  }

  .history-copy {
    position: static
  }

  .history-copy>p {
    max-width: 800px
  }

  .price-grid {
    grid-template-columns: 1fr minmax(250px, .55fr)
  }

  .route-intro {
    grid-template-columns: 60px 1fr
  }

  .route-intro .eyebrow {
    grid-column: 2
  }

  .route-intro h2,
  .route-intro>p:last-child {
    grid-column: 2
  }

  .details-showcase {
    grid-template-columns: 1fr
  }

  .spec-grid {
    grid-template-columns: 1fr 1fr
  }

  .spec-card--full {
    grid-column: 1/-1
  }

  .image-frame--product {
    min-height: 0;
    aspect-ratio: 16/8.8
  }

  .daily {
    grid-template-columns: 1fr 1fr;
    gap: 48px
  }

  .faq-grid {
    grid-template-columns: 1fr
  }

  .faq-intro {
    position: static;
    max-width: 760px
  }

  .order-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px
  }

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

  .footer-brand {
    grid-column: 1/-1
  }

  .footer-bottom {
    grid-template-columns: 1fr
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .legal-aside {
    position: static;
    max-width: 500px
  }
}

@media(max-width:768px) {
  .shell {
    width: min(100% - 28px, var(--max))
  }

  .header-inner {
    min-height: 72px
  }

  .brand-lockup img {
    width: 40px;
    height: 40px
  }

  .brand-lockup strong {
    font-size: .8rem
  }

  .brand-lockup small {
    font-size: .75rem
  }

  .menu-toggle {
    display: flex
  }

  .main-nav {
    position: fixed;
    inset: 102px 0 auto 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-line);
    padding: 24px 20px;
    display: grid;
    gap: 0;
    transform: translateY(-140%);
    opacity: 0;
    pointer-events: none;
    box-shadow: var(--shadow)
  }

  .menu-open .main-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto
  }

  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--color-line)
  }

  .main-nav a:last-child {
    border: 0;
    margin-top: 10px;
    text-align: center
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 48px
  }

  .hero-copy {
    padding: 0
  }

  .article-meta {
    margin-bottom: 30px
  }

  .image-frame--hero {
    aspect-ratio: 4/4.6
  }

  .story-band {
    padding: 72px 0
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .section-index {
    writing-mode: initial;
    transform: none
  }

  .question-card {
    grid-column: 1
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px
  }

  .section-heading>div {
    align-items: center
  }

  .section-heading--familiar {
    display: block;
    margin-bottom: 38px
  }

  .section-heading--familiar>div {
    margin-bottom: 14px
  }

  .familiar {
    padding: 80px 0
  }

  .editorial-collage {
    grid-template-columns: 1fr 1fr
  }

  .editorial-collage .collage-b {
    margin-top: 46px
  }

  .price-grid {
    grid-template-columns: 1fr
  }

  .price-editorial-note {
    justify-self: start;
    max-width: 620px;
    border-left: 0;
    border-top: 1px solid var(--color-line);
    padding: 26px 0 0
  }

  .route {
    padding: 80px 0
  }

  .route-intro {
    grid-template-columns: 50px 1fr
  }

  .route-line {
    grid-template-columns: 1fr;
    gap: 18px
  }

  .route-line i {
    width: 1px;
    height: 34px;
    margin-left: 8px
  }

  .route-line i::after {
    right: -3px;
    top: auto;
    bottom: 0
  }

  .details-section {
    padding: 80px 0
  }

  .spec-grid {
    grid-template-columns: 1fr
  }

  .spec-card--full {
    grid-column: 1
  }

  .spec-card--full {
    display: flex;
    min-height: 220px
  }

  .spec-card--full>i {
    position: absolute;
    right: 22px;
    top: 18px;
    font-size: 2.15rem
  }

  .image-frame--product {
    aspect-ratio: 4/3;
    min-height: 0
  }

  .product-figure figcaption {
    display: flex;
    gap: 12px
  }

  .daily {
    grid-template-columns: 1fr;
    padding: 80px 0
  }

  .floating-label {
    right: 12px
  }

  .daily-copy {
    padding-top: 10px
  }

  .faq-section {
    padding: 80px 0
  }

  .faq-item button {
    min-height: 72px
  }

  .order-section {
    padding: 80px 0;
    background: var(--color-bg)
  }

  .order-grid {
    grid-template-columns: 1fr
  }

  .lead-form {
    padding: 28px 22px
  }

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

  .footer-brand {
    grid-column: auto
  }

  .footer-bottom {
    gap: 20px
  }

  .legal-hero {
    grid-template-columns: 1fr;
    padding: 60px 0 40px
  }

  .legal-seal {
    justify-self: start;
    width: 170px
  }

  .legal-layout {
    padding-top: 48px
  }

  .legal-article h2 {
    font-size: 1.75rem
  }

  .legal-data {
    grid-template-columns: 1fr
  }

  .thanks-hero {
    grid-template-columns: 1fr;
    padding: 70px 0
  }

  .thanks-seal {
    width: 230px
  }

  .thanks-seal strong {
    font-size: 5rem
  }

  .next-steps {
    padding: 40px 0 80px
  }

  .next-grid {
    grid-template-columns: 1fr
  }

  .thanks-info {
    padding: 70px 0
  }

  .thanks-info-grid {
    grid-template-columns: 1fr;
    gap: 46px
  }

  .thanks-contact {
    border-left: 0;
    border-top: 1px solid #444540;
    padding: 28px 0 0
  }
}

@media(max-width:480px) {
  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.5rem)
  }

  .hero-dek {
    font-size: 1.12rem
  }

  .hero-note {
    grid-template-columns: 52px 1fr
  }

  .facet-badge {
    width: 50px;
    height: 50px
  }

  .editorial-collage {
    grid-template-columns: 1fr
  }

  .editorial-collage .collage-b {
    margin-top: 0
  }

  .editorial-collage .image-frame,
  .editorial-collage .collage-b .image-frame {
    aspect-ratio: 4/3.2
  }

  .price-reveal::before {
    width: 7px
  }

  .price-copy h2 {
    font-size: 2.7rem
  }

  .price-meta {
    margin-bottom: 14px
  }

  .price-editorial-note>span {
    margin-bottom: 14px
  }

  .floating-label {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -18px 14px 0
  }

  .lead-form {
    clip-path: none
  }
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;

  padding: 18px 20px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(24px);

  transition:
    opacity .35s ease,
    visibility .35s ease,
    transform .35s ease;
}

.cookie-banner.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.cookie-banner__inner {
  width: min(var(--max), 100%);
  margin-inline: auto;

  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(36px, 6vw, 90px);

  padding: 28px 30px;

  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-left: 4px solid var(--color-accent);

  box-shadow:
    0 -8px 40px rgba(26, 25, 21, .06),
    0 18px 60px rgba(26, 25, 21, .14);
}

.cookie-banner__content {
  max-width: 760px;
}

.cookie-banner__eyebrow {
  display: block;

  margin-bottom: 9px;

  color: var(--color-accent-deep);

  font-size: .66rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.cookie-banner h2 {
  margin: 0 0 10px;

  color: var(--color-text);

  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.025em;
}

.cookie-banner p {
  max-width: 720px;

  margin: 0;

  color: var(--color-text-muted);

  font-size: .88rem;
  line-height: 1.6;
}

.cookie-banner__link {
  display: inline-block;

  margin-top: 12px;

  color: var(--color-text);

  font-size: .75rem;
  font-weight: 600;
  line-height: 1.3;

  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.cookie-banner__link:hover {
  color: var(--color-accent-deep);
}

.cookie-banner__actions {
  min-width: 190px;

  display: grid;
  gap: 9px;
}

.cookie-banner__button {
  min-height: 46px;

  padding: 11px 20px;

  border: 1px solid var(--color-primary);
  border-radius: 0;

  font: inherit;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .035em;

  cursor: pointer;

  transition:
    background .25s ease,
    color .25s ease,
    border-color .25s ease,
    transform .25s ease;
}

.cookie-banner__button--primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.cookie-banner__button--primary:hover {
  background: #383a35;
  transform: translateY(-1px);
}

.cookie-banner__button--secondary {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-line);
}

.cookie-banner__button--secondary:hover {
  color: var(--color-accent-deep);
  border-color: var(--color-accent-deep);
}

.cookie-banner__button:focus-visible {
  outline: 3px solid color-mix(
    in srgb,
    var(--color-accent) 70%,
    white
  );
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 12px 14px;
  }

  .cookie-banner__inner {
    grid-template-columns: 1fr;
    gap: 22px;

    padding: 24px 22px;
  }

  .cookie-banner__actions {
    min-width: 0;

    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .cookie-banner {
    padding: 8px;
  }

  .cookie-banner__inner {
    gap: 18px;

    padding: 21px 18px 18px;

    border-left-width: 3px;
  }

  .cookie-banner h2 {
    font-size: 1.6rem;
  }

  .cookie-banner p {
    font-size: .82rem;
    line-height: 1.55;
  }

  .cookie-banner__actions {
    grid-template-columns: 1fr;
  }

  .cookie-banner__button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner {
    transition: none;
  }
}