@import "tailwindcss";

:root {
  --ink: #11120f;
  --ink-soft: #1b1d18;
  --cream: #f1ecdf;
  --cream-soft: #faf7ef;
  --lime: #c9f23f;
  --burnt: #db5029;
  --gold: #d6aa58;
  --line-dark: rgba(17, 18, 15, 0.18);
  --line-light: rgba(255, 255, 255, 0.2);
  --sans: Arial, Helvetica, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
  background: var(--ink);
}

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

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

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

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

::selection {
  background: var(--lime);
  color: var(--ink);
}

.site-header {
  align-items: center;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  background: rgba(17, 18, 15, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  display: flex;
  height: 82px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(22px, 4vw, 70px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
}

.official-logo {
  align-items: center;
  display: grid;
  gap: 11px;
  grid-template-columns: 42px 124px;
  width: 177px;
}

.official-logo img {
  filter: invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  height: auto;
  object-fit: contain;
  width: 100%;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: clamp(22px, 2.7vw, 46px);
}

.desktop-nav a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  position: relative;
  text-transform: uppercase;
}

.desktop-nav a::after {
  background: var(--lime);
  bottom: -9px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  list-style: none;
  text-transform: uppercase;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav-panel {
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 18px;
  min-width: 220px;
  padding: 24px;
  position: absolute;
  right: 0;
  top: 28px;
}

.mobile-nav-panel a {
  font-size: 13px;
  font-weight: 700;
}

.hero {
  color: white;
  min-height: 760px;
  overflow: hidden;
  position: relative;
  height: 100svh;
}

.hero-image,
.cover-image {
  object-fit: cover;
}

.hero-image {
  filter: saturate(0.8) contrast(1.08);
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 7, 5, 0.86) 0%, rgba(6, 7, 5, 0.45) 52%, rgba(6, 7, 5, 0.16) 100%),
    linear-gradient(0deg, rgba(6, 7, 5, 0.88) 0%, transparent 55%);
  inset: 0;
  position: absolute;
}

.hero-grain {
  background-image:
    repeating-radial-gradient(circle at 17% 24%, rgba(255, 255, 255, 0.25) 0 0.55px, transparent 0.8px 4px),
    repeating-radial-gradient(circle at 73% 68%, rgba(255, 255, 255, 0.16) 0 0.45px, transparent 0.7px 5px);
  inset: 0;
  mix-blend-mode: soft-light;
  opacity: 0.22;
  pointer-events: none;
  position: absolute;
}

.hero-meta {
  align-items: flex-end;
  border-left: 1px solid var(--line-light);
  display: flex;
  gap: 10px;
  left: clamp(22px, 4vw, 70px);
  padding: 0 0 4px 14px;
  position: absolute;
  top: 114px;
}

.hero-meta span {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-meta strong {
  color: var(--lime);
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  font-weight: 400;
}

.hero-content {
  bottom: clamp(80px, 10vh, 130px);
  left: clamp(22px, 5.7vw, 106px);
  max-width: 1380px;
  position: absolute;
  right: clamp(22px, 5.7vw, 106px);
  z-index: 2;
}

.eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.68);
}

.hero h1 {
  font-size: clamp(58px, 9.7vw, 158px);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.83;
  margin: 0;
  max-width: 1220px;
}

h1 em,
h2 em {
  color: var(--lime);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero-bottom {
  align-items: flex-end;
  border-top: 1px solid var(--line-light);
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(260px, 580px) 1fr;
  margin-top: 38px;
  padding-top: 22px;
}

.hero-bottom > p {
  color: rgba(255, 255, 255, 0.77);
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.55;
  margin: 0;
}

.hero-actions {
  align-items: center;
  display: flex;
  gap: 26px;
  justify-content: flex-end;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  gap: 18px;
  justify-content: center;
  letter-spacing: 0.09em;
  min-height: 52px;
  padding: 0 22px;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

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

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

.button-lime:hover {
  background: white;
}

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

.button-cream:hover,
.button-ink:hover {
  background: var(--lime);
  color: var(--ink);
}

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

.button-outline {
  border-color: var(--ink);
}

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

.play-dot {
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--ink);
  border-top: 5px solid transparent;
  height: 0;
  width: 0;
}

.text-link {
  align-items: center;
  border-bottom: 1px solid currentColor;
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  gap: 12px;
  letter-spacing: 0.1em;
  padding-bottom: 6px;
  text-transform: uppercase;
}

.light-link {
  color: white;
}

.scroll-cue {
  align-items: center;
  bottom: 34px;
  display: flex;
  gap: 10px;
  left: clamp(22px, 4vw, 70px);
  position: absolute;
  z-index: 2;
}

.scroll-cue span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-cue i {
  background: var(--lime);
  display: block;
  height: 1px;
  width: 42px;
}

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

.section-cream {
  background: var(--cream);
}

.film-section {
  display: grid;
  gap: clamp(30px, 5vw, 80px);
  grid-template-columns: minmax(270px, 0.75fr) minmax(520px, 1.65fr);
  min-height: 850px;
  overflow: hidden;
  padding: clamp(100px, 11vw, 180px) clamp(22px, 5.7vw, 106px);
  position: relative;
}

.section-number {
  color: rgba(255, 255, 255, 0.06);
  font-family: var(--serif);
  font-size: clamp(190px, 32vw, 520px);
  line-height: 0.8;
  position: absolute;
  right: -3vw;
  top: -3vw;
}

.film-copy {
  align-self: center;
  position: relative;
  z-index: 1;
}

.film-copy h2 {
  font-family: var(--serif);
  font-size: clamp(64px, 8vw, 125px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.85;
  margin: 0 0 30px;
}

.film-deck {
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 390px;
}

.film-status {
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  border-top: 1px solid var(--line-light);
  display: flex;
  font-size: 10px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.13em;
  margin: 0 0 30px;
  padding: 14px 0;
  text-transform: uppercase;
}

.live-dot {
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(201, 242, 63, 0.13);
  height: 7px;
  width: 7px;
}

.film-frame {
  align-self: center;
  aspect-ratio: 16 / 10;
  display: block;
  min-height: 430px;
  overflow: hidden;
  position: relative;
}

.film-frame .cover-image {
  filter: saturate(0.82) contrast(1.08);
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.film-frame:hover .cover-image {
  transform: scale(1.035);
}

.film-frame-shade {
  background: linear-gradient(0deg, rgba(12, 10, 8, 0.78), transparent 50%);
  inset: 0;
  position: absolute;
}

.film-frame-topline,
.film-frame-caption {
  display: flex;
  justify-content: space-between;
  left: 24px;
  position: absolute;
  right: 24px;
}

.film-frame-topline {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  top: 22px;
}

.film-frame-caption {
  align-items: flex-end;
  bottom: 24px;
}

.film-frame-caption span {
  font-family: var(--serif);
  font-size: clamp(32px, 3vw, 56px);
}

.film-frame-caption small {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.production-stamp {
  align-items: center;
  background: var(--lime);
  display: flex;
  font-size: 10px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.14em;
  left: 50%;
  min-height: 48px;
  padding: 0 22px;
  position: absolute;
  text-transform: uppercase;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, background 180ms ease;
  white-space: nowrap;
}

.film-frame:hover .production-stamp {
  background: white;
  transform: translate(-50%, -50%) scale(1.06);
}

.production-journal {
  background: var(--ink);
  color: white;
  padding: 0 clamp(22px, 5.7vw, 106px) clamp(100px, 11vw, 175px);
}

.production-journal-head {
  align-items: end;
  border-top: 1px solid var(--line-light);
  display: grid;
  gap: 45px;
  grid-template-columns: minmax(0, 0.64fr) minmax(300px, 0.36fr);
  padding: clamp(65px, 7vw, 105px) 0 55px;
}

.production-journal-head h2 {
  font-size: clamp(50px, 6.8vw, 108px);
  letter-spacing: -0.075em;
  line-height: 0.88;
  margin: 0;
}

.production-journal-head h2 em {
  color: var(--lime);
  display: block;
}

.production-journal-head > p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.production-journal-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(300px, 1.15fr) repeat(2, minmax(220px, 0.85fr));
  grid-template-rows: 255px 255px;
}

.production-journal-shot {
  background: var(--ink-soft);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.production-journal-shot:first-child {
  grid-row: 1 / span 2;
}

.production-journal-shot:last-child {
  grid-column: 2 / span 2;
}

.production-journal-shot img {
  filter: saturate(0.82) contrast(1.06);
  height: 100%;
  object-fit: cover;
  position: absolute;
  transition: transform 500ms ease;
  width: 100%;
}

.production-journal-shot:first-child img {
  object-position: 63% center;
}

.production-journal-shot:hover img {
  transform: scale(1.025);
}

.production-journal-shot::after {
  background: linear-gradient(0deg, rgba(17, 18, 15, 0.86), transparent 56%);
  content: "";
  inset: 0;
  position: absolute;
}

.production-journal-shot figcaption {
  bottom: 20px;
  color: white;
  font-size: 9px;
  font-weight: 800;
  left: 20px;
  letter-spacing: 0.13em;
  position: absolute;
  right: 20px;
  text-transform: uppercase;
  z-index: 1;
}

.production-journal-shot figcaption span {
  color: var(--lime);
  display: block;
  margin-bottom: 6px;
}

.series-intro {
  display: grid;
  gap: 40px;
  grid-template-columns: 0.58fr 1.7fr 0.72fr;
  padding: clamp(100px, 12vw, 190px) clamp(22px, 5.7vw, 106px) clamp(90px, 10vw, 160px);
}

.section-label {
  align-self: start;
}

.section-label span {
  color: rgba(17, 18, 15, 0.46);
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
}

.series-title-wrap h2 {
  font-size: clamp(49px, 6vw, 92px);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.96;
  margin: 0;
}

.series-title-wrap h2 em {
  color: var(--burnt);
}

.series-body {
  align-self: end;
  border-left: 1px solid var(--line-dark);
  padding-left: clamp(22px, 2.4vw, 42px);
}

.series-body p {
  color: rgba(17, 18, 15, 0.64);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 20px;
}

.series-body .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.35;
}

.stories {
  padding: 0 clamp(22px, 5.7vw, 106px) clamp(110px, 12vw, 200px);
}

.stories-header {
  align-items: end;
  border-top: 1px solid var(--line-dark);
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr minmax(260px, 390px);
  padding: 44px 0 80px;
}

.stories-header h2 {
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
  margin: 0;
}

.stories-header > p {
  color: rgba(17, 18, 15, 0.62);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.story-grid {
  align-items: start;
  display: grid;
  gap: clamp(36px, 7vw, 120px);
  grid-template-columns: 1.28fr 0.72fr;
}

.story-card {
  display: block;
}

.story-card-offset {
  margin-top: 150px;
}

.story-image-wrap {
  aspect-ratio: 1.32 / 1;
  margin-bottom: 18px;
  overflow: hidden;
  position: relative;
}

.story-image-wrap.portrait {
  aspect-ratio: 0.84 / 1;
}

.story-image-wrap img {
  filter: saturate(0.72) contrast(1.06);
  transition: filter 300ms ease, transform 500ms ease;
}

.story-card:hover .story-image-wrap img {
  filter: saturate(1);
  transform: scale(1.025);
}

.story-card-meta {
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  font-size: 9px;
  font-weight: 800;
  justify-content: space-between;
  letter-spacing: 0.14em;
  padding-bottom: 11px;
  text-transform: uppercase;
}

.story-card h3 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 64px);
  font-weight: 400;
  letter-spacing: -0.055em;
  margin: 16px 0 2px;
}

.story-card-offset h3 {
  font-size: clamp(30px, 3vw, 48px);
}

.story-card > p {
  color: rgba(17, 18, 15, 0.58);
  font-size: 11px;
  letter-spacing: 0.06em;
  margin: 0;
}

.story-ticker {
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  border-top: 1px solid var(--line-dark);
  display: flex;
  gap: clamp(18px, 3vw, 44px);
  justify-content: space-between;
  margin-top: 120px;
  overflow: hidden;
  padding: 20px 0;
}

.story-ticker span {
  font-size: clamp(20px, 3.2vw, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.story-ticker i {
  background: var(--burnt);
  border-radius: 50%;
  flex: 0 0 7px;
  height: 7px;
  width: 7px;
}

.section-burnt {
  background: var(--burnt);
  color: white;
}

.discover {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 860px;
  overflow: hidden;
}

.discover-copy {
  align-self: center;
  padding: 100px clamp(36px, 6vw, 105px);
}

.discover-copy h2 {
  font-size: clamp(54px, 6vw, 95px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.88;
  margin: 0 0 40px;
}

.discover-copy h2 em {
  color: var(--ink);
}

.discover-copy > p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 34px;
  max-width: 480px;
}

.discover-visual {
  background:
    linear-gradient(90deg, rgba(219, 80, 41, 0.1), transparent),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.07) 0 1px, transparent 1px 11vw),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.07) 0 1px, transparent 1px 11vw),
    #20221d;
  min-height: 860px;
  overflow: hidden;
  position: relative;
}

.map-word {
  bottom: 30px;
  color: rgba(255, 255, 255, 0.06);
  font-size: clamp(100px, 15vw, 250px);
  font-weight: 800;
  left: -40px;
  letter-spacing: -0.08em;
  line-height: 0.75;
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: left bottom;
  white-space: nowrap;
}

.photo-card {
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
  overflow: hidden;
  position: absolute;
}

.photo-card-one {
  aspect-ratio: 0.78 / 1;
  left: 15%;
  top: 12%;
  transform: rotate(-4deg);
  width: 42%;
}

.photo-card-two {
  aspect-ratio: 1.08 / 1;
  bottom: 10%;
  right: 8%;
  transform: rotate(5deg);
  width: 38%;
}

.map-pin {
  background: var(--lime);
  border: 6px solid var(--ink);
  border-radius: 50%;
  height: 26px;
  position: absolute;
  width: 26px;
}

.pin-one {
  right: 20%;
  top: 17%;
}

.pin-two {
  bottom: 23%;
  left: 15%;
}

.taste-section {
  background: var(--lime);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 850px;
  overflow: hidden;
}

.taste-kicker {
  align-content: center;
  border-right: 1px solid rgba(17, 18, 15, 0.2);
  display: grid;
  overflow: hidden;
  padding: clamp(70px, 8vw, 130px) 0;
}

.taste-kicker span {
  font-family: var(--serif);
  font-size: clamp(100px, 16vw, 270px);
  font-style: italic;
  letter-spacing: -0.09em;
  line-height: 0.72;
  margin-left: -0.08em;
  white-space: nowrap;
}

.taste-kicker span:last-child {
  -webkit-text-stroke: 2px var(--ink);
  color: transparent;
  font-family: var(--sans);
  font-size: clamp(70px, 12vw, 210px);
  font-style: normal;
  font-weight: 800;
  margin-left: -0.45em;
  margin-top: 0.18em;
}

.taste-content {
  align-self: center;
  max-width: 650px;
  padding: 90px clamp(34px, 6vw, 110px);
}

.taste-content h2 {
  font-size: clamp(52px, 5.7vw, 91px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.9;
  margin: 0 0 35px;
}

.taste-content h2 em {
  color: var(--burnt);
}

.taste-content p {
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 20px;
}

.taste-content .taste-lead {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 700;
}

.taste-content .taste-small {
  border-top: 1px solid rgba(17, 18, 15, 0.2);
  color: rgba(17, 18, 15, 0.68);
  font-size: 12px;
  margin-top: 28px;
  padding-top: 20px;
}

.taste-content .button {
  margin-top: 16px;
}

.director {
  display: grid;
  grid-template-columns: 0.48fr 1.52fr;
  min-height: 780px;
  overflow: hidden;
  padding: clamp(100px, 11vw, 180px) clamp(22px, 5.7vw, 106px);
  position: relative;
}

.director-mark {
  color: var(--lime);
  font-family: var(--serif);
  font-size: clamp(260px, 38vw, 620px);
  left: -0.04em;
  line-height: 0.55;
  opacity: 0.16;
  position: absolute;
  top: 0.08em;
}

.director-copy {
  grid-column: 2;
  position: relative;
  z-index: 1;
}

.director-copy h2 {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.98;
  margin: 0 0 60px;
  max-width: 1100px;
}

.director-columns {
  border-top: 1px solid var(--line-light);
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 1fr;
  padding-top: 28px;
}

.director-columns p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.director-column-stack {
  display: grid;
  gap: 20px;
}

.signature {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}

.signature strong {
  color: var(--lime);
  font-family: var(--serif);
  font-size: 27px;
  font-style: italic;
  font-weight: 400;
}

.signature span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin-top: 6px;
  text-transform: uppercase;
}

.owner-path {
  display: grid;
  gap: clamp(50px, 8vw, 140px);
  grid-template-columns: 0.95fr 1.05fr;
  padding: clamp(100px, 12vw, 190px) clamp(22px, 5.7vw, 106px);
}

.owner-heading h2 {
  font-size: clamp(54px, 6.8vw, 110px);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.88;
  margin: 0;
}

.owner-heading h2 em {
  color: var(--burnt);
}

.owner-body {
  align-self: start;
  border-top: 1px solid var(--line-dark);
  padding-top: 28px;
}

.owner-body > p {
  color: rgba(17, 18, 15, 0.65);
  font-size: 14px;
  line-height: 1.7;
}

.owner-body .owner-lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.35;
  margin-top: 0;
}

.offer-cards {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
  margin: 42px 0 26px;
}

.offer-card {
  border: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 24px;
}

.offer-card .offer-name,
.offer-card .recommended {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-card-topline {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

.offer-card .recommended {
  background: var(--lime);
  color: var(--ink);
  font-size: 8px;
  padding: 7px 9px;
}

.offer-card strong {
  font-family: var(--serif);
  font-size: 50px;
  font-weight: 400;
  letter-spacing: -0.05em;
  margin: 34px 0 14px;
}

.offer-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.035em;
  margin: 0 0 12px;
}

.offer-card p {
  color: rgba(17, 18, 15, 0.62);
  font-size: 12px;
  line-height: 1.55;
  margin: 0 0 20px;
}

.offer-card ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
}

.offer-card li {
  border-top: 1px solid var(--line-dark);
  font-size: 10px;
  line-height: 1.45;
  padding-top: 8px;
}

.offer-card small {
  color: rgba(17, 18, 15, 0.55);
  font-size: 10px;
  margin-top: auto;
}

.featured-offer {
  background: var(--ink);
  color: white;
}

.featured-offer small {
  color: rgba(255, 255, 255, 0.55);
}

.featured-offer p {
  color: rgba(255, 255, 255, 0.68);
}

.featured-offer li {
  border-color: var(--line-light);
}

.owner-body .core-line {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wide-button {
  margin-top: 20px;
  width: 100%;
}

.owner-body .reassurance {
  font-size: 11px;
  margin: 14px 0 0;
  text-align: center;
}

.partner-path {
  background: #d9d0bd;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  min-height: 800px;
  overflow: hidden;
}

.partner-number {
  align-items: flex-end;
  background:
    linear-gradient(rgba(17, 18, 15, 0.72), rgba(17, 18, 15, 0.72)),
    url("/public/media/og-offstrip.jpg") center / cover;
  color: white;
  display: flex;
  font-family: var(--serif);
  font-size: clamp(100px, 15vw, 230px);
  letter-spacing: -0.08em;
  line-height: 0.8;
  padding: 50px;
}

.partner-content {
  align-self: center;
  max-width: 780px;
  padding: 100px clamp(38px, 7vw, 130px);
}

.partner-content h2 {
  font-size: clamp(58px, 7vw, 112px);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.88;
  margin: 0 0 38px;
}

.partner-content > p {
  color: rgba(17, 18, 15, 0.65);
  font-size: 14px;
  line-height: 1.7;
  max-width: 590px;
}

.partner-content .partner-lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.4;
}

.partner-offer {
  border-bottom: 1px solid var(--line-dark);
  border-top: 1px solid var(--line-dark);
  display: grid;
  gap: 8px;
  margin: 35px 0 28px;
  padding: 22px 0;
}

.partner-offer span,
.partner-offer small {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.partner-offer strong {
  font-family: var(--serif);
  font-size: clamp(37px, 4vw, 61px);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.partner-offer small {
  color: rgba(17, 18, 15, 0.52);
}

.drops {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 650px;
  overflow: hidden;
  padding: 80px clamp(22px, 5.7vw, 106px);
}

.drops-art {
  color: var(--lime);
  display: grid;
  font-size: clamp(100px, 16vw, 260px);
  font-weight: 800;
  letter-spacing: -0.085em;
  line-height: 0.68;
}

.drops-art span:last-child {
  -webkit-text-stroke: 1px var(--lime);
  color: transparent;
  margin-left: 0.2em;
}

.drops-content {
  border-left: 1px solid var(--line-light);
  padding-left: clamp(28px, 5vw, 90px);
}

.drops-content h2 {
  font-family: var(--serif);
  font-size: clamp(50px, 6vw, 88px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.95;
  margin: 0 0 28px;
}

.drops-content > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 30px;
  max-width: 480px;
}

.footer {
  background: #090a08;
  color: white;
  padding: 70px clamp(22px, 5.7vw, 106px) 32px;
}

.footer-top {
  align-items: end;
  border-bottom: 1px solid var(--line-light);
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
}

.footer-logo {
  align-items: center;
  display: grid;
  gap: clamp(14px, 2vw, 24px);
  grid-template-columns: minmax(64px, 0.34fr) minmax(180px, 1fr);
  width: min(38vw, 430px);
}

.footer-logo img {
  filter: invert(1);
  height: auto;
  object-fit: contain;
  width: 100%;
}

.footer-top p {
  color: var(--lime);
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  margin: 0;
}

.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, 1fr);
  margin-left: 50%;
  padding: 55px 0 80px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-grid span {
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.footer-grid a {
  font-size: 13px;
  width: fit-content;
}

.footer-grid a:hover {
  color: var(--lime);
}

.footer-bottom {
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.38);
  display: flex;
  font-size: 9px;
  justify-content: space-between;
  letter-spacing: 0.1em;
  padding-top: 22px;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .film-section {
    grid-template-columns: 0.72fr 1.28fr;
  }

  .series-intro {
    grid-template-columns: 0.4fr 1.6fr;
  }

  .series-body {
    grid-column: 2;
  }

  .taste-section {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .footer-grid {
    margin-left: 35%;
  }
}

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

  .mobile-nav {
    display: block;
  }

  .hero {
    min-height: 700px;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(6, 7, 5, 0.84), rgba(6, 7, 5, 0.3)),
      linear-gradient(0deg, rgba(6, 7, 5, 0.92), rgba(6, 7, 5, 0.06) 72%);
  }

  .hero-content {
    bottom: 86px;
  }

  .hero-bottom {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .hero-actions {
    justify-content: flex-start;
  }

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

  .film-frame {
    min-height: 0;
  }

  .production-journal-head {
    grid-template-columns: 1fr;
  }

  .production-journal-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .production-journal-shot,
  .production-journal-shot:first-child {
    aspect-ratio: 4 / 3;
    grid-row: auto;
  }

  .production-journal-shot:last-child {
    aspect-ratio: 16 / 7;
    grid-column: 1 / span 2;
  }

  .series-intro {
    grid-template-columns: 1fr;
  }

  .series-body {
    grid-column: 1;
    max-width: 620px;
  }

  .stories-header {
    grid-template-columns: 1fr;
  }

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

  .discover-visual {
    min-height: 650px;
  }

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

  .taste-kicker {
    border-bottom: 1px solid rgba(17, 18, 15, 0.2);
    border-right: 0;
    min-height: 450px;
  }

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

  .director-copy {
    grid-column: 1;
  }

  .owner-path,
  .partner-path,
  .drops {
    grid-template-columns: 1fr;
  }

  .partner-number {
    min-height: 480px;
  }

  .drops {
    gap: 70px;
  }

  .drops-content {
    border-left: 0;
    border-top: 1px solid var(--line-light);
    padding-left: 0;
    padding-top: 50px;
  }

  .footer-grid {
    margin-left: 0;
  }
}

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

  .official-logo {
    gap: 8px;
    grid-template-columns: 34px 100px;
    width: 142px;
  }

  .hero {
    min-height: 740px;
  }

  .hero-meta {
    top: 92px;
  }

  .hero h1 {
    font-size: clamp(55px, 17vw, 82px);
  }

  .hero-bottom {
    margin-top: 28px;
  }

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

  .scroll-cue {
    display: none;
  }

  .film-section {
    min-height: 0;
    padding-bottom: 90px;
  }

  .film-copy h2 {
    font-size: 67px;
  }

  .production-journal {
    padding-left: 22px;
    padding-right: 22px;
  }

  .production-journal-head h2 {
    font-size: 52px;
  }

  .production-journal-grid {
    grid-template-columns: 1fr;
  }

  .production-journal-shot,
  .production-journal-shot:first-child,
  .production-journal-shot:last-child {
    aspect-ratio: 4 / 3;
    grid-column: auto;
  }

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

  .film-frame-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .series-intro,
  .stories,
  .director,
  .owner-path {
    padding-left: 22px;
    padding-right: 22px;
  }

  .series-title-wrap h2 {
    font-size: 48px;
  }

  .series-body {
    border-left: 0;
    border-top: 1px solid var(--line-dark);
    padding-left: 0;
    padding-top: 24px;
  }

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

  .story-card-offset {
    margin-top: 30px;
  }

  .story-image-wrap.portrait {
    aspect-ratio: 1 / 1;
  }

  .story-ticker {
    justify-content: flex-start;
  }

  .story-ticker span {
    font-size: 22px;
  }

  .discover-copy {
    padding: 90px 22px;
  }

  .discover-visual {
    min-height: 520px;
  }

  .photo-card-one {
    left: 8%;
    width: 52%;
  }

  .photo-card-two {
    width: 47%;
  }

  .taste-kicker {
    min-height: 330px;
  }

  .taste-content {
    padding: 85px 22px;
  }

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

  .offer-cards {
    grid-template-columns: 1fr;
  }

  .partner-number {
    min-height: 340px;
    padding: 25px;
  }

  .partner-content {
    padding: 90px 22px;
  }

  .drops {
    padding: 90px 22px;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

  .footer-logo {
    grid-template-columns: minmax(72px, 0.32fr) minmax(190px, 1fr);
    max-width: 340px;
    width: 100%;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}

/* Foodbox film-drop landing page */

.drop-landing {
  background: var(--cream);
  overflow: hidden;
}

.drop-header {
  align-items: center;
  color: white;
  display: flex;
  height: 82px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(22px, 4vw, 70px);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 30;
}

.drop-logo,
.drop-footer-logo {
  align-items: center;
  display: grid;
  gap: 11px;
  grid-template-columns: 42px 124px;
  width: 177px;
}

.drop-logo img,
.drop-footer-logo img {
  filter: invert(1);
  height: auto;
  object-fit: contain;
  width: 100%;
}

.drop-home-link,
.drop-jump-link {
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding-bottom: 7px;
  text-transform: uppercase;
}

.drop-home-link:hover,
.drop-jump-link:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.drop-hero {
  background: var(--ink);
  color: white;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 940px;
  padding-top: 82px;
  position: relative;
}

.drop-hero-copy {
  align-self: center;
  padding: 100px clamp(45px, 6vw, 110px) 170px;
  position: relative;
  z-index: 3;
}

.drop-status {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: rgba(255, 255, 255, 0.72);
  display: inline-flex;
  font-size: 9px;
  font-weight: 800;
  gap: 9px;
  letter-spacing: 0.14em;
  margin-bottom: 56px;
  padding: 9px 12px;
  text-transform: uppercase;
}

.drop-status i {
  background: var(--burnt);
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

.drop-hero-copy h1 {
  font-size: clamp(62px, 7.6vw, 124px);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.83;
  margin: 0 0 42px;
}

.drop-hero-copy h1 em,
.drop-inbox h2 em,
.drop-free h2 em,
.drop-promise h2 em {
  color: var(--lime);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

.drop-hero-deck {
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.35;
  margin: 0 0 35px;
  max-width: 650px;
}

.drop-visual {
  min-height: 858px;
  overflow: hidden;
  position: relative;
}

.drop-visual-image {
  filter: saturate(0.72) contrast(1.1);
  object-fit: cover;
}

.drop-visual-shade {
  background:
    linear-gradient(90deg, rgba(17, 18, 15, 0.48), rgba(17, 18, 15, 0.05) 35%),
    linear-gradient(0deg, rgba(9, 10, 8, 0.8), transparent 55%);
  inset: 0;
  position: absolute;
}

.drop-film-edge {
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0 15px,
      rgba(9, 10, 8, 0.9) 15px 41px,
      transparent 41px 58px
    );
  bottom: 0;
  position: absolute;
  top: 0;
  width: 18px;
}

.drop-film-edge-left {
  left: 15px;
}

.drop-film-edge-right {
  right: 15px;
}

.drop-visual-topline,
.drop-visual-caption {
  display: flex;
  justify-content: space-between;
  left: 55px;
  position: absolute;
  right: 55px;
  z-index: 2;
}

.drop-visual-topline {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding-bottom: 13px;
  text-transform: uppercase;
  top: 36px;
}

.drop-visual-caption {
  align-items: end;
  bottom: 44px;
}

.drop-visual-caption strong {
  font-family: var(--serif);
  font-size: clamp(37px, 4vw, 67px);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.drop-visual-caption span {
  color: var(--lime);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.drop-form-card {
  background: var(--cream);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
  color: var(--ink);
  max-width: 760px;
  padding: clamp(42px, 4.5vw, 72px);
  position: relative;
  width: min(100%, 760px);
  z-index: 10;
}

.drop-form-section {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(219, 80, 41, 0.97), rgba(219, 80, 41, 0.86)),
    var(--burnt);
  display: flex;
  justify-content: center;
  padding: clamp(75px, 8vw, 120px) clamp(14px, 5vw, 72px);
  position: relative;
}

.drop-form-section::before {
  color: rgba(17, 18, 15, 0.09);
  content: "DROP";
  font-size: clamp(160px, 28vw, 430px);
  font-weight: 800;
  left: -0.06em;
  letter-spacing: -0.1em;
  line-height: 0.7;
  pointer-events: none;
  position: absolute;
}

.drop-form-card::before {
  border: 1px solid rgba(17, 18, 15, 0.18);
  content: "";
  inset: 12px;
  pointer-events: none;
  position: absolute;
}

.drop-form-topline {
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  font-size: 9px;
  font-weight: 800;
  justify-content: space-between;
  letter-spacing: 0.13em;
  margin-bottom: 30px;
  padding-bottom: 13px;
  text-transform: uppercase;
}

.drop-form-topline span:last-child {
  color: var(--burnt);
}

.drop-form-card h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 4.8vw, 69px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
  margin: 0 0 18px;
}

.drop-form-card > p {
  color: rgba(17, 18, 15, 0.62);
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 24px;
}

.drop-form-card > small {
  border-top: 1px solid var(--line-dark);
  color: rgba(17, 18, 15, 0.5);
  display: block;
  font-size: 9px;
  line-height: 1.5;
  margin-top: 18px;
  padding-top: 14px;
}

.drop-form-embed {
  min-height: 190px;
  position: relative;
  --hsf-global__font-family: Arial, Helvetica, sans-serif;
  --hsf-global__font-size: 14px;
  --hsf-global__color: #11120f;
  --hsf-global-error__color: #db5029;
  --hsf-background__background-color: transparent;
  --hsf-background__border-width: 0;
  --hsf-background__padding: 0;
  --hsf-row__horizontal-spacing: 12px;
  --hsf-row__vertical-spacing: 14px;
  --hsf-button__font-family: Arial, Helvetica, sans-serif;
  --hsf-button__font-size: 11px;
  --hsf-button__color: #11120f;
  --hsf-button__background-color: #c9f23f;
  --hsf-button__border-radius: 0;
  --hsf-button__padding: 17px 24px;
  --hsf-button__box-shadow: none;
  --hsf-field-label__font-family: Arial, Helvetica, sans-serif;
  --hsf-field-label__font-size: 10px;
  --hsf-field-label__color: rgba(17, 18, 15, 0.68);
  --hsf-field-label-requiredindicator__color: #db5029;
  --hsf-field-input__font-family: Arial, Helvetica, sans-serif;
  --hsf-field-input__color: #11120f;
  --hsf-field-input__background-color: #faf7ef;
  --hsf-field-input__placeholder-color: rgba(17, 18, 15, 0.35);
  --hsf-field-input__border-color: rgba(17, 18, 15, 0.28);
  --hsf-field-input__border-width: 1px;
  --hsf-field-input__border-style: solid;
  --hsf-field-input__border-radius: 0;
  --hsf-field-input__padding: 14px;
  --hsf-richtext__color: rgba(17, 18, 15, 0.76);
  --hsf-heading__color: #11120f;
}

.drop-form-status,
.drop-form-error {
  color: rgba(17, 18, 15, 0.62);
  font-size: 12px;
  line-height: 1.5;
}

.drop-form-error strong {
  color: var(--ink);
}

.drop-form-error p {
  margin: 7px 0 0;
}

.drop-after-submit {
  background: var(--ink);
  color: white;
  margin-top: 22px;
  padding: 22px;
}

.drop-after-submit span,
.drop-after-submit a {
  color: var(--lime);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.drop-after-submit p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.35;
  margin: 12px 0 17px;
}

.drop-ticker {
  align-items: center;
  background: var(--burnt);
  display: flex;
  gap: clamp(18px, 2vw, 36px);
  min-height: 65px;
  overflow: hidden;
  padding: 0 26px;
  white-space: nowrap;
}

.drop-ticker span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.drop-ticker i {
  background: var(--ink);
  border-radius: 50%;
  flex: 0 0 auto;
  height: 5px;
  width: 5px;
}

.drop-inbox {
  display: grid;
  gap: clamp(70px, 10vw, 170px);
  grid-template-columns: 0.88fr 1.12fr;
  padding: clamp(110px, 12vw, 190px) clamp(22px, 5.7vw, 106px);
}

.drop-inbox-heading h2,
.drop-free h2,
.drop-promise h2 {
  font-size: clamp(57px, 6.8vw, 108px);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.86;
  margin: 0 0 36px;
}

.drop-inbox-heading h2 em {
  color: var(--burnt);
}

.drop-inbox-heading > p:not(.eyebrow) {
  color: rgba(17, 18, 15, 0.62);
  font-size: 14px;
  line-height: 1.7;
  max-width: 500px;
}

.drop-inbox-list {
  border-top: 1px solid var(--line-dark);
}

.drop-inbox-list article {
  border-bottom: 1px solid var(--line-dark);
  display: grid;
  gap: 22px;
  grid-template-columns: 44px 0.68fr 1.32fr;
  padding: 29px 0;
}

.drop-inbox-list span {
  color: var(--burnt);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.drop-inbox-list h3 {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -0.035em;
  margin: 0;
}

.drop-inbox-list p {
  color: rgba(17, 18, 15, 0.62);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.drop-free {
  background: var(--ink);
  color: white;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 780px;
  overflow: hidden;
}

.drop-free-art {
  align-content: center;
  border-right: 1px solid var(--line-light);
  color: var(--lime);
  display: grid;
  font-size: clamp(95px, 15vw, 245px);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.68;
  overflow: hidden;
  padding: 90px 0;
}

.drop-free-art span {
  margin-left: -0.06em;
  white-space: nowrap;
}

.drop-free-art span:last-child {
  -webkit-text-stroke: 2px var(--lime);
  color: transparent;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  margin-left: -0.25em;
  margin-top: 0.16em;
}

.drop-free-copy {
  align-self: center;
  padding: 100px clamp(35px, 6vw, 110px);
}

.drop-free-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.7;
  max-width: 540px;
}

.drop-promise {
  align-items: center;
  background: var(--lime);
  display: flex;
  flex-direction: column;
  padding: clamp(110px, 13vw, 200px) 22px;
  text-align: center;
}

.drop-promise h2 {
  max-width: 1260px;
}

.drop-promise h2 em {
  color: var(--burnt);
}

.drop-promise > p:not(.eyebrow) {
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.4;
  margin: 0 0 35px;
  max-width: 660px;
}

.drop-footer {
  background: #090a08;
  color: white;
  padding: 70px clamp(22px, 5.7vw, 106px) 32px;
}

.drop-footer-top {
  align-items: end;
  border-bottom: 1px solid var(--line-light);
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
}

.drop-footer-top p {
  color: var(--lime);
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  margin: 0;
}

.drop-footer-links {
  display: flex;
  gap: clamp(25px, 4vw, 65px);
  justify-content: flex-end;
  padding: 55px 0 70px;
}

.drop-footer-links a {
  font-size: 12px;
}

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

.drop-footer-bottom {
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.38);
  display: flex;
  font-size: 9px;
  justify-content: space-between;
  letter-spacing: 0.1em;
  padding-top: 22px;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .drop-hero-copy {
    padding-left: 34px;
    padding-right: 34px;
  }

  .drop-hero-copy h1 {
    font-size: clamp(56px, 7.7vw, 85px);
  }
}

@media (max-width: 820px) {
  .drop-hero {
    grid-template-columns: 1fr;
  }

  .drop-hero-copy {
    padding: 100px 30px 90px;
  }

  .drop-visual {
    min-height: 680px;
  }

  .drop-form-card {
    width: min(100%, 760px);
  }

  .drop-inbox {
    grid-template-columns: 1fr;
  }

  .drop-free {
    grid-template-columns: 1fr;
  }

  .drop-free-art {
    border-bottom: 1px solid var(--line-light);
    border-right: 0;
    min-height: 520px;
  }
}

@media (max-width: 560px) {
  .drop-header {
    height: 70px;
  }

  .drop-logo,
  .drop-footer-logo {
    gap: 8px;
    grid-template-columns: 34px 100px;
    width: 142px;
  }

  .drop-home-link {
    font-size: 8px;
  }

  .drop-hero {
    padding-top: 70px;
  }

  .drop-hero-copy {
    padding: 86px 22px 75px;
  }

  .drop-status {
    margin-bottom: 40px;
  }

  .drop-hero-copy h1 {
    font-size: clamp(54px, 17vw, 78px);
  }

  .drop-visual {
    min-height: 560px;
  }

  .drop-visual-topline,
  .drop-visual-caption {
    left: 42px;
    right: 42px;
  }

  .drop-visual-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .drop-form-card {
    padding: 44px 28px;
    width: 100%;
  }

  .drop-ticker {
    min-height: 58px;
  }

  .drop-inbox {
    padding-left: 22px;
    padding-right: 22px;
  }

  .drop-inbox-heading h2,
  .drop-free h2,
  .drop-promise h2 {
    font-size: 52px;
  }

  .drop-inbox-list article {
    gap: 14px;
    grid-template-columns: 35px 1fr;
  }

  .drop-inbox-list p {
    grid-column: 2;
  }

  .drop-free-copy {
    padding: 90px 22px;
  }

  .drop-footer-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .drop-footer-links {
    flex-direction: column;
  }

  .drop-footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}

/* Taste Off Strip membership landing page */

.taste-landing {
  background: var(--cream);
  overflow: hidden;
}

.taste-header {
  align-items: center;
  color: var(--ink);
  display: flex;
  height: 82px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(22px, 4vw, 70px);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 20;
}

.taste-logo,
.taste-footer-logo {
  align-items: center;
  display: grid;
  gap: 11px;
  grid-template-columns: 42px 124px;
  width: 177px;
}

.taste-logo img,
.taste-footer-logo img {
  height: auto;
  object-fit: contain;
  width: 100%;
}

.taste-home-link,
.taste-jump-link {
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding-bottom: 7px;
  text-transform: uppercase;
}

.taste-home-link:hover,
.taste-jump-link:hover {
  border-color: var(--burnt);
  color: var(--burnt);
}

.taste-hero {
  background: var(--lime);
  display: grid;
  grid-template-columns: minmax(0, 1.17fr) minmax(380px, 0.83fr);
  min-height: 910px;
  padding-top: 82px;
  position: relative;
}

.taste-hero-type {
  bottom: 20px;
  color: rgba(17, 18, 15, 0.06);
  display: grid;
  font-size: clamp(130px, 21vw, 350px);
  font-weight: 800;
  left: -0.05em;
  letter-spacing: -0.095em;
  line-height: 0.62;
  pointer-events: none;
  position: absolute;
}

.taste-hero-type span:last-child {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  margin-left: 0.3em;
}

.taste-hero-copy {
  align-self: center;
  max-width: 950px;
  padding: 110px clamp(34px, 7vw, 120px) 100px;
  position: relative;
  z-index: 2;
}

.taste-live-label {
  align-items: center;
  border: 1px solid rgba(17, 18, 15, 0.28);
  display: inline-flex;
  font-size: 9px;
  font-weight: 800;
  gap: 9px;
  letter-spacing: 0.14em;
  margin-bottom: 56px;
  padding: 9px 12px;
  text-transform: uppercase;
}

.taste-live-label i {
  background: var(--burnt);
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

.taste-hero-copy h1 {
  font-size: clamp(64px, 8.3vw, 138px);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.82;
  margin: 0 0 44px;
}

.taste-hero-copy h1 em,
.taste-concept h2 em,
.taste-process h2 em,
.taste-editorial h2 em,
.taste-standard h2 em,
.taste-final-cta h2 em {
  color: var(--burnt);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

.taste-hero-deck {
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 31px);
  line-height: 1.3;
  margin: 0 0 18px;
  max-width: 660px;
}

.taste-hero-note {
  color: rgba(17, 18, 15, 0.66);
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 38px;
  max-width: 540px;
}

.taste-price-line {
  align-items: flex-end;
  border-bottom: 1px solid rgba(17, 18, 15, 0.3);
  border-top: 1px solid rgba(17, 18, 15, 0.3);
  display: flex;
  gap: clamp(18px, 3vw, 38px);
  margin: 30px 0 24px;
  max-width: 570px;
  padding: 22px 0;
}

.taste-price-line > div {
  display: grid;
  gap: 3px;
}

.taste-price-line strong {
  font-family: var(--serif);
  font-size: clamp(35px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.taste-price-line span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.taste-price-line i {
  align-self: stretch;
  background: rgba(17, 18, 15, 0.28);
  display: block;
  width: 1px;
}

.taste-form-card {
  align-self: center;
  background: var(--ink);
  box-shadow: 0 42px 100px rgba(17, 18, 15, 0.24);
  color: white;
  margin: 110px clamp(28px, 5vw, 90px) 70px 0;
  min-height: 700px;
  padding: clamp(38px, 4.5vw, 70px);
  position: relative;
  z-index: 3;
}

.taste-form-card::before {
  border: 1px solid rgba(255, 255, 255, 0.16);
  content: "";
  inset: 13px;
  pointer-events: none;
  position: absolute;
}

.taste-form-number {
  color: var(--lime);
  font-family: var(--serif);
  font-size: 28px;
  margin-bottom: 50px;
}

.taste-form-card h2 {
  font-family: var(--serif);
  font-size: clamp(46px, 4.8vw, 76px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.95;
  margin: 0 0 22px;
}

.taste-form-intro {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 26px;
  max-width: 480px;
}

.taste-form-embed {
  min-height: 220px;
  position: relative;
  --hsf-global__font-family: Arial, Helvetica, sans-serif;
  --hsf-global__font-size: 14px;
  --hsf-global__color: #ffffff;
  --hsf-global-error__color: #ff8f6e;
  --hsf-background__background-color: transparent;
  --hsf-background__border-width: 0;
  --hsf-background__padding: 0;
  --hsf-row__horizontal-spacing: 12px;
  --hsf-row__vertical-spacing: 16px;
  --hsf-button__font-family: Arial, Helvetica, sans-serif;
  --hsf-button__font-size: 11px;
  --hsf-button__color: #11120f;
  --hsf-button__background-color: #c9f23f;
  --hsf-button__border-radius: 0;
  --hsf-button__padding: 17px 24px;
  --hsf-button__box-shadow: none;
  --hsf-field-label__font-family: Arial, Helvetica, sans-serif;
  --hsf-field-label__font-size: 10px;
  --hsf-field-label__color: rgba(255, 255, 255, 0.72);
  --hsf-field-label-requiredindicator__color: #c9f23f;
  --hsf-field-input__font-family: Arial, Helvetica, sans-serif;
  --hsf-field-input__color: #ffffff;
  --hsf-field-input__background-color: rgba(255, 255, 255, 0.07);
  --hsf-field-input__placeholder-color: rgba(255, 255, 255, 0.35);
  --hsf-field-input__border-color: rgba(255, 255, 255, 0.3);
  --hsf-field-input__border-width: 1px;
  --hsf-field-input__border-style: solid;
  --hsf-field-input__border-radius: 0;
  --hsf-field-input__padding: 14px;
  --hsf-richtext__color: rgba(255, 255, 255, 0.78);
  --hsf-heading__color: #ffffff;
}

.taste-form-status,
.taste-form-error,
.taste-form-embed .hubspot-embed-status,
.taste-form-embed .hubspot-embed-error {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  line-height: 1.5;
}

.taste-form-error strong,
.taste-form-embed .hubspot-embed-error strong {
  color: white;
}

.taste-form-error p,
.taste-form-embed .hubspot-embed-error p {
  margin: 7px 0 0;
}

.taste-form-embed .hubspot-embed-error a {
  color: var(--lime);
}

.taste-form-embed .hs-form-frame {
  min-height: 220px;
  width: 100%;
}

.taste-consent {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  line-height: 1.55;
  margin: 18px 0 0;
  padding-top: 16px;
}

.taste-concept {
  display: grid;
  gap: 70px;
  grid-template-columns: 0.2fr 1.1fr 0.7fr;
  min-height: 830px;
  padding: clamp(110px, 12vw, 190px) clamp(22px, 5.7vw, 106px);
}

.taste-section-index {
  font-family: var(--serif);
  font-size: 28px;
}

.taste-concept-title h2,
.taste-standard h2 {
  font-size: clamp(57px, 7vw, 112px);
  font-weight: 700;
  letter-spacing: -0.078em;
  line-height: 0.86;
  margin: 0;
}

.taste-concept-body {
  align-self: end;
  border-left: 1px solid var(--line-dark);
  padding-left: clamp(25px, 4vw, 62px);
}

.taste-concept-body p {
  color: rgba(17, 18, 15, 0.64);
  font-size: 14px;
  line-height: 1.7;
}

.taste-concept-body .taste-big-copy {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1.3;
  margin-top: 0;
}

.taste-process {
  background: var(--burnt);
  color: var(--ink);
  display: grid;
  gap: clamp(70px, 10vw, 170px);
  grid-template-columns: 0.85fr 1.15fr;
  padding: clamp(110px, 12vw, 190px) clamp(22px, 5.7vw, 106px);
}

.taste-process h2 {
  font-size: clamp(58px, 7vw, 108px);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.87;
  margin: 0;
}

.taste-process h2 em {
  color: var(--lime);
}

.taste-steps {
  display: grid;
}

.taste-steps article {
  border-top: 1px solid rgba(17, 18, 15, 0.3);
  display: grid;
  gap: 24px;
  grid-template-columns: 55px 1fr;
  padding: 30px 0 42px;
}

.taste-steps article:last-child {
  border-bottom: 1px solid rgba(17, 18, 15, 0.3);
}

.taste-steps span {
  font-family: var(--serif);
  font-size: 19px;
}

.taste-steps h3 {
  font-family: var(--serif);
  font-size: clamp(26px, 2.4vw, 38px);
  font-weight: 400;
  letter-spacing: -0.04em;
  margin: 0;
}

.taste-steps p {
  color: rgba(17, 18, 15, 0.7);
  font-size: 13px;
  grid-column: 2;
  line-height: 1.65;
  margin: -10px 0 0;
  max-width: 570px;
}

.taste-editorial {
  background: var(--ink);
  color: white;
  min-height: 870px;
  overflow: hidden;
  padding: clamp(120px, 13vw, 205px) clamp(22px, 7vw, 130px);
  position: relative;
}

.taste-editorial-word {
  bottom: -0.21em;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(190px, 35vw, 560px);
  font-weight: 800;
  left: -0.04em;
  letter-spacing: -0.11em;
  line-height: 0.8;
  position: absolute;
}

.taste-editorial-copy {
  position: relative;
  z-index: 2;
}

.taste-editorial h2 {
  font-family: var(--serif);
  font-size: clamp(52px, 7.3vw, 116px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.9;
  margin: 0;
  max-width: 1260px;
}

.taste-editorial h2 em {
  color: var(--lime);
}

.taste-editorial-lines {
  border-top: 1px solid var(--line-light);
  display: grid;
  gap: 38px;
  grid-template-columns: 1fr 1fr 0.75fr;
  margin: 80px 0 0 28%;
  padding-top: 28px;
}

.taste-editorial-lines p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.taste-editorial-lines strong {
  color: var(--lime);
  font-family: var(--serif);
  font-size: 27px;
  font-style: italic;
  font-weight: 400;
}

.taste-standard {
  background: #d9d0bd;
  display: grid;
  gap: clamp(70px, 10vw, 170px);
  grid-template-columns: 1.15fr 0.85fr;
  padding: clamp(110px, 12vw, 190px) clamp(22px, 5.7vw, 106px);
}

.taste-standard-body {
  align-self: end;
  border-top: 1px solid var(--line-dark);
  padding-top: 28px;
}

.taste-standard-body p {
  color: rgba(17, 18, 15, 0.66);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 26px;
}

.taste-standard-body strong {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 35px;
}

.taste-faq {
  display: grid;
  gap: clamp(70px, 10vw, 170px);
  grid-template-columns: 0.75fr 1.25fr;
  padding: clamp(110px, 12vw, 190px) clamp(22px, 5.7vw, 106px);
}

.taste-faq-heading h2 {
  font-family: var(--serif);
  font-size: clamp(58px, 7vw, 105px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.9;
  margin: 0 0 30px;
}

.taste-faq-heading > p:not(.eyebrow) {
  color: rgba(17, 18, 15, 0.6);
  font-size: 13px;
  line-height: 1.65;
  max-width: 390px;
}

.taste-faq-list {
  border-top: 1px solid var(--line-dark);
}

.taste-faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.taste-faq-list summary {
  align-items: center;
  cursor: pointer;
  display: grid;
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 31px);
  gap: 25px;
  grid-template-columns: 32px 1fr 22px;
  letter-spacing: -0.03em;
  list-style: none;
  padding: 28px 0;
}

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

.taste-faq-list summary span {
  color: rgba(17, 18, 15, 0.45);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.taste-faq-list summary i {
  height: 16px;
  position: relative;
  width: 16px;
}

.taste-faq-list summary i::before,
.taste-faq-list summary i::after {
  background: var(--ink);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: 8px;
  transition: transform 180ms ease;
  width: 16px;
}

.taste-faq-list summary i::after {
  transform: rotate(90deg);
}

.taste-faq-list details[open] summary i::after {
  transform: rotate(0);
}

.taste-faq-list details > p {
  color: rgba(17, 18, 15, 0.64);
  font-size: 14px;
  line-height: 1.7;
  margin: -5px 50px 32px 57px;
  max-width: 670px;
}

.taste-final-cta {
  align-items: center;
  background: var(--lime);
  display: flex;
  flex-direction: column;
  padding: clamp(100px, 12vw, 180px) 22px;
  text-align: center;
}

.taste-final-cta h2 {
  font-size: clamp(62px, 8.5vw, 136px);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.83;
  margin: 0 0 45px;
}

.taste-final-cta > p:last-child {
  color: rgba(17, 18, 15, 0.6);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 18px 0 0;
  text-transform: uppercase;
}

.taste-footer {
  background: #090a08;
  color: white;
  display: grid;
  gap: 55px;
  grid-template-columns: 1fr 1fr;
  padding: 70px clamp(22px, 5.7vw, 106px) 32px;
}

.taste-footer-logo img {
  filter: invert(1);
}

.taste-footer-links {
  align-items: start;
  display: flex;
  gap: clamp(20px, 3vw, 48px);
  justify-content: flex-end;
}

.taste-footer-links a {
  font-size: 11px;
  font-weight: 700;
}

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

.taste-footer-bottom {
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  font-size: 9px;
  grid-column: 1 / -1;
  justify-content: space-between;
  letter-spacing: 0.1em;
  padding-top: 22px;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .taste-hero {
    grid-template-columns: 1fr;
  }

  .taste-form-card {
    margin: 0 clamp(28px, 8vw, 100px) 90px;
  }

  .taste-concept {
    grid-template-columns: 0.16fr 1.15fr 0.69fr;
  }

  .taste-editorial-lines {
    margin-left: 14%;
  }
}

@media (max-width: 820px) {
  .taste-concept,
  .taste-process,
  .taste-standard,
  .taste-faq {
    grid-template-columns: 1fr;
  }

  .taste-concept {
    gap: 45px;
  }

  .taste-concept-body {
    border-left: 0;
    border-top: 1px solid var(--line-dark);
    padding-left: 0;
    padding-top: 28px;
  }

  .taste-editorial-lines {
    grid-template-columns: 1fr;
    margin-left: 0;
  }

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

  .taste-footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .taste-header {
    height: 70px;
  }

  .taste-logo,
  .taste-footer-logo {
    gap: 8px;
    grid-template-columns: 34px 100px;
    width: 142px;
  }

  .taste-home-link {
    font-size: 8px;
  }

  .taste-hero {
    padding-top: 70px;
  }

  .taste-hero-copy {
    padding: 90px 22px 80px;
  }

  .taste-live-label {
    margin-bottom: 40px;
  }

  .taste-hero-copy h1 {
    font-size: clamp(57px, 18vw, 84px);
  }

  .taste-form-card {
    margin: 0 14px 70px;
    min-height: 660px;
    padding: 44px 28px;
  }

  .taste-price-line {
    gap: 16px;
  }

  .taste-concept,
  .taste-process,
  .taste-editorial,
  .taste-standard,
  .taste-faq {
    padding-left: 22px;
    padding-right: 22px;
  }

  .taste-concept-title h2,
  .taste-process h2,
  .taste-standard h2 {
    font-size: 52px;
  }

  .taste-steps article {
    gap: 15px;
    grid-template-columns: 42px 1fr;
  }

  .taste-editorial h2 {
    font-size: 49px;
  }

  .taste-faq-list summary {
    gap: 14px;
    grid-template-columns: 25px 1fr 18px;
  }

  .taste-faq-list details > p {
    margin-left: 39px;
    margin-right: 0;
  }

  .taste-final-cta h2 {
    font-size: 58px;
  }

  .taste-footer-links {
    flex-direction: column;
  }

  .taste-footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* B2B start and booking flow */

.sr-only {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.start-page,
.book-page {
  background: var(--cream-soft);
  min-height: 100svh;
}

.start-header {
  align-items: center;
  background: var(--cream-soft);
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  height: 82px;
  justify-content: space-between;
  padding: 0 clamp(22px, 4vw, 70px);
}

.start-logo {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: 37px 112px;
  width: 159px;
}

.start-logo img {
  height: auto;
  object-fit: contain;
  width: 100%;
}

.start-back {
  border-bottom: 1px solid var(--ink);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  padding-bottom: 6px;
  text-transform: uppercase;
}

.start-shell {
  display: grid;
  grid-template-columns: minmax(390px, 0.82fr) minmax(620px, 1.18fr);
  min-height: calc(100svh - 82px);
}

.start-intro {
  background:
    linear-gradient(rgba(17, 18, 15, 0.9), rgba(17, 18, 15, 0.95)),
    url("/public/media/og-offstrip.jpg") center / cover;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100svh - 82px);
  padding: clamp(70px, 8vw, 125px) clamp(36px, 5vw, 90px) 34px;
}

.start-intro-inner {
  max-width: 690px;
}

.start-intro h1,
.book-copy h1 {
  font-size: clamp(56px, 6vw, 101px);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.9;
  margin: 0 0 36px;
}

.start-intro h1 em,
.book-copy h1 em {
  color: var(--lime);
}

.start-deck {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.45;
  margin: 0;
  max-width: 570px;
}

.start-steps {
  border-top: 1px solid var(--line-light);
  display: grid;
  gap: 0;
  margin-top: clamp(60px, 8vw, 120px);
}

.start-steps > div {
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.45);
  display: grid;
  gap: 20px;
  grid-template-columns: 32px 1fr;
  padding: 18px 0;
}

.start-steps > div.active {
  color: white;
}

.start-steps > div > span {
  color: var(--lime);
  font-family: var(--serif);
  font-size: 20px;
}

.start-steps p {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
}

.start-steps strong {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.start-steps small {
  font-size: 11px;
}

.start-intro-foot {
  color: rgba(255, 255, 255, 0.38);
  display: flex;
  font-size: 8px;
  justify-content: space-between;
  letter-spacing: 0.12em;
  margin-top: 60px;
  text-transform: uppercase;
}

.start-form-wrap {
  align-self: start;
  padding: clamp(70px, 8vw, 125px) clamp(36px, 7vw, 125px);
}

.start-form {
  margin: 0 auto;
  max-width: 850px;
}

.hubspot-form-shell {
  margin: 0 auto;
  max-width: 850px;
}

.hubspot-form-heading {
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 34px;
  padding-bottom: 28px;
}

.hubspot-embed {
  min-height: 560px;
  position: relative;
}

.hubspot-form-status {
  align-items: center;
  color: rgba(17, 18, 15, 0.52);
  display: flex;
  font-size: 10px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: uppercase;
}

.hubspot-form-status::before {
  animation: hubspot-pulse 900ms ease-in-out infinite alternate;
  background: var(--lime);
  border-radius: 50%;
  content: "";
  height: 9px;
  width: 9px;
}

.hubspot-form-error {
  border: 1px solid var(--burnt);
  margin-bottom: 24px;
  padding: 20px;
}

.hubspot-form-error strong {
  font-family: var(--serif);
  font-size: 20px;
}

.hubspot-form-error p {
  color: rgba(17, 18, 15, 0.62);
  font-size: 12px;
  margin: 7px 0 0;
}

.hs-form-html,
.hs-form-frame {
  width: 100%;
}

.hubspot-embed-status {
  color: rgba(17, 18, 15, 0.58);
  font-size: 12px;
  line-height: 1.5;
}

.hubspot-embed-error {
  border: 1px solid var(--burnt);
  margin-bottom: 22px;
  padding: 18px;
}

.hubspot-embed-error strong {
  font-family: var(--serif);
  font-size: 20px;
}

.hubspot-embed-error p {
  color: inherit;
  font-size: 12px;
  margin: 7px 0 0;
}

.hubspot-privacy-note {
  border-top: 1px solid var(--line-dark);
  color: rgba(17, 18, 15, 0.48);
  font-size: 9px;
  line-height: 1.55;
  margin: 30px 0 0;
  padding-top: 18px;
}

@keyframes hubspot-pulse {
  from { opacity: 0.35; transform: scale(0.82); }
  to { opacity: 1; transform: scale(1); }
}

.form-heading {
  align-items: start;
  display: grid;
  gap: 20px;
  grid-template-columns: 42px 1fr;
  margin-bottom: 28px;
}

.form-heading > span {
  color: var(--burnt);
  font-family: var(--serif);
  font-size: 24px;
}

.form-heading .eyebrow {
  margin-bottom: 8px;
}

.form-heading h2 {
  font-family: var(--serif);
  font-size: clamp(31px, 3vw, 45px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
  margin: 0;
}

.form-heading-details {
  border-top: 1px solid var(--line-dark);
  margin-top: 60px;
  padding-top: 40px;
}

.interest-grid {
  border: 0;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.interest-card {
  align-items: start;
  background: transparent;
  border: 1px solid var(--line-dark);
  cursor: pointer;
  display: grid;
  gap: 16px;
  grid-template-columns: 20px 1fr;
  padding: 21px;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.interest-card:hover {
  border-color: var(--ink);
  transform: translateX(3px);
}

.interest-card.selected {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}

.interest-card input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}

.interest-card:has(input:focus-visible) {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.interest-control {
  border: 1px solid currentColor;
  border-radius: 50%;
  height: 17px;
  margin-top: 2px;
  position: relative;
  width: 17px;
}

.interest-card.selected .interest-control::after {
  background: var(--lime);
  border-radius: 50%;
  content: "";
  inset: 3px;
  position: absolute;
}

.interest-copy {
  display: grid;
  gap: 7px;
}

.interest-copy > span:last-child {
  color: rgba(17, 18, 15, 0.58);
  font-size: 11px;
  line-height: 1.45;
}

.interest-card.selected .interest-copy > span:last-child {
  color: rgba(255, 255, 255, 0.58);
}

.interest-topline {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.interest-topline strong {
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.interest-topline small {
  background: var(--lime);
  color: var(--ink);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.11em;
  padding: 5px 7px;
  text-transform: uppercase;
}

.interest-copy b {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.field-grid {
  display: grid;
  gap: 22px 16px;
  grid-template-columns: 1fr 1fr;
}

.field {
  display: grid;
  gap: 9px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field > span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field > span small {
  color: rgba(17, 18, 15, 0.45);
  font-size: 8px;
  margin-left: 5px;
}

.field input,
.field textarea {
  background: white;
  border: 1px solid rgba(17, 18, 15, 0.22);
  border-radius: 0;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  line-height: 1.4;
  outline: none;
  padding: 14px 15px;
  resize: vertical;
  width: 100%;
}

.field input {
  min-height: 50px;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 2px var(--lime);
}

.form-finish {
  align-items: center;
  border-top: 1px solid var(--line-dark);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto;
  margin-top: 36px;
  padding-top: 28px;
}

.form-finish p {
  font-family: var(--serif);
  font-size: 16px;
  margin: 0 0 5px;
}

.form-finish small {
  color: rgba(17, 18, 15, 0.52);
  font-size: 10px;
}

.start-submit {
  border: 0;
  cursor: pointer;
  min-width: 220px;
}

.preview-form-note {
  color: rgba(17, 18, 15, 0.48);
  font-size: 9px;
  line-height: 1.55;
  margin: 18px 0 0;
  text-align: right;
}

.book-page {
  background: var(--ink);
  color: white;
}

.book-header {
  background: var(--cream-soft);
  color: var(--ink);
}

.book-shell {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(620px, 1.22fr);
  min-height: calc(100svh - 82px);
}

.book-copy {
  align-self: start;
  padding: clamp(100px, 12vh, 160px) clamp(35px, 6vw, 100px);
  position: sticky;
  top: 82px;
}

.book-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.65;
  max-width: 570px;
}

.book-details {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(38px, 6vw, 72px);
  padding-top: 22px;
}

.book-details div {
  display: grid;
  gap: 6px;
}

.book-details span,
.scheduler-panel-head > span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.book-details span {
  color: rgba(255, 255, 255, 0.42);
}

.book-details strong {
  font-size: 11px;
  font-weight: 700;
}

.scheduler-panel {
  background: var(--cream-soft);
  color: var(--ink);
  margin: clamp(28px, 4vw, 64px);
  min-height: 760px;
  padding: clamp(25px, 4vw, 52px);
}

.scheduler-panel-head {
  align-items: center;
  border-bottom: 1px solid rgba(17, 18, 15, 0.14);
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
}

.scheduler-panel-head p {
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

.meeting-embed {
  min-height: 650px;
  position: relative;
}

.meetings-iframe-container,
.meetings-iframe-container iframe {
  width: 100% !important;
}

.meeting-status,
.meeting-error {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  min-height: 620px;
  position: absolute;
  text-align: center;
}

.meeting-status {
  color: rgba(17, 18, 15, 0.55);
  flex-direction: column;
  font-size: 11px;
  font-weight: 700;
  gap: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.meeting-status span {
  animation: meeting-pulse 1.15s ease-in-out infinite alternate;
  background: var(--lime);
  border-radius: 50%;
  height: 9px;
  width: 9px;
}

.meeting-error {
  background: var(--cream-soft);
  flex-direction: column;
  padding: 35px;
  z-index: 2;
}

.meeting-error strong {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
}

.meeting-error p,
.scheduler-note {
  color: rgba(17, 18, 15, 0.56);
  font-size: 11px;
  line-height: 1.6;
}

.meeting-error a {
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-top: 12px;
  padding-bottom: 5px;
  text-transform: uppercase;
}

.scheduler-note {
  border-top: 1px solid rgba(17, 18, 15, 0.14);
  margin: 12px 0 0;
  padding-top: 18px;
}

@keyframes meeting-pulse {
  to {
    opacity: 0.25;
    transform: scale(0.72);
  }
}

@media (max-width: 1040px) {
  .start-shell,
  .book-shell {
    grid-template-columns: 1fr;
  }

  .start-intro {
    min-height: 720px;
  }

  .book-copy {
    padding-bottom: 40px;
    position: static;
  }

  .scheduler-panel {
    margin-top: 20px;
  }
}

@media (max-width: 620px) {
  .start-header {
    height: 70px;
  }

  .start-logo {
    gap: 8px;
    grid-template-columns: 31px 92px;
    width: 131px;
  }

  .start-back {
    font-size: 8px;
  }

  .start-shell,
  .book-shell {
    min-height: calc(100svh - 70px);
  }

  .start-intro {
    min-height: 650px;
    padding: 75px 22px 28px;
  }

  .start-intro h1,
  .book-copy h1 {
    font-size: 54px;
  }

  .start-intro-foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .start-form-wrap {
    padding: 75px 22px;
  }

  .hubspot-embed {
    min-height: 640px;
  }

  .field-grid,
  .form-finish {
    grid-template-columns: 1fr;
  }

  .field-wide {
    grid-column: auto;
  }

  .start-submit {
    width: 100%;
  }

  .preview-form-note {
    text-align: left;
  }

  .book-copy {
    padding: 90px 22px 40px;
  }

  .book-details {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .scheduler-panel {
    margin: 22px;
    min-height: 700px;
    padding: 24px 12px;
  }

  .scheduler-panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-inline: 10px;
  }

  .meeting-embed {
    min-height: 620px;
  }

  .scheduler-note {
    margin-inline: 10px;
  }
}
