:root {
  --navy: #061a3d;
  --navy-soft: #10274f;
  --ink: #152849;
  --gold: #bd8d3a;
  --gold-soft: #e6cf9d;
  --ivory: #fffaf1;
  --cream: #f6efe2;
  --paper: #fffdf8;
  --line: rgba(6, 26, 61, 0.14);
  --shadow: 0 24px 70px rgba(34, 25, 12, 0.14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: #f4f6fa;
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

body.drawer-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button {
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.site-shell {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  overflow: clip;
  background: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(189, 141, 58, 0.18);
  backdrop-filter: blur(18px);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 84px;
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
  gap: 28px;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-group-right {
  justify-content: flex-end;
}

.nav a {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
}

.brand {
  font-family: var(--serif);
  font-size: clamp(31px, 3.2vw, 44px);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.brand span,
.footer-bottom span {
  color: var(--gold);
}

.pill-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 32px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff !important;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  box-shadow: 0 15px 34px rgba(6, 26, 61, 0.18);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.button:hover,
.pill-link:hover {
  background: var(--navy-soft);
  box-shadow: 0 20px 42px rgba(6, 26, 61, 0.24);
  transform: translateY(-2px);
}

.button-square {
  min-width: 190px;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 15px;
}

.menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(189, 141, 58, 0.45);
  border-radius: 999px;
}

.menu-toggle span {
  width: 18px;
  height: 1px;
  margin: -5px 0;
  background: var(--navy);
  transition: transform 220ms ease;
}

.menu-toggle:hover span:first-child {
  transform: translateY(-2px);
}

.menu-toggle:hover span:last-child {
  transform: translateY(2px);
}

.drawer {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 80;
  width: min(390px, 90vw);
  transform: translateX(-104%);
  transition: transform 320ms ease;
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer-panel {
  height: 100%;
  padding: 26px;
  overflow-y: auto;
  background: var(--paper);
  border-right: 1px solid rgba(189, 141, 58, 0.34);
  box-shadow: 30px 0 70px rgba(6, 26, 61, 0.18);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(189, 141, 58, 0.28);
}

.drawer-head img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 50%;
}

.drawer-close {
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(6, 26, 61, 0.14);
  border-radius: 50%;
}

.drawer-close::before,
.drawer-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  background: var(--navy);
  content: "";
}

.drawer-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.drawer-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.drawer-section {
  display: grid;
  gap: 12px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(189, 141, 58, 0.2);
}

.drawer-section p,
.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.drawer-section a {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
  color: var(--navy);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  background: rgba(6, 26, 61, 0);
  transition: background 320ms ease;
}

.drawer-backdrop.is-visible {
  pointer-events: auto;
  background: rgba(6, 26, 61, 0.34);
}

.promo-bar {
  padding: 13px 20px;
  background: linear-gradient(90deg, #f7eadc, #fff8ee, #f7eadc);
  color: #2b2230;
  font-family: var(--serif);
  font-size: 20px;
  text-align: center;
}

.promo-bar span {
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: clamp(560px, 56vw, 690px);
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at center, rgba(255, 253, 248, 0.82) 0 23%, rgba(255, 253, 248, 0.36) 34%, rgba(255, 253, 248, 0.02) 58%);
  content: "";
}

.hero-copy {
  width: min(520px, 86vw);
  margin-top: 36px;
  text-align: center;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(66px, 8vw, 104px);
  line-height: 0.9;
}

.hero p {
  max-width: 430px;
  margin: 20px auto 30px;
  color: #1f2740;
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.18;
}

.section-pad {
  padding: clamp(64px, 7vw, 96px) clamp(22px, 4vw, 54px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 38px);
  width: min(100%, 1010px);
  margin: 0 auto;
}

.product-card {
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
}

.product-image {
  width: 100%;
  aspect-ratio: 0.72;
  overflow: hidden;
  background: var(--cream);
}

.product-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.035);
}

.product-card h3 {
  margin-top: 22px;
  font-size: clamp(30px, 3vw, 39px);
  line-height: 0.95;
  text-transform: uppercase;
}

.product-card p {
  min-height: 54px;
  margin: 14px 0 24px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.18;
}

.audience {
  background: linear-gradient(180deg, #fffaf2, #f6efe2);
}

.section-heading {
  max-width: 960px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-heading h2 {
  margin-top: 12px;
  font-size: clamp(48px, 6vw, 68px);
  line-height: 1;
}

.segmented-control {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 24px;
  padding: 4px;
  border: 1px solid rgba(189, 141, 58, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
}

.segment {
  min-width: 142px;
  min-height: 42px;
  border-radius: 999px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 18px;
  transition: background 220ms ease, color 220ms ease;
}

.segment.is-active {
  background: var(--navy);
  color: #fff;
}

.audience-panel {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.audience-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.35fr;
  align-items: stretch;
  gap: 18px;
}

.audience-layout > img {
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

.framed-copy {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 500px;
  padding: clamp(34px, 5vw, 58px);
  background: var(--paper);
  border: 1px solid rgba(189, 141, 58, 0.32);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.framed-copy::before {
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgba(189, 141, 58, 0.42);
  border-radius: 5px;
  content: "";
}

.framed-copy h3 {
  margin: 18px 0 26px;
  font-size: clamp(36px, 4vw, 46px);
  line-height: 0.95;
}

.framed-copy p:not(.eyebrow) {
  margin: 0 0 28px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.55;
}

.text-link {
  justify-self: start;
  border-bottom: 1px solid var(--gold-soft);
  color: var(--navy);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
}

.text-link::after {
  content: " →";
}

.quote-band {
  background: #fff;
}

.quote-card {
  display: grid;
  place-items: center;
  min-height: clamp(360px, 45vw, 610px);
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 54px 28px;
  background: radial-gradient(circle at 45% 35%, rgba(16, 39, 79, 0.9), var(--navy) 58%);
  color: #fff;
  text-align: center;
}

.script {
  margin: 0 0 20px;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
}

.quote-card h2 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 1.05;
}

.quote-card a {
  display: inline-block;
  margin-top: 30px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.quote-card a::after {
  content: " →";
}

.tracker {
  background: linear-gradient(180deg, #fff, #fbfcff);
}

.tracker-inner {
  width: min(100%, 760px);
  margin: 0 auto;
  text-align: center;
}

.tracker h2 {
  margin-top: 12px;
  font-size: clamp(38px, 5vw, 54px);
  line-height: 1;
}

.tracker-intro {
  max-width: 620px;
  margin: 20px auto 34px;
  color: #2f436b;
  font-size: 15px;
  line-height: 1.45;
}

.tracker-list {
  display: grid;
  border-top: 1px solid rgba(6, 26, 61, 0.34);
  text-align: left;
}

.tracker-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px 8px;
  border-bottom: 1px solid rgba(6, 26, 61, 0.34);
  color: #233960;
}

.tracker-row strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 23px;
  font-style: italic;
  line-height: 1.1;
}

.tracker-row span {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.tracker-row b {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 28px;
  transition: transform 220ms ease;
}

.tracker-row:hover b {
  transform: translateX(6px);
}

.email-section {
  padding-top: clamp(50px, 6vw, 72px);
}

.email-hero {
  position: relative;
  width: min(100%, 1310px);
  min-height: 560px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.email-hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.email-card {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100% - 36px));
  padding: clamp(30px, 5vw, 46px);
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid var(--gold);
  outline: 6px solid rgba(255, 253, 248, 0.86);
  text-align: center;
  box-shadow: var(--shadow);
}

.laurel {
  margin: 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 0.8;
}

.email-card h2 {
  margin-top: 10px;
  font-size: clamp(43px, 5vw, 58px);
  line-height: 0.95;
  text-transform: uppercase;
}

.email-card p:not(.laurel) {
  margin: 16px 0 28px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.38;
}

.site-footer {
  padding: 90px clamp(24px, 5vw, 70px) 70px;
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(5, 1fr);
  gap: clamp(22px, 4vw, 46px);
  width: min(100%, 1160px);
  margin: 0 auto;
}

.footer-logo img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
}

.footer-grid h2 {
  margin-bottom: 24px;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  margin: 0 0 12px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.15;
}

.footer-bottom {
  margin-top: 92px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1;
}

.footer-bottom p::after {
  display: block;
  width: 8px;
  height: 2px;
  margin: 32px auto 22px;
  background: var(--gold);
  content: "";
}

.footer-bottom small {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.about-page,
.about-main {
  background: #fff;
}

.about-founder {
  padding: clamp(62px, 7vw, 92px) clamp(22px, 5vw, 70px) clamp(58px, 6vw, 78px);
  background: #fff;
}

.about-kicker {
  width: min(100%, 980px);
  margin: 0 auto clamp(42px, 5vw, 62px);
  text-align: center;
}

.about-kicker h1 {
  font-size: clamp(48px, 5.8vw, 74px);
  line-height: 0.98;
}

.about-kicker p {
  margin: 18px 0 0;
  color: var(--navy);
  font-size: clamp(17px, 2vw, 23px);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
  width: min(100%, 980px);
  margin: 0 auto;
}

.founder-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(33px, 3.4vw, 44px);
  line-height: 1.05;
}

.founder-copy p {
  margin: 0 0 19px;
  color: #00294a;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.founder-copy .founder-note {
  margin-top: 36px;
  font-weight: 800;
}

.founder-image {
  overflow: hidden;
  border-radius: 10px;
}

.founder-image img {
  aspect-ratio: 0.78;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.vision-section {
  padding: clamp(86px, 12vw, 178px) clamp(22px, 5vw, 82px) clamp(96px, 13vw, 170px);
  background: #fff;
}

.vision-section h2 {
  width: min(100%, 1220px);
  margin: 0 auto clamp(54px, 7vw, 88px);
  font-size: clamp(64px, 8vw, 92px);
  line-height: 0.9;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 1220px);
  margin: 0 auto;
}

.vision-grid article {
  min-height: 220px;
  padding: 28px clamp(24px, 3vw, 40px);
  border-left: 1px solid rgba(189, 141, 58, 0.48);
}

.vision-grid article:first-child {
  border-left: 0;
  padding-left: 0;
}

.vision-grid p {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(24px, 2.1vw, 29px);
  font-weight: 500;
  line-height: 1.45;
}

.contact-page,
.contact-main {
  background: #fff;
}

.contact-form-section {
  padding: clamp(62px, 8vw, 104px) clamp(18px, 5vw, 70px) clamp(70px, 9vw, 116px);
  background: #fff;
}

.contact-heading {
  width: min(100%, 760px);
  margin: 0 auto clamp(34px, 5vw, 54px);
  text-align: center;
}

.contact-heading h1 {
  margin-top: 12px;
  font-size: clamp(58px, 7vw, 86px);
  line-height: 0.94;
}

.contact-heading p:not(.eyebrow) {
  margin: 18px auto 0;
  color: var(--navy);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 600;
  line-height: 1.45;
}

.form-frame {
  width: min(100%, 880px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(189, 141, 58, 0.34);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.form-frame iframe {
  display: block;
  width: 100%;
  border: 0;
  background: #fff;
}

.policy-page,
.policy-main {
  background: #fff;
}

.policy-main {
  padding: clamp(58px, 8vw, 108px) clamp(20px, 5vw, 76px) clamp(72px, 9vw, 124px);
}

.policy-content {
  width: min(100%, 980px);
  margin: 0 auto;
  color: var(--navy);
}

.policy-header {
  margin-bottom: clamp(44px, 6vw, 72px);
}

.policy-header h1 {
  margin-bottom: 14px;
  font-size: clamp(54px, 7vw, 82px);
  line-height: 0.95;
}

.policy-header p {
  margin: 4px 0;
  color: rgba(6, 26, 61, 0.72);
  font-size: 18px;
  font-weight: 700;
}

.policy-content h2 {
  position: relative;
  margin: clamp(40px, 5vw, 64px) 0 18px;
  padding-left: 26px;
  font-family: var(--sans);
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.1;
}

.policy-content h2::before {
  position: absolute;
  top: 0.46em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.policy-content h3 {
  margin: 28px 0 8px;
  font-family: var(--sans);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.25;
}

.policy-content p,
.policy-content li {
  color: rgba(6, 26, 61, 0.76);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.72;
}

.policy-content p {
  margin: 0 0 18px;
}

.policy-content ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 28px;
}

.policy-content li::marker {
  color: var(--gold);
}

.tracker-product-page {
  background: #fff;
}

.digital-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  padding: clamp(54px, 7vw, 96px) clamp(22px, 5vw, 76px);
  background: linear-gradient(135deg, var(--navy), #10274f 62%, #15315d);
  color: #fff;
}

.digital-copy {
  max-width: 610px;
}

.digital-copy h1 {
  margin-top: 18px;
  color: #fff;
  font-size: clamp(62px, 8vw, 104px);
  line-height: 0.88;
}

.digital-subtitle {
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.84);
  font-family: var(--serif);
  font-size: clamp(23px, 2.5vw, 32px);
  line-height: 1.15;
}

.digital-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.digital-tags span {
  padding: 8px 15px;
  border: 1px solid rgba(230, 207, 157, 0.55);
  border-radius: 999px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.checkout-panel {
  display: grid;
  gap: 18px;
  width: min(100%, 520px);
  margin-top: 38px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(230, 207, 157, 0.42);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.08);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
}

.checkout-label {
  margin: 0 0 6px;
  color: #fff;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.05;
}

.checkout-note,
.license-note {
  margin: 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.license-note {
  color: var(--gold-soft);
}

.tracker-checkout-button {
  width: 100%;
  background: #fff;
  color: var(--navy) !important;
  box-shadow: none;
}

.tracker-checkout-button:hover {
  background: var(--gold-soft);
  color: var(--navy) !important;
}

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

.digital-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(230, 207, 157, 0.36);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.digital-gallery .gallery-main {
  grid-row: span 2;
}

.digital-gallery img {
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.download-details {
  background: #fff;
}

.download-intro {
  width: min(100%, 820px);
  margin: 0 auto clamp(36px, 5vw, 58px);
  text-align: center;
}

.download-intro h2,
.tracker-promise h2 {
  margin-top: 12px;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.95;
}

.download-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 1080px);
  margin: 0 auto;
  background: rgba(189, 141, 58, 0.28);
  border: 1px solid rgba(189, 141, 58, 0.28);
}

.download-steps article {
  padding: clamp(28px, 4vw, 42px);
  background: #fff;
}

.download-steps span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.download-steps h3 {
  margin-top: 14px;
  font-size: clamp(32px, 3.2vw, 42px);
  line-height: 0.95;
}

.download-steps p {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.tracker-promise {
  padding: clamp(70px, 9vw, 122px) clamp(22px, 5vw, 76px);
  background: var(--navy);
  color: #fff;
  text-align: center;
}

.tracker-promise > div {
  width: min(100%, 820px);
  margin: 0 auto;
}

.tracker-promise h2 {
  color: #fff;
}

.tracker-promise p:not(.eyebrow) {
  margin: 22px auto 30px;
  color: rgba(255, 253, 248, 0.8);
  font-family: var(--serif);
  font-size: clamp(21px, 2.4vw, 29px);
  line-height: 1.25;
}

.tracker-promise .text-link {
  color: #fff;
}

.product-reviews {
  background: #fff;
}

.reviews-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.reviews-inner h2 {
  margin-bottom: 38px;
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1;
}

.review-stack {
  display: grid;
  gap: 20px;
  margin-bottom: clamp(34px, 5vw, 54px);
}

.review-card-large,
.review-form {
  border: 1px solid rgba(6, 26, 61, 0.12);
  border-radius: 8px;
  background: #fffdf8;
}

.review-card-large {
  padding: clamp(26px, 4vw, 40px);
}

.review-stars-static {
  color: var(--gold);
  font-size: 24px;
  letter-spacing: 0.05em;
}

.review-card-large p {
  margin: 18px 0 14px;
  color: rgba(6, 26, 61, 0.78);
  font-size: clamp(21px, 2.4vw, 29px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.45;
}

.review-card-large span {
  color: rgba(6, 26, 61, 0.54);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.review-form {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 4vw, 42px);
}

.review-form h3 {
  font-family: var(--sans);
  font-size: clamp(25px, 3vw, 32px);
  font-weight: 800;
}

.review-rating {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.review-rating legend,
.review-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.review-star {
  display: grid;
  place-items: center;
  width: 64px;
  height: 58px;
  border: 1px solid rgba(6, 26, 61, 0.08);
  border-radius: 8px;
  color: rgba(189, 141, 58, 0.22);
  background: #fff;
  font-size: 30px;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.review-star.is-active,
.review-star:hover {
  border-color: rgba(189, 141, 58, 0.42);
  color: var(--gold);
  transform: translateY(-1px);
}

.review-form input[type="text"],
.review-form textarea {
  width: 100%;
  border: 1px solid rgba(6, 26, 61, 0.12);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font: 700 18px/1.4 var(--sans);
  outline: none;
}

.review-form input[type="text"] {
  min-height: 58px;
  padding: 0 20px;
}

.review-form textarea {
  min-height: 150px;
  padding: 18px 20px;
  resize: vertical;
}

.review-form input::placeholder,
.review-form textarea::placeholder {
  color: rgba(6, 26, 61, 0.42);
}

.review-submit {
  justify-self: start;
}

.review-success {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}

.thank-you-page {
  min-height: 100vh;
  background: var(--cream);
  font-family: var(--sans);
}

.thank-you-hero {
  padding: clamp(58px, 8vw, 92px) 24px clamp(46px, 7vw, 70px);
  background: radial-gradient(circle at top, #18305d, var(--navy) 68%);
  color: #fff;
  text-align: center;
}

.thank-you-eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.thank-you-check {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 26px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 28px;
}

.thank-you-hero h1 {
  color: #fff;
  font-size: clamp(42px, 6vw, 64px);
  line-height: 1.02;
}

.thank-you-hero p:not(.thank-you-eyebrow) {
  width: min(100%, 410px);
  margin: 20px auto 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.8;
}

.thank-you-divider {
  width: 42px;
  height: 1px;
  margin: 28px auto 0;
  background: var(--gold);
}

.thank-you-body {
  width: min(100% - 32px, 520px);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 54px) 0 52px;
}

.inbox-card,
.steps-card {
  margin-bottom: 24px;
  border-radius: 10px;
}

.inbox-card {
  padding: 24px;
  border: 1px solid rgba(6, 26, 61, 0.1);
  background: #fff;
}

.inbox-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(6, 26, 61, 0.08);
}

.inbox-icon,
.pdf-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--navy);
  color: var(--gold);
}

.inbox-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 15px;
}

.inbox-name,
.inbox-from,
.inbox-subject,
.inbox-preview,
.pdf-name,
.pdf-size {
  margin: 0;
}

.inbox-name,
.inbox-subject,
.pdf-name {
  color: var(--navy);
  font-weight: 800;
}

.inbox-name,
.inbox-subject {
  font-size: 14px;
}

.inbox-from,
.inbox-preview,
.pdf-size {
  color: rgba(6, 26, 61, 0.52);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.65;
}

.inbox-dot {
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--gold);
}

.inbox-preview {
  margin-top: 8px;
}

.pdf-attachment {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid rgba(6, 26, 61, 0.1);
  border-radius: 6px;
  background: var(--cream);
}

.pdf-icon {
  width: 36px;
  height: 36px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 800;
}

.pdf-attachment > span {
  margin-left: auto;
  color: var(--gold);
  font-size: 20px;
}

.steps-card {
  padding: 24px;
  background: var(--navy);
}

.steps-title {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.step-row {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.step-row:last-child {
  margin-bottom: 0;
}

.step-num {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
}

.step-text strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 14px;
}

.step-text p {
  margin: 0;
  color: rgba(255, 253, 248, 0.64);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.65;
}

.thank-you-quote {
  margin-bottom: 24px;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
}

.thank-you-quote p {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  line-height: 1.55;
}

.thank-you-quote span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.thank-you-back {
  display: block;
  width: 100%;
  margin-bottom: 24px;
  padding: 15px 20px;
  border-radius: 6px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
}

.support-row {
  padding: 4px 0 20px;
  text-align: center;
}

.support-row p {
  margin: 0;
  color: rgba(6, 26, 61, 0.54);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
}

.support-row a {
  color: var(--navy);
  text-decoration: underline;
}

.wholesale-page {
  background: var(--paper);
}

.wholesale-hero {
  padding: clamp(70px, 9vw, 118px) clamp(22px, 5vw, 76px) clamp(54px, 7vw, 84px);
  background: var(--paper);
  text-align: center;
}

.wholesale-hero-copy {
  width: min(100%, 760px);
  margin: 0 auto;
}

.wholesale-hero h1 {
  margin-top: 16px;
  font-size: clamp(58px, 8vw, 92px);
  line-height: 0.94;
}

.wholesale-hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.wholesale-hero p:not(.eyebrow) {
  margin: 24px auto 0;
  color: rgba(6, 26, 61, 0.72);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.72;
}

.wholesale-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--navy);
}

.wholesale-stats div {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: clamp(28px, 4vw, 44px) 18px;
  border-right: 1px solid rgba(255, 253, 248, 0.14);
  text-align: center;
}

.wholesale-stats div:last-child {
  border-right: 0;
}

.wholesale-stats strong {
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 66px);
  line-height: 0.9;
}

.wholesale-stats strong span {
  color: var(--gold);
}

.wholesale-stats div > span {
  color: rgba(255, 253, 248, 0.64);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wholesale-inquiry {
  background: #fff;
}

.wholesale-form-heading {
  width: min(100%, 760px);
  margin: 0 auto 34px;
  text-align: center;
}

.wholesale-form-heading h2 {
  margin-top: 12px;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 0.96;
}

.wholesale-form-heading p:not(.eyebrow) {
  margin: 18px auto 0;
  color: rgba(6, 26, 61, 0.7);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
}

.wholesale-form {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(189, 141, 58, 0.34);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

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

.wholesale-field-grid + .wholesale-field-grid,
.buyer-types {
  margin-top: 22px;
}

.wholesale-field-grid label,
.wholesale-form label {
  display: grid;
  gap: 8px;
}

.wholesale-form label span,
.buyer-types legend {
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wholesale-form input,
.wholesale-form select,
.wholesale-form textarea {
  width: 100%;
  border: 1px solid rgba(189, 141, 58, 0.38);
  border-radius: 4px;
  background: #fff;
  color: var(--navy);
  font: 700 15px/1.4 var(--sans);
  outline: none;
}

.wholesale-form input,
.wholesale-form select {
  min-height: 52px;
  padding: 0 16px;
}

.wholesale-form textarea {
  min-height: 118px;
  padding: 15px 16px;
  resize: vertical;
}

.wholesale-form input:focus,
.wholesale-form select:focus,
.wholesale-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(189, 141, 58, 0.1);
}

.wholesale-field-grid .full {
  grid-column: 1 / -1;
}

.buyer-types {
  padding: 0;
  border: 0;
}

.buyer-types legend {
  margin-bottom: 12px;
}

.buyer-types {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.buyer-chip {
  min-height: 44px;
  border: 1px solid rgba(189, 141, 58, 0.38);
  border-radius: 4px;
  background: #fff;
  color: rgba(6, 26, 61, 0.75);
  font-size: 13px;
  font-weight: 800;
}

.buyer-chip.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.wholesale-note {
  margin: 22px 0;
  color: rgba(6, 26, 61, 0.58);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}

.wholesale-submit {
  width: 100%;
}

.wholesale-success,
.wholesale-bottom-note {
  color: var(--navy);
  font-weight: 800;
  text-align: center;
}

.wholesale-success {
  margin: 16px 0 0;
}

.wholesale-bottom-note {
  margin: 28px 0 0;
  font-size: 15px;
}

.wholesale-bottom-note a {
  color: var(--gold);
  text-decoration: underline;
}

.shop-page {
  background: #fff;
}

.catalog-hero {
  position: relative;
  padding: clamp(54px, 7vw, 84px) 22px clamp(34px, 5vw, 54px);
  border-bottom: 1px solid rgba(189, 141, 58, 0.2);
  background: #fff;
  text-align: center;
}

.catalog-hero h1 {
  margin-top: 10px;
  font-size: clamp(54px, 7vw, 78px);
  line-height: 0.96;
}

.catalog-cart {
  position: absolute;
  top: 28px;
  right: clamp(22px, 5vw, 64px);
  min-height: 42px;
  padding: 0 20px;
  border-radius: 4px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.catalog-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(189, 141, 58, 0.2);
  background: #fff;
}

.catalog-filter {
  min-height: 36px;
  padding: 0 18px;
  border: 1px solid rgba(189, 141, 58, 0.48);
  border-radius: 999px;
  background: #fff;
  color: rgba(6, 26, 61, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.catalog-filter.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.catalog-body {
  width: min(100%, 1160px);
  margin: 0 auto;
  padding: clamp(42px, 6vw, 70px) clamp(18px, 4vw, 38px) clamp(70px, 8vw, 104px);
}

.catalog-section-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 28px;
}

.catalog-section-heading + .catalog-bundle {
  margin-top: 0;
}

.catalog-section-heading span {
  flex: 1;
  height: 1px;
  background: rgba(189, 141, 58, 0.24);
}

.catalog-section-heading p {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
  margin-bottom: clamp(46px, 6vw, 70px);
}

.catalog-card,
.catalog-bundle {
  border: 1px solid rgba(189, 141, 58, 0.26);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease;
}

.catalog-card:hover,
.catalog-bundle:hover {
  border-color: rgba(189, 141, 58, 0.68);
  transform: translateY(-2px);
}

.catalog-image-button,
.bundle-image-button {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background: var(--cream);
}

.catalog-image-button {
  aspect-ratio: 4 / 5;
}

.catalog-image-button img,
.bundle-image-button img {
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.catalog-card:hover img,
.catalog-bundle:hover img {
  transform: scale(1.035);
}

.catalog-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(6, 26, 61, 0.16);
  opacity: 0;
  transition: opacity 180ms ease;
}

.catalog-card:hover .catalog-overlay,
.catalog-bundle:hover .catalog-overlay {
  opacity: 1;
}

.plus-circle {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.catalog-info {
  padding: 18px 18px 20px;
}

.catalog-info h2 {
  font-size: 25px;
  line-height: 1.05;
}

.catalog-info p {
  margin: 8px 0 12px;
  color: rgba(6, 26, 61, 0.5);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.catalog-info strong {
  color: var(--navy);
  font-size: 16px;
}

.catalog-bundle {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  margin-top: 0;
  background: var(--paper);
}

.bundle-image-button {
  min-height: 320px;
}

.catalog-bundle-info {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 16px;
  padding: clamp(30px, 5vw, 50px);
}

.catalog-bundle-info h2 {
  font-size: clamp(38px, 5vw, 56px);
  line-height: 0.95;
}

.catalog-bundle-info p:not(.eyebrow) {
  margin: 0;
  color: rgba(6, 26, 61, 0.68);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
}

.catalog-bundle-info p strong {
  display: block;
  color: var(--navy);
}

.bundle-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.bundle-price-row span {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
}

.bundle-price-row b {
  padding: 5px 12px;
  border: 1px solid rgba(74, 128, 74, 0.48);
  border-radius: 999px;
  color: #4a804a;
  font-size: 12px;
}

.catalog-item-hidden,
.catalog-section-hidden {
  display: none;
}

.platform-page {
  background: var(--paper);
}

.platform-hero {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: clamp(62px, 8vw, 104px) 22px 32px;
  text-align: center;
}

.platform-hero h1 {
  margin-top: 12px;
  font-size: clamp(50px, 7vw, 78px);
  line-height: 0.96;
}

.platform-hero p:not(.eyebrow) {
  margin: 20px auto 0;
  color: rgba(6, 26, 61, 0.62);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.65;
}

.platform-list {
  display: grid;
  gap: 46px;
  width: min(100%, 720px);
  margin: 0 auto;
}

.platform-group {
  display: grid;
  gap: 0;
}

.platform-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}

.platform-heading::after {
  flex: 1;
  height: 1px;
  background: rgba(189, 141, 58, 0.36);
  content: "";
}

.platform-heading h2 {
  color: var(--navy);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.platform-link,
.platform-coming-soon {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(189, 141, 58, 0.18);
}

.platform-link span,
.platform-coming-soon span {
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.platform-link small {
  display: inline-block;
  margin-left: 4px;
  color: rgba(6, 26, 61, 0.5);
  font-size: 13px;
  font-weight: 700;
}

.platform-link b {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 24px;
  transition: transform 180ms ease;
}

.platform-link:hover b {
  transform: translateX(5px);
}

.platform-coming-soon span {
  color: rgba(6, 26, 61, 0.46);
  font-style: italic;
}

.platform-coming-soon b {
  padding: 5px 12px;
  border: 1px solid rgba(189, 141, 58, 0.48);
  border-radius: 999px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.bundle-page {
  background: #fff;
}

.product-breadcrumb {
  width: min(100% - 48px, 1240px);
  margin: 34px auto 0;
  color: rgba(21, 40, 73, 0.68);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-breadcrumb span {
  color: var(--navy);
}

.bundle-product {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.72fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
  width: min(100% - 48px, 1240px);
  margin: 22px auto clamp(64px, 8vw, 112px);
}

.bundle-gallery {
  position: sticky;
  top: 112px;
  overflow: hidden;
  min-height: 680px;
  background: var(--cream);
  border: 1px solid rgba(189, 141, 58, 0.24);
}

.bundle-main-image {
  height: 680px;
  object-fit: cover;
}

.bundle-gallery-arrow {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 253, 248, 0.68);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.72);
  color: var(--navy);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 200ms ease, transform 200ms ease;
}

.bundle-gallery-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.04);
}

.bundle-gallery-arrow.prev {
  left: 20px;
}

.bundle-gallery-arrow.next {
  right: 20px;
}

.bundle-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  display: flex;
  gap: 9px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  transform: translateX(-50%);
}

.bundle-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  background: rgba(6, 26, 61, 0.28);
}

.bundle-dots button.is-active {
  background: var(--gold);
}

.bundle-buy-panel {
  display: grid;
  gap: 22px;
  padding: clamp(28px, 4vw, 46px);
  background: var(--paper);
  border: 1px solid rgba(189, 141, 58, 0.32);
  box-shadow: 0 22px 60px rgba(34, 25, 12, 0.1);
}

.bundle-buy-panel h1 {
  margin-top: 10px;
  font-size: clamp(58px, 6vw, 88px);
  line-height: 0.86;
}

.bundle-tagline {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.25;
}

.bundle-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(189, 141, 58, 0.48), rgba(189, 141, 58, 0.08));
}

.bundle-small-label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.bundle-includes-list {
  display: grid;
  gap: 11px;
}

.bundle-includes-list p {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  align-items: start;
  margin: 0;
  color: var(--navy);
  font-weight: 600;
}

.bundle-includes-list span,
.bundle-shipping-note span {
  width: 9px;
  height: 9px;
  margin-top: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

.bundle-price-area {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.bundle-price-area span {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
}

.bundle-price-area b {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bundle-shipping-note {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 800;
}

.bundle-shipping-note span {
  margin-top: 0;
}

.bundle-address-note,
.contact-note {
  margin: -10px 0 0;
  color: rgba(21, 40, 73, 0.72);
  font-size: 14px;
}

.contact-note a {
  color: var(--navy);
  font-weight: 800;
}

.bundle-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--navy);
  font-weight: 800;
}

.bundle-qty-row > div {
  display: grid;
  grid-template-columns: 42px 54px 42px;
  overflow: hidden;
  border: 1px solid rgba(6, 26, 61, 0.18);
}

.bundle-qty-row button,
.bundle-qty-row input {
  min-height: 42px;
  text-align: center;
}

.bundle-qty-row button {
  background: #fff;
  color: var(--navy);
  font-size: 20px;
}

.bundle-qty-row input {
  width: 100%;
  border: 0;
  border-left: 1px solid rgba(6, 26, 61, 0.12);
  border-right: 1px solid rgba(6, 26, 61, 0.12);
  color: var(--navy);
  font-weight: 800;
}

.bundle-buy-button {
  width: 100%;
}

.bundle-editorial {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
  width: min(100% - 48px, 1240px);
  margin: 0 auto clamp(64px, 8vw, 112px);
}

.bundle-editorial figure {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(189, 141, 58, 0.24);
}

.bundle-editorial figure.tall {
  grid-row: span 2;
}

.bundle-editorial figure.full {
  grid-column: 1 / -1;
}

.bundle-editorial img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.bundle-editorial figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 20px 22px;
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(189, 141, 58, 0.3);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.18;
}

.bundle-editorial figcaption strong {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 32px;
  line-height: 0.95;
}

.bundle-editorial .brand-panel {
  display: grid;
  place-items: center;
  padding: 48px;
  background: var(--navy);
  color: #fff;
  text-align: center;
}

.brand-panel p:first-child {
  margin: 0;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.brand-panel h2 {
  margin-top: 22px;
  color: #fff;
  font-size: clamp(56px, 7vw, 92px);
  line-height: 0.9;
}

.brand-panel h3 {
  color: var(--gold-soft);
  font-size: clamp(48px, 6vw, 78px);
  font-style: italic;
  line-height: 0.9;
}

.brand-panel span {
  display: block;
  width: 80px;
  height: 1px;
  margin: 28px auto;
  background: var(--gold);
}

.brand-panel p:last-child {
  margin: 0;
  color: rgba(255, 253, 248, 0.9);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.25;
}

.bundle-reviews {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
  border-top: 1px solid rgba(189, 141, 58, 0.24);
}

.bundle-reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.bundle-reviews-header h2 {
  font-size: clamp(48px, 6vw, 72px);
  line-height: 0.95;
}

.bundle-rating-summary {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  align-items: center;
  padding: 28px;
  background: var(--paper);
  border: 1px solid rgba(189, 141, 58, 0.28);
}

.bundle-rating-summary strong {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 76px;
  line-height: 0.9;
}

.bundle-rating-summary p {
  margin: 8px 0 4px;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.bundle-rating-summary span,
.bundle-rating-summary em {
  color: rgba(21, 40, 73, 0.7);
  font-style: normal;
  font-weight: 700;
}

.bundle-rating-bars {
  display: grid;
  gap: 8px;
}

.bundle-rating-bars p {
  display: grid;
  grid-template-columns: 44px 1fr 26px;
  gap: 12px;
  align-items: center;
  margin: 0;
}

.bundle-rating-bars b {
  overflow: hidden;
  height: 9px;
  background: rgba(6, 26, 61, 0.1);
}

.bundle-rating-bars i {
  display: block;
  height: 100%;
  background: var(--gold);
}

.bundle-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.bundle-review-card {
  display: grid;
  align-content: start;
  min-height: 250px;
  padding: 26px;
  background: #fff;
  border: 1px solid rgba(6, 26, 61, 0.12);
}

.bundle-review-card .stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 0.08em;
}

.bundle-review-card h3 {
  margin: 18px 0 10px;
  font-size: 31px;
  line-height: 0.95;
}

.bundle-review-card blockquote {
  margin: 0;
  color: rgba(21, 40, 73, 0.82);
  font-size: 15px;
}

.bundle-review-card cite {
  margin-top: 22px;
  color: rgba(21, 40, 73, 0.62);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.bundle-review-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: start center;
  overflow-y: auto;
  padding: 34px 18px;
  background: rgba(6, 26, 61, 0.52);
}

.bundle-review-modal[hidden] {
  display: none;
}

.bundle-review-dialog {
  position: relative;
  width: min(100%, 760px);
  padding: clamp(28px, 5vw, 48px);
  background: #fff;
  border: 1px solid rgba(189, 141, 58, 0.28);
  box-shadow: 0 30px 90px rgba(6, 26, 61, 0.32);
}

.bundle-review-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(6, 26, 61, 0.15);
  border-radius: 50%;
}

.bundle-review-close::before,
.bundle-review-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 1px;
  background: var(--navy);
  content: "";
}

.bundle-review-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.bundle-review-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.bundle-review-dialog h2 {
  margin: 12px 0 28px;
  font-size: clamp(44px, 6vw, 64px);
}

.bundle-review-dialog form {
  display: grid;
  gap: 28px;
}

.bundle-review-dialog h3 {
  margin-bottom: 6px;
  font-size: 28px;
}

.bundle-review-dialog p {
  margin: 0 0 16px;
  color: rgba(21, 40, 73, 0.68);
}

.bundle-star-select {
  display: flex;
  gap: 12px;
}

.bundle-star-select button {
  color: rgba(6, 26, 61, 0.18);
  font-size: 42px;
  line-height: 1;
}

.bundle-star-select button.is-active {
  color: var(--gold);
}

.bundle-review-dialog label {
  display: grid;
  gap: 7px;
  margin-top: 14px;
  color: var(--navy);
  font-weight: 800;
}

.bundle-review-dialog input,
.bundle-review-dialog select,
.bundle-review-dialog textarea {
  width: 100%;
  border: 1px solid rgba(6, 26, 61, 0.16);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.bundle-review-dialog input {
  min-height: 58px;
  padding: 0 18px;
}

.bundle-review-dialog select {
  min-height: 58px;
  padding: 0 18px;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--navy) 50%), linear-gradient(135deg, var(--navy) 50%, transparent 50%);
  background-position: calc(100% - 22px) 25px, calc(100% - 15px) 25px;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

.bundle-review-dialog textarea {
  min-height: 170px;
  padding: 16px 18px;
  resize: vertical;
}

.bundle-review-dialog small {
  display: block;
  margin-top: 8px;
  color: rgba(21, 40, 73, 0.56);
}

.bundle-review-dialog .button {
  width: 100%;
}

.bundle-review-success {
  margin: 0 !important;
  color: var(--navy) !important;
  font-weight: 800;
  text-align: center;
}

.customer-reviews-page {
  background: #fff;
}

.customer-review-hero {
  overflow: hidden;
}

.customer-review-hero img {
  min-height: clamp(260px, 38vw, 520px);
  object-fit: cover;
  object-position: center;
}

.customer-review-feature {
  background: var(--navy);
  color: #fff;
}

.customer-review-feature-inner {
  width: min(100%, 980px);
  margin: 0 auto;
  text-align: center;
}

.customer-review-feature blockquote {
  margin: 18px auto 34px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 70px);
  line-height: 1.05;
}

.customer-review-feature .button {
  background: #fff;
  color: var(--navy) !important;
}

.customer-review-list {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.customer-review-list-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.customer-review-list h2 {
  margin-top: 8px;
  font-size: clamp(52px, 7vw, 86px);
  line-height: 0.9;
}

.customer-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.customer-review-card {
  display: grid;
  align-content: start;
  min-height: 280px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid rgba(189, 141, 58, 0.26);
}

.customer-review-card .stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 0.08em;
}

.customer-review-card small {
  display: inline-flex;
  justify-self: start;
  margin-top: 18px;
  padding: 5px 10px;
  border: 1px solid rgba(189, 141, 58, 0.36);
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.customer-review-card h3 {
  margin: 18px 0 10px;
  font-size: 32px;
  line-height: 0.95;
}

.customer-review-card blockquote {
  margin: 0;
  color: rgba(21, 40, 73, 0.82);
  font-size: 16px;
  line-height: 1.65;
}

.customer-review-card cite {
  margin-top: 22px;
  color: rgba(21, 40, 73, 0.62);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 1020px) {
  .nav {
    grid-template-columns: auto 1fr auto;
    width: min(100% - 32px, 920px);
    min-height: 74px;
  }

  .nav-group-left a,
  .nav-group-right a:not(.pill-link) {
    display: none;
  }

  .brand {
    justify-self: center;
    font-size: clamp(28px, 4.8vw, 38px);
  }

  .pill-link {
    min-height: 42px;
    padding: 0 24px;
  }

  .hero {
    min-height: 660px;
  }

  .hero > img {
    object-position: center;
  }

  .hero-copy {
    margin-top: 0;
    padding: 24px;
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.72);
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .product-card h3 {
    font-size: 28px;
  }

  .audience-layout {
    grid-template-columns: 1fr;
  }

  .audience-layout > img,
  .framed-copy {
    min-height: 420px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .founder-layout {
    grid-template-columns: 1fr;
    width: min(100%, 720px);
  }

  .founder-image {
    width: min(100%, 470px);
    margin: 0 auto;
    order: -1;
  }

  .vision-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 28px;
  }

  .vision-grid article:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }

  .digital-hero {
    grid-template-columns: 1fr;
  }

  .digital-copy {
    max-width: none;
  }

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

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

  .bundle-gallery {
    position: relative;
    top: auto;
  }

  .bundle-review-grid {
    grid-template-columns: 1fr;
  }

  .customer-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .nav {
    grid-template-columns: auto 1fr;
  }

  .nav-group-right {
    display: none;
  }

  .brand {
    justify-self: end;
    max-width: 230px;
    white-space: normal;
    text-align: right;
  }

  .promo-bar {
    font-size: 17px;
    line-height: 1.25;
  }

  .hero {
    min-height: 620px;
    align-items: end;
    padding: 0 18px 34px;
  }

  .hero > img {
    object-position: 44% center;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.08), rgba(255, 253, 248, 0.95) 73%);
  }

  .hero-copy {
    width: 100%;
    margin: 0;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero p {
    font-size: 19px;
  }

  .section-pad {
    padding: 54px 18px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    width: min(100%, 360px);
    gap: 42px;
  }

  .product-card p {
    min-height: 0;
  }

  .section-heading h2 {
    font-size: 44px;
  }

  .segmented-control {
    width: min(100%, 330px);
  }

  .segment {
    min-width: 0;
  }

  .framed-copy {
    min-height: auto;
    padding: 38px 28px;
  }

  .framed-copy h3 {
    font-size: 35px;
  }

  .framed-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .audience-layout > img {
    min-height: 340px;
  }

  .quote-card {
    min-height: 420px;
  }

  .quote-card h2 {
    font-size: 39px;
  }

  .tracker h2 {
    font-size: 36px;
  }

  .tracker-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .tracker-row b {
    justify-self: end;
  }

  .email-hero {
    min-height: 560px;
    align-items: end;
    padding-bottom: 28px;
  }

  .email-hero > img {
    object-position: 48% center;
  }

  .email-card h2 {
    font-size: 38px;
  }

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

  .footer-logo {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    margin-top: 64px;
  }

  .about-founder {
    padding-top: 50px;
  }

  .about-kicker {
    margin-bottom: 38px;
  }

  .about-kicker h1 {
    font-size: 42px;
  }

  .about-kicker p {
    font-size: 17px;
    line-height: 1.35;
  }

  .founder-layout {
    gap: 34px;
  }

  .founder-copy h2 {
    font-size: 36px;
  }

  .vision-section h2 {
    font-size: 58px;
  }

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

  .vision-grid article,
  .vision-grid article:first-child {
    min-height: auto;
    padding: 0 0 28px;
    border-left: 0;
    border-bottom: 1px solid rgba(189, 141, 58, 0.34);
  }

  .vision-grid article:last-child {
    border-bottom: 0;
  }

  .vision-grid p {
    font-size: 25px;
  }

  .policy-main {
    padding-top: 48px;
  }

  .policy-content h2 {
    padding-left: 20px;
    font-size: 26px;
  }

  .policy-content p,
  .policy-content li {
    font-size: 16px;
  }

  .digital-hero {
    padding: 46px 18px;
  }

  .digital-copy h1 {
    font-size: 56px;
  }

  .digital-gallery {
    grid-template-columns: 1fr;
  }

  .digital-gallery .gallery-main {
    grid-row: auto;
  }

  .digital-gallery img {
    min-height: 0;
  }

  .checkout-panel {
    padding: 24px 20px;
  }

  .review-rating {
    gap: 8px;
  }

  .review-star {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .review-submit {
    width: 100%;
  }

  .wholesale-stats {
    grid-template-columns: 1fr;
  }

  .wholesale-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 253, 248, 0.14);
  }

  .wholesale-stats div:last-child {
    border-bottom: 0;
  }

  .wholesale-field-grid,
  .buyer-types {
    grid-template-columns: 1fr;
  }

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

  .catalog-cart {
    position: static;
    margin-top: 22px;
  }

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

  .catalog-bundle {
    grid-template-columns: 1fr;
  }

  .product-breadcrumb,
  .bundle-product,
  .bundle-editorial,
  .bundle-reviews {
    width: min(100% - 36px, 1240px);
  }

  .bundle-gallery,
  .bundle-main-image {
    min-height: 0;
    height: auto;
  }

  .bundle-main-image {
    aspect-ratio: 1 / 1;
  }

  .bundle-buy-panel h1 {
    font-size: 52px;
  }

  .bundle-editorial {
    grid-template-columns: 1fr;
  }

  .bundle-editorial figure,
  .bundle-editorial figure.tall,
  .bundle-editorial figure.full {
    grid-column: auto;
    grid-row: auto;
    min-height: 390px;
  }

  .bundle-editorial figcaption {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .bundle-reviews-header,
  .bundle-rating-summary {
    grid-template-columns: 1fr;
  }

  .bundle-reviews-header {
    align-items: start;
    flex-direction: column;
  }

  .bundle-reviews-header .button {
    width: 100%;
  }

  .customer-review-list {
    width: min(100% - 36px, 1240px);
  }

  .customer-review-list-head {
    align-items: start;
    flex-direction: column;
  }

  .customer-review-list-head .button,
  .customer-review-feature .button {
    width: 100%;
  }

  .customer-review-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .catalog-section-heading p {
    white-space: nowrap;
  }
}

@media (max-width: 430px) {
  .brand {
    max-width: 190px;
    font-size: 25px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .button {
    width: 100%;
    padding: 0 20px;
  }

  .drawer-panel {
    padding: 20px;
  }

  .drawer-section a {
    font-size: 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo img {
    margin: 0 auto;
  }
}
