:root {
  --espresso: #24130d;
  --coffee: #3b2116;
  --brown: #7a3f20;
  --cognac: #aa6534;
  --caramel: #d79a5b;
  --cream: #fff4e6;
  --milk: #f7e4ce;
  --paper: #fffbf5;
  --white: #ffffff;
  --muted: #80685a;
  --line: #ead2ba;
  --danger: #bb2f22;
  --shadow: 0 18px 42px rgba(36, 19, 13, 0.18);
  --shadow-soft: 0 10px 24px rgba(59, 33, 22, 0.1);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top, rgba(215, 154, 91, 0.22), transparent 34rem),
    linear-gradient(135deg, #25140e 0%, #4a291a 48%, #1b0e0a 100%);
  color: var(--espresso);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.landing {
  position: relative;
  width: min(480px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 244, 230, 0.96), rgba(255, 251, 245, 1) 36rem),
    var(--paper);
  box-shadow: 0 0 70px rgba(0, 0, 0, 0.32);
}

.topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  background: var(--espresso);
  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
}

.hero {
  padding: 20px 16px 30px;
}

.hero__brand {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 22px;
  color: var(--coffee);
}

.hero__brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-style: italic;
  font-weight: 700;
}

.hero__brand small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--cognac);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--espresso);
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 12px;
  font-size: 38px;
}

h2 {
  margin-bottom: 12px;
  font-size: 30px;
}

h3 {
  margin-bottom: 6px;
  color: var(--coffee);
  font-size: 17px;
}

.hero__headline p:not(.eyebrow),
.image-story p:not(.eyebrow),
.final-order__head p {
  color: var(--muted);
  font-size: 16px;
}

.hero__photo {
  position: relative;
  overflow: hidden;
  margin: 20px 0 0;
  border: 1px solid rgba(122, 63, 32, 0.18);
  border-radius: var(--radius);
  background: var(--milk);
  box-shadow: var(--shadow);
}

.hero__photo img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.hero__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 8px 12px;
  border-radius: var(--radius);
  background: var(--danger);
  color: var(--white);
  font-size: 22px;
  font-weight: 950;
  box-shadow: var(--shadow-soft);
}

.offer-card {
  position: relative;
  z-index: 2;
  margin: -28px 12px 16px;
  overflow: hidden;
  border: 1px solid rgba(122, 63, 32, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 251, 245, 0.96);
  box-shadow: var(--shadow);
}

.price-row {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  border-bottom: 1px solid var(--line);
}

.price-row div,
.timer {
  padding: 14px;
}

.price-row div:first-child {
  border-right: 1px solid var(--line);
}

.price-row span,
.timer span {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-row del {
  color: #9c7c6a;
  font-size: 17px;
  font-weight: 800;
}

.price-row strong {
  color: var(--danger);
  font-size: 27px;
  line-height: 1;
}

.timer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.timer span {
  margin-bottom: 0;
}

.timer b {
  color: var(--coffee);
  font-size: 25px;
  font-variant-numeric: tabular-nums;
}

.timer i {
  font-style: normal;
}

.order-form {
  display: grid;
  gap: 12px;
}

.order-form--hero {
  margin-top: 16px;
}

.order-form label {
  display: grid;
  gap: 6px;
  color: var(--coffee);
  font-size: 13px;
  font-weight: 850;
}

.order-form input,
.order-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--espresso);
  box-shadow: inset 0 1px 0 rgba(122, 63, 32, 0.04);
}

.order-form input::placeholder {
  color: #b09482;
}

.order-form input:focus,
.order-form select:focus {
  outline: 2px solid rgba(170, 101, 52, 0.38);
  border-color: var(--cognac);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  width: 100%;
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--cognac), var(--brown));
  color: var(--white);
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(122, 63, 32, 0.28);
}

.button:disabled {
  opacity: 0.72;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.trust-row div {
  padding: 12px 8px;
  border: 1px solid rgba(122, 63, 32, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.trust-row b,
.trust-row span {
  display: block;
}

.trust-row b {
  color: var(--coffee);
  font-size: 17px;
}

.trust-row span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: 34px 16px;
  border-top: 1px solid rgba(122, 63, 32, 0.14);
}

.section > p:not(.eyebrow),
.section article p {
  color: var(--muted);
}

.benefit-list,
.review-list,
.step-list,
.kit-box {
  display: grid;
  gap: 10px;
}

.benefit-list article,
.review-list article,
.kit-box,
.step-list div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.benefit-list article,
.review-list article {
  padding: 16px;
}

.benefit-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 12px;
}

.benefit-list article span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--coffee);
  color: var(--cream);
  font-size: 12px;
  font-weight: 950;
}

.benefit-list article p,
.review-list article p {
  margin-bottom: 0;
}

.image-story {
  padding-top: 0;
}

.image-story img {
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
}

.color-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 18px 0 12px;
}

.color-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}

.color-btn.is-active {
  border-color: var(--brown);
  color: var(--coffee);
  box-shadow: 0 8px 20px rgba(122, 63, 32, 0.16);
}

.swatch {
  width: 18px;
  height: 18px;
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(36, 19, 13, 0.18);
}

.swatch--cognac {
  background: var(--cognac);
}

.swatch--black {
  background: #080706;
}

.color-cards {
  display: grid;
  gap: 12px;
}

.color-card {
  display: grid;
  grid-template-columns: 122px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  opacity: 0.7;
  box-shadow: var(--shadow-soft);
}

.color-card.is-active {
  border-color: var(--brown);
  opacity: 1;
}

.color-card img {
  aspect-ratio: 1;
  border-radius: 6px;
  object-fit: cover;
}

.color-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.kit-box {
  overflow: hidden;
  gap: 0;
}

.kit-box div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 15px;
  border-bottom: 1px solid var(--line);
}

.kit-box div:last-child {
  border-bottom: 0;
}

.kit-box span {
  color: var(--muted);
}

.kit-box strong {
  color: var(--coffee);
  text-align: right;
}

.review-list article b,
.review-list article span {
  display: block;
}

.review-list article b {
  margin-bottom: 2px;
  color: var(--coffee);
}

.review-list article span {
  margin-bottom: 8px;
  color: var(--cognac);
  font-size: 13px;
  font-weight: 900;
}

.step-list div {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  padding: 13px;
}

.step-list b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--caramel);
  color: var(--espresso);
}

.step-list span {
  color: var(--coffee);
  font-weight: 850;
}

.final-order {
  margin: 12px 16px 26px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--espresso);
  color: var(--cream);
  box-shadow: var(--shadow);
}

.final-order h2 {
  color: var(--cream);
}

.final-order .eyebrow {
  color: var(--caramel);
}

.final-order__head p {
  color: rgba(255, 244, 230, 0.72);
}

.final-order .order-form label {
  color: rgba(255, 244, 230, 0.82);
}

.final-order .order-form input,
.final-order .order-form select {
  border-color: rgba(255, 244, 230, 0.2);
  background: rgba(255, 244, 230, 0.1);
  color: var(--cream);
}

.final-order .order-form select option {
  color: var(--espresso);
}

.final-order .order-form input::placeholder {
  color: rgba(255, 244, 230, 0.44);
}

.form-note {
  margin: 0;
  color: rgba(255, 244, 230, 0.64);
  font-size: 12px;
  text-align: center;
}

.sticky-cta {
  position: sticky;
  right: 12px;
  bottom: 10px;
  left: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 12px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--cognac), var(--brown));
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(36, 19, 13, 0.32);
}

.sticky-cta span {
  font-size: 13px;
  font-weight: 850;
}

.sticky-cta b {
  font-size: 20px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 16px 80px;
  color: var(--muted);
  font-size: 13px;
}

.footer p {
  margin-bottom: 0;
}

.footer a {
  color: var(--brown);
  font-weight: 900;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 18px;
}

.thanks {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  text-align: center;
}

.thanks h1 {
  font-size: 44px;
}

@media (min-width: 760px) {
  .landing {
    margin-top: 22px;
    margin-bottom: 22px;
    border-radius: 10px;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 27px;
  }

  .price-row strong {
    font-size: 24px;
  }

  .color-card {
    grid-template-columns: 104px 1fr;
  }
}
