/* ==========================================================================
   Sody — landing page
   Implements "Sody Landing v3.dc.html". Section order and every value below
   comes from that artboard; the media queries at the end are the responsive
   behaviour a fixed-width artboard could not express.
   ========================================================================== */

/* --- Section scaffolding -------------------------------------------------- */

.section {
  padding: clamp(40px, 6vw, 88px) 0 0;
}

.section__head {
  max-width: 52ch;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 14px 0 0;
}

.section__lead {
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--ink-70);
  margin: 16px 0 0;
}

.card-title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--sand);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--clay-deep);
}

.pill__dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--terracotta);
}

/* Dashed stand-ins for photography and video not yet shot. */
.placeholder {
  border-radius: 26px;
  background: var(--sand);
  border: 1px dashed var(--clay-35);
  display: flex;
  align-items: flex-end;
  padding: clamp(18px, 2.4vw, 30px);
}

.placeholder__label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--clay-70);
  max-width: 44ch;
}

/* --- Header CTA ----------------------------------------------------------- */

.header-cta {
  padding: 12px 22px;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14.5px;
  white-space: nowrap;
}

.header-cta:hover {
  color: var(--cream);
  background: #33211a;
}

/* --- Hero ----------------------------------------------------------------- */

.hero {
  padding: clamp(28px, 5vw, 56px) 0 0;
  text-align: center;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(42px, 7.4vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 24px auto 0;
  max-width: 17ch;
  text-wrap: balance;
}

.hero__title em {
  font-style: normal;
  color: var(--terracotta);
}

.hero__promise {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--ink-72);
  margin: 26px auto 0;
  max-width: 58ch;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.button--hero {
  padding: 19px 42px;
  font-size: 18px;
  box-shadow: var(--shadow-button);
}

.hero__sub {
  font-size: 14px;
  color: var(--ink-60);
}

.scarcity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--clay-deep);
}

.scarcity__dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--tan);
}

.hero-visual {
  margin-top: clamp(32px, 4vw, 52px);
  aspect-ratio: 16 / 9;
}

/* --- Trust strip ---------------------------------------------------------- */

.trust {
  padding: clamp(28px, 4vw, 44px) 0;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  flex-wrap: wrap;
  justify-content: center;
}

.trust__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-45);
}

.trust__logos {
  display: contents;
}

.trust__logo {
  padding: 12px 26px;
  border-radius: 12px;
  background: var(--shell);
  font-size: 13px;
  font-weight: 700;
  color: rgba(36, 22, 16, 0.4);
}

/* --- Problems ------------------------------------------------------------- */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(28px, 3.4vw, 44px);
}

.problem {
  background: var(--shell);
  border-radius: var(--radius-soft);
  padding: clamp(22px, 2.6vw, 32px);
}

.problem__n {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--shell-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--clay-deep);
}

.problem__title {
  font-size: 22px;
  margin: 18px 0 8px;
}

.problem__body {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-70);
}

/* --- Benefits (on ink) ---------------------------------------------------- */

.benefits {
  background: var(--ink);
  color: var(--cream);
  border-radius: 32px;
  padding: clamp(28px, 4.4vw, 64px);
}

.benefits__head {
  max-width: 44ch;
}

.benefits__kicker {
  color: var(--tan);
}

.benefits__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 14px 0 0;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 44px);
  margin-top: clamp(28px, 3.4vw, 48px);
}

.benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit__check {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
}

.benefit__title {
  font-size: 21px;
  margin: 2px 0 8px;
}

.benefit__body {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--on-ink-72);
}

/* --- How it works --------------------------------------------------------- */

.how {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.how__title {
  max-width: 18ch;
}

.steps {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border-radius: 20px;
  padding: 20px 22px;
  box-shadow: 0 6px 18px rgba(36, 22, 16, 0.05);
}

.step__n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--tan);
  line-height: 1;
}

.step__title {
  font-size: 20px;
  margin: 0 0 6px;
}

.step__body {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-70);
}

.how__cta {
  display: inline-block;
  margin-top: 26px;
  padding: 16px 32px;
  font-size: 16px;
}

.how__visual {
  aspect-ratio: 4 / 5;
  padding: 22px;
}

/* --- Proof ---------------------------------------------------------------- */

.proof__lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-60);
  margin: 14px 0 0;
}

.quotes {
  margin-top: clamp(26px, 3vw, 40px);
}

.quote {
  background: var(--white);
  border-radius: var(--radius-soft);
  padding: clamp(22px, 2.6vw, 32px);
  box-shadow: 0 6px 18px rgba(36, 22, 16, 0.05);
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
}

.quote__text {
  font-size: 17px;
  line-height: 1.55;
  font-weight: 500;
}

.quote__by {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.quote__avatar {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  background: var(--sand);
}

.quote__name {
  font-weight: 700;
  font-size: 14.5px;
}

.quote__role {
  font-size: 13px;
  color: var(--ink-55);
}

.stats {
  margin-top: clamp(16px, 2vw, 24px);
}

.stat {
  background: var(--sand);
  border-radius: 18px;
  padding: 22px;
  text-align: center;
}

.stat__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--clay-75);
}

.stat__label {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-top: 6px;
}

/* --- Offer + bonus -------------------------------------------------------- */

.offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
}

.offer__lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-70);
  margin: 14px 0 0;
  max-width: 42ch;
}

.includes {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.includes__item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 16.5px;
  line-height: 1.5;
}

.includes__check {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--clay-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.bonus {
  background: var(--tan);
  border-radius: 26px;
  padding: clamp(24px, 3vw, 40px);
}

.bonus__label {
  display: inline-block;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--tan);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bonus__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 18px 0 12px;
}

.bonus__body {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink-78);
}

.bonus__preview {
  margin-top: 24px;
  aspect-ratio: 9 / 12;
  max-width: 210px;
  border-radius: 18px;
  background: rgba(36, 22, 16, 0.08);
  border: 1px dashed rgba(36, 22, 16, 0.3);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-55);
}

/* --- Menu builder --------------------------------------------------------- */

.menu {
  padding: clamp(36px, 4.6vw, 64px) 0 0;
}

.menu__card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: clamp(24px, 3.4vw, 48px);
  box-shadow: 0 10px 30px rgba(36, 22, 16, 0.06);
}

.menu__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.menu__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 12px 0 8px;
}

.menu__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-65);
  max-width: 46ch;
}

.menu__count {
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  background: var(--sand);
  font-weight: 700;
  font-size: 15px;
  color: var(--clay-deep);
  white-space: nowrap;
}

.menu__groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(24px, 3vw, 36px);
}

.menu__groupLabel {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--sand);
}

.menu__list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.drink {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  cursor: pointer;
  border: 2px solid var(--ink-12);
  background: transparent;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.drink:hover {
  border-color: var(--ink-25);
}

.drink__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.drink__box {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  border: 2px solid var(--ink-20);
  background: transparent;
  color: transparent;
}

.drink__name {
  display: block;
  font-size: 16px;
  font-weight: 700;
}

.drink__note {
  display: block;
  font-size: 14px;
  color: var(--ink-60);
  margin-top: 2px;
}

.drink:has(.drink__input:checked) {
  border-color: var(--terracotta);
  background: var(--pick);
}

.drink:has(.drink__input:checked) .drink__box {
  border-color: var(--terracotta);
  background: var(--terracotta);
  color: var(--cream);
}

.drink:has(.drink__input:focus-visible) {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

/* At the six-recipe cap the remaining tiles are disabled, not silently inert. */
.drink:has(.drink__input:disabled) {
  opacity: 0.45;
  cursor: not-allowed;
}

.drink:has(.drink__input:disabled):hover {
  border-color: var(--ink-12);
}

.menu__actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

.menu__cta {
  padding: 16px 30px;
  font-size: 16px;
}

.menu__reset {
  padding: 16px 24px;
  background: transparent;
  border: 1px solid var(--ink-25);
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-size: 15.5px;
}

.menu__reset:hover {
  border-color: var(--ink);
}

/* --- Pricing -------------------------------------------------------------- */

.packs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(26px, 3vw, 40px);
  align-items: start;
}

.pack {
  border-radius: 26px;
  padding: clamp(24px, 2.8vw, 36px);
  display: flex;
  flex-direction: column;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(36, 22, 16, 0.05);
}

/* The middle package is the one being steered toward. */
.pack--hero {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 18px 44px rgba(36, 22, 16, 0.22);
}

.pack__tag {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--tan);
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pack__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin: 0;
}

.pack__duration {
  font-size: 14.5px;
  margin-top: 6px;
  color: var(--ink-55);
}

.pack--hero .pack__duration {
  color: var(--on-ink-65);
}

.pack__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 3.6vw, 46px);
  letter-spacing: -0.03em;
  margin: 18px 0 2px;
}

.pack__unit {
  font-size: 13.5px;
  color: var(--ink-50);
}

.pack--hero .pack__unit {
  color: var(--on-ink-60);
}

.pack__rule {
  height: 1px;
  margin: 22px 0;
  background: var(--ink-10);
}

.pack--hero .pack__rule {
  background: var(--on-ink-18);
}

.pack__lines {
  display: grid;
  gap: 11px;
}

.pack__line {
  display: flex;
  gap: 11px;
  font-size: 15.5px;
  line-height: 1.5;
}

.pack__bullet {
  color: var(--terracotta);
  font-weight: 700;
}

.pack--hero .pack__bullet {
  color: var(--tan);
}

.pack__cta {
  margin-top: 26px;
  display: block;
  text-align: center;
  padding: 15px 20px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15.5px;
  background: var(--sand);
  color: var(--clay-deep);
}

.pack__cta:hover {
  background: var(--shell-deep);
  color: var(--clay-deep);
}

.pack--hero .pack__cta {
  background: var(--tan);
  color: var(--ink);
}

.pack--hero .pack__cta:hover {
  background: #eed3b3;
  color: var(--ink);
}

/* Packages sit last in the DOM order of their own section; keep the CTA
   aligned across cards of unequal length. */
.pack__lines {
  flex: 1 1 auto;
}

.price-note {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-50);
  margin: 18px 0 0;
}

/* --- Guarantee ------------------------------------------------------------ */

.guarantee {
  padding: clamp(36px, 4.6vw, 64px) 0 0;
}

.guarantee__card {
  background: var(--sand);
  border-radius: var(--radius-card);
  padding: clamp(26px, 3.6vw, 52px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}

.guarantee__badge {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--tan);
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee__kicker {
  color: var(--clay-deep);
}

.guarantee__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 12px 0 10px;
  max-width: 26ch;
}

.guarantee__body {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink-75);
  max-width: 62ch;
  text-wrap: pretty;
}

/* --- FAQ ------------------------------------------------------------------ */

.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}

.faq__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.8vw, 50px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 14px 0 0;
  max-width: 18ch;
}

.faq__list {
  display: grid;
  gap: 12px;
}

.faq__item {
  border-radius: 20px;
  overflow: hidden;
  background: var(--shell);
}

.faq__item.is-open {
  background: var(--white);
  box-shadow: 0 8px 22px rgba(36, 22, 16, 0.07);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.faq__sign {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--clay-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.faq__answer {
  margin: 0;
  padding: 0 24px 22px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-72);
  max-width: 64ch;
  text-wrap: pretty;
}

/* --- Final CTA ------------------------------------------------------------ */

.final {
  padding: clamp(40px, 6vw, 88px) 0 clamp(28px, 4vw, 48px);
}

.final__card {
  background: var(--ink);
  color: var(--cream);
  border-radius: 34px;
  padding: clamp(32px, 5vw, 80px);
  text-align: center;
}

.final__pill {
  background: var(--on-ink-12);
  color: var(--tan);
}

.final__pill .pill__dot {
  background: var(--tan);
}

.final__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 22px auto 0;
  max-width: 20ch;
  text-wrap: balance;
}

.final__body {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--on-ink-72);
  margin: 20px auto 0;
  max-width: 52ch;
  text-wrap: pretty;
}

.final__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.button--onInk {
  padding: 20px 46px;
  background: var(--cream-button);
  color: var(--ink);
  font-size: 18.5px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.button--onInk:hover {
  background: #fff;
  color: var(--ink);
}

.final__sub {
  font-size: 14px;
  color: var(--on-ink-60);
}

.footer-note {
  text-align: center;
  font-size: 13.5px;
  color: var(--ink-50);
  padding-top: 26px;
}

/* --- Responsive ----------------------------------------------------------- */

@media (max-width: 960px) {
  .how,
  .offer,
  .faq {
    grid-template-columns: minmax(0, 1fr);
  }

  .how__visual {
    aspect-ratio: 16 / 10;
  }

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

  .pack--hero {
    order: -1;
  }
}

@media (max-width: 700px) {
  .grid-3,
  .menu__groups,
  .packs,
  .benefits__grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .hero__title {
    font-size: clamp(36px, 11vw, 56px);
  }

  .menu__head {
    align-items: flex-start;
  }
}
