:root {
  color-scheme: light;
  --ink: #14171a;
  --muted: #5c6570;
  --paper: #f6f7f4;
  --white: #ffffff;
  --mist: #e8eef2;
  --steel: #5d7281;
  --navy: #172c3b;
  --navy-dark: #0c1821;
  --sage: #5c7a68;
  --copper: #b97845;
  --copper-dark: #7d4624;
  --line: rgba(20, 23, 26, 0.14);
  --shadow: 0 24px 70px rgba(12, 24, 33, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

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

.page-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  color: #fff;
  background: var(--navy-dark);
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(8, 17, 23, 0.92) 0%, rgba(8, 17, 23, 0.72) 40%, rgba(8, 17, 23, 0.12) 100%), url("assets/sealed-metal-cutlery-pack.png");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(8, 17, 23, 0.86) 0%, rgba(8, 17, 23, 0.08) 48%, rgba(8, 17, 23, 0.2) 100%);
}

.nav {
  width: calc(100% - 36px);
  max-width: 1180px;
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand__mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.13);
  font-size: 0.82rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.nav__links a:hover {
  color: #fff;
}

.hero__content {
  width: calc(100% - 36px);
  max-width: 1180px;
  margin: auto;
  padding: 76px 0 112px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: #d8a06d;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.eyebrow--dark {
  color: var(--copper-dark);
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  width: 100%;
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.05rem, 6.7vw, 6.65rem);
  line-height: 0.95;
  font-weight: 500;
  overflow-wrap: normal;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.05rem);
  line-height: 1.03;
  font-weight: 500;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
}

.hero__lead {
  width: 100%;
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
  line-height: 1.62;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0 20px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button--primary {
  background: var(--copper);
  color: #fff;
  border-color: var(--copper);
}

.button--secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.button--dark {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.trust-strip {
  width: 100%;
  max-width: 780px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 64px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.trust-strip span {
  min-height: 64px;
  display: grid;
  place-items: center;
  padding: 12px;
  text-align: center;
  background: rgba(8, 17, 23, 0.48);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 750;
}

.section-inner {
  width: calc(100% - 36px);
  max-width: 1120px;
  margin: 0 auto;
}

.problem-band {
  padding: 88px 0;
  background: var(--white);
}

.problem-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 54px;
  align-items: end;
}

.offer-band,
.audience-band {
  padding: 94px 0;
  background: var(--paper);
}

.perk-band {
  padding: 94px 0;
  background: #fff;
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 54px;
  align-items: center;
}

.perk-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 54px;
  align-items: center;
}

.section-head {
  max-width: 760px;
}

.section-copy {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.section-copy--light {
  color: rgba(255, 255, 255, 0.77);
}

.inline-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.inline-proof li {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0 12px;
  color: var(--steel);
  font-size: 0.9rem;
  font-weight: 800;
}

.pack-card,
.perk-card,
.digital-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 28px;
}

.perk-card {
  border-top: 4px solid var(--copper);
  box-shadow: 0 24px 70px rgba(125, 70, 36, 0.16);
}

.perk-card h3 {
  margin-top: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.perk-card__note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.pack-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.pack-card__label {
  color: var(--copper-dark);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

.pack-card__count {
  color: var(--sage);
  font-weight: 850;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #303840;
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.43em;
  width: 12px;
  height: 12px;
  background: var(--sage);
  box-shadow: inset 0 0 0 3px #fff, 0 0 0 1px var(--sage);
}

.plans-band {
  padding: 96px 0;
  background: linear-gradient(180deg, #eef3f5 0%, #ffffff 100%);
}

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

.plan {
  min-width: 0;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  background: #fff;
  padding: 26px;
}

.plan--featured {
  border-color: rgba(185, 120, 69, 0.55);
  box-shadow: var(--shadow);
  transform: translateY(-10px);
}

.plan__tag {
  color: var(--copper-dark);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.plan h3,
.digital-card h3 {
  margin-top: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.plan__price {
  margin: 24px 0 0;
  color: var(--navy);
  font-size: 2.45rem;
  font-weight: 900;
  line-height: 1;
}

.plan__price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 750;
}

.plan__copy {
  margin: 22px 0 28px;
  color: var(--muted);
  line-height: 1.65;
}

.plan .button {
  margin-top: auto;
  width: 100%;
}

.how-band,
.digital-band {
  padding: 100px 0;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-dark), #243f4e 52%, #263b33);
}

.how-layout,
.digital-layout {
  display: grid;
  grid-template-columns: minmax(280px, 410px) minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
}

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

.steps article {
  min-width: 0;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 24px;
}

.steps span {
  color: var(--copper-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.steps p,
.audience-grid p,
.digital-card p:not(.plan__price) {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.audience-grid article {
  min-width: 0;
  min-height: 190px;
  border-top: 3px solid var(--steel);
  background: #fff;
  padding: 24px;
}

.digital-card {
  align-self: start;
}

.digital-card .plan__price {
  color: var(--copper-dark);
}

.join-band {
  padding: 94px 0;
  color: #fff;
  background: linear-gradient(135deg, #11171c, #29333a 56%, #22352a);
}

.join-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 52px;
  align-items: start;
}

.signup {
  min-width: 0;
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  padding: 24px;
}

.signup label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 750;
}

.signup input,
.signup select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  padding: 0 13px;
  color: #fff;
  background: rgba(0, 0, 0, 0.22);
  font: inherit;
}

.signup select option {
  color: var(--ink);
}

.signup__note {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.86rem;
  line-height: 1.5;
}

.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.78);
  padding: 30px 0;
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-layout p {
  margin: 0;
  max-width: 520px;
}

.footer-layout nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-layout a {
  color: #fff;
  font-weight: 700;
}

.policy-page {
  background: var(--paper);
  color: var(--ink);
}

.policy-shell {
  width: calc(100% - 40px);
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 0 72px;
}

.policy-shell h1 {
  color: var(--navy-dark);
  font-size: clamp(2.2rem, 6vw, 4rem);
  max-width: 780px;
}

.policy-shell h2 {
  color: var(--navy);
  margin-top: 34px;
}

.policy-shell p,
.policy-shell li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.policy-shell a {
  color: var(--copper-dark);
  font-weight: 800;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .nav {
    align-items: flex-start;
    padding-top: 18px;
  }

  .nav__links {
    gap: 12px;
    font-size: 0.82rem;
  }

  .hero__content {
    padding: 92px 0 72px;
  }

  .problem-layout,
  .trust-strip,
  .offer-grid,
  .perk-layout,
  .plan-grid,
  .how-layout,
  .digital-layout,
  .join-layout,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .footer-layout {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .plan--featured {
    transform: none;
  }

  .problem-band,
  .offer-band,
  .perk-band,
  .plans-band,
  .audience-band,
  .how-band,
  .digital-band,
  .join-band {
    padding: 68px 0;
  }
}

@media (max-width: 560px) {
  * {
    max-width: 100%;
  }

  html,
  body,
  .page-shell {
    width: 100%;
    max-width: 100vw;
  }

  .nav {
    width: calc(100vw - 44px);
  }

  .nav__links {
    display: none;
  }

  .eyebrow {
    font-size: 0.7rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .hero__content,
  .section-inner {
    width: calc(100vw - 44px);
    max-width: calc(100vw - 44px);
    min-width: 0;
  }

  h1 {
    font-size: clamp(2.1rem, 10vw, 2.7rem);
    line-height: 1;
    width: 100%;
    max-width: 310px;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  h2 {
    font-size: clamp(1.72rem, 8vw, 2.35rem);
    width: 100%;
    max-width: 320px;
    overflow-wrap: anywhere;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    max-width: 100%;
  }

  .pack-card,
  .perk-card,
  .plan,
  .steps article,
  .audience-grid article,
  .digital-card,
  .signup {
    padding: 22px;
  }

  .pack-card__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-strip span {
    min-height: 54px;
  }

  .hero__lead,
  .section-copy {
    font-size: 1rem;
    width: 100%;
    max-width: 320px;
    overflow-wrap: anywhere;
  }
}
