:root {
  --ink: #10231f;
  --muted: #62706b;
  --line: #e0ded9;
  --paper: #fffaf4;
  --white: #ffffff;
  --sage: #647c68;
  --sage-deep: #2d4d40;
  --rose: #b76763;
  --rose-soft: #f1d7d2;
  --clay: #c58c68;
  --cream: #f5e8d6;
  --cta: #f5c84c;
  --cta-deep: #d69a20;
  --shadow: 0 22px 70px rgba(16, 35, 31, 0.14);
  --max: 1180px;
  --gutter: clamp(18px, 4vw, 36px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

button,
input {
  font: inherit;
}

.announce {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.announce__track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.announce span {
  padding: 10px 18px;
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 15px clamp(18px, 4vw, 52px);
  background: rgba(255, 250, 244, 0.86);
  border-bottom: 1px solid rgba(16, 35, 31, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero__actions,
.hero__stats,
.choice-row,
.order__safe {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
}

.brand__mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-family: "Playfair Display", serif;
  font-size: 21px;
}

.nav {
  gap: 8px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(16, 35, 31, 0.08);
  border-radius: 999px;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.nav__cta {
  color: var(--ink);
  background: var(--cta);
  box-shadow: 0 10px 24px rgba(214, 154, 32, 0.28);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: center;
  padding: clamp(38px, 5vw, 64px) clamp(18px, 5vw, 72px) clamp(30px, 5vw, 58px);
  overflow: hidden;
}

.hero__copy {
  min-width: 0;
  max-width: 620px;
}

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

.hero h1,
.section h2,
.delivery h2,
.reviews h2,
.order h2,
.thanks h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(62px, 12vw, 138px);
  overflow-wrap: break-word;
}

.hero__lead {
  max-width: 570px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
}

.hero__price {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
}

.hero__price-now {
  color: var(--ink);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 900;
  line-height: 0.9;
}

.hero__price-now small {
  font-size: 0.42em;
}

.hero__price-old {
  color: var(--muted);
  font-size: 22px;
  font-weight: 800;
  text-decoration: line-through;
}

.hero__price-save {
  padding: 8px 11px;
  color: var(--white);
  background: var(--rose);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

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

.btn--dark,
.btn--submit {
  color: var(--ink);
  background: linear-gradient(180deg, #ffd96b 0%, var(--cta) 100%);
  border-color: var(--cta-deep);
  box-shadow:
    0 16px 34px rgba(214, 154, 32, 0.3),
    0 0 0 4px rgba(245, 200, 76, 0.2);
}

.btn--ghost {
  background: transparent;
}

.hero__stats {
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0 0;
}

.hero__stats div {
  min-width: 132px;
  padding: 14px 16px;
  border: 1px solid rgba(16, 35, 31, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.hero__stats dt {
  margin: 0;
  font-size: 23px;
  font-weight: 800;
}

.hero__stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hero__media {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.86fr);
  gap: 16px;
  align-items: end;
}

.hero__img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero__img--main {
  aspect-ratio: 4 / 5;
  height: clamp(520px, 50vw, 680px);
}

.hero__img--side {
  aspect-ratio: 3 / 4;
  height: clamp(460px, 44vw, 610px);
  transform: translateY(28px);
}

.hero__note {
  position: absolute;
  right: 6%;
  bottom: 7%;
  width: min(210px, 44vw);
  padding: 16px;
  background: var(--white);
  border: 1px solid rgba(16, 35, 31, 0.1);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(16, 35, 31, 0.16);
}

.hero__note b,
.hero__note span,
.hero__note em {
  display: block;
}

.hero__note b {
  font-size: 28px;
  line-height: 1;
}

.hero__note span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-decoration: line-through;
}

.hero__note em {
  margin-top: 7px;
  color: var(--sage-deep);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(42px, 6vw, 74px);
}

.trust__item {
  min-height: 126px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(16, 35, 31, 0.06);
}

.trust__item b {
  display: block;
  font-size: 18px;
}

.trust__item span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 110px) var(--gutter);
}

.section__head {
  min-width: 0;
  max-width: 690px;
  margin-bottom: 34px;
}

.section h2,
.delivery h2,
.reviews h2,
.order h2 {
  font-size: clamp(38px, 6vw, 72px);
  overflow-wrap: break-word;
}

.section__head p:not(.eyebrow),
.details__text p,
.delivery span,
.order__note,
.reviews__head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.9fr);
  gap: 22px;
  align-items: stretch;
}

.story-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
}

.story-photo img,
.lookbook img,
.details__media img,
.order__media img,
.color-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-photo--wide {
  min-height: 540px;
}

.fit-list {
  display: grid;
  gap: 12px;
}

.fit-list div {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.fit-list span {
  color: var(--rose);
  font-size: 12px;
  font-weight: 800;
}

.fit-list b {
  display: block;
  margin-top: 10px;
  font-size: 22px;
}

.fit-list p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.color-showcase,
.details,
.order {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 24px;
  align-items: stretch;
}

.color-main {
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
}

.color-main img {
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.color-main.is-changing img {
  opacity: 0.45;
  transform: scale(1.015);
}

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

.color-option {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 14px;
  align-items: center;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
}

.color-option.active {
  border-color: var(--sage);
  box-shadow: inset 0 0 0 1px var(--sage);
}

.color-option small {
  display: block;
  grid-column: 2;
  margin-top: 3px;
  color: var(--muted);
}

.swatch {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(16, 35, 31, 0.14);
  border-radius: 50%;
}

.swatch--cream {
  background: #ead7ba;
}

.swatch--pink {
  background: #d7989e;
}

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

.swatch--mocha {
  background: #9d8471;
}

.lookbook {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 8px clamp(18px, 4vw, 36px);
  background: var(--ink);
}

.lookbook img {
  aspect-ratio: 1;
  border-radius: 8px;
}

.details {
  align-items: center;
}

.details__text {
  padding-right: clamp(0px, 4vw, 40px);
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rose);
}

.details__media {
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
}

.delivery {
  padding: clamp(58px, 8vw, 100px) clamp(18px, 4vw, 36px);
  background: #eef3ec;
}

.delivery__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: 42px;
  max-width: var(--max);
  margin: 0 auto;
}

.delivery-steps {
  display: grid;
  gap: 12px;
}

.delivery-steps div {
  padding: 20px;
  background: var(--white);
  border: 1px solid rgba(45, 77, 64, 0.12);
  border-radius: 8px;
}

.delivery b {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.reviews {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(52px, 7vw, 92px) var(--gutter);
}

.reviews__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 30px;
}

.reviews__head .section__head {
  margin-bottom: 0;
}

.review-score {
  padding: 22px;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.review-score span,
.review-score small {
  display: block;
  color: #f1ded6;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.review-score b {
  display: block;
  margin: 8px 0 5px;
  font-size: clamp(42px, 5vw, 58px);
  line-height: 0.95;
}

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

.review {
  display: flex;
  min-width: 0;
  min-height: 248px;
  flex-direction: column;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(16, 35, 31, 0.08);
}

.review__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--rose);
  font-size: 14px;
  font-weight: 900;
}

.review__top small,
.review > small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.review p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.65;
}

.review b {
  display: block;
  margin-top: auto;
}

.order {
  max-width: var(--max);
  margin: 0 auto clamp(58px, 8vw, 105px);
  padding: 0 var(--gutter);
}

.order__media {
  min-height: 680px;
  overflow: hidden;
  border-radius: 8px;
}

.order__form {
  align-self: center;
  padding: clamp(24px, 4vw, 40px);
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.order__form .eyebrow,
.order__note {
  color: #f3d7c8;
}

.order__form label,
.choice-group > span {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 800;
}

.order__form input {
  width: 100%;
  min-height: 52px;
  margin-top: 8px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  outline: none;
}

.order__form input:focus {
  box-shadow: 0 0 0 3px rgba(243, 215, 200, 0.35);
}

.order__price {
  margin: 18px 0 4px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.order__price span,
.order__price small {
  display: block;
  color: #f1ded6;
  font-size: 13px;
  font-weight: 700;
}

.order__price b {
  display: block;
  margin: 4px 0;
  color: var(--white);
  font-size: 34px;
  line-height: 1;
}

.choice-row {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.choice-row button {
  min-height: 42px;
  padding: 10px 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

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

.choice-row--sizes button {
  min-width: 48px;
}

.btn--submit {
  width: 100%;
  margin-top: 22px;
}

.btn--submit:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: #f7ded6;
  font-size: 14px;
  line-height: 1.45;
}

.form-status.error {
  color: #ffc8bb;
}

.form-status.success {
  color: #d5f2d8;
}

.order__safe {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.order__safe span {
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: #f1ebe3;
  font-size: 12px;
  font-weight: 700;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 4vw, 52px);
  color: var(--white);
  background: var(--ink);
  font-weight: 700;
}

.thanks {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(16, 35, 31, 0.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.thanks.show {
  opacity: 1;
  pointer-events: auto;
}

.thanks__panel {
  position: relative;
  width: min(520px, 100%);
  padding: 34px;
  background: var(--paper);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.thanks__close {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 8px 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.thanks__mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--sage-deep);
  border-radius: 50%;
  font-size: 26px;
  font-weight: 900;
}

.thanks p {
  color: var(--muted);
  line-height: 1.6;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 19;
  display: none;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  color: var(--ink);
  background: linear-gradient(180deg, #ffd96b 0%, var(--cta) 100%);
  border: 1px solid rgba(116, 72, 0, 0.22);
  border-radius: 999px;
  box-shadow:
    0 18px 44px rgba(16, 35, 31, 0.28),
    0 0 0 5px rgba(245, 200, 76, 0.22);
  font-weight: 900;
}

.sticky-cta.show {
  display: inline-flex;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .site-header {
    gap: 12px;
  }

  .nav {
    display: none;
  }

  .hero,
  .story-grid,
  .color-showcase,
  .details,
  .delivery__inner,
  .order {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero__media {
    order: -1;
  }

  .trust,
  .review-grid,
  .reviews__head {
    grid-template-columns: 1fr;
  }

  .review-score {
    max-width: 360px;
  }

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

  .order__media,
  .color-main,
  .details__media {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  :root {
    --gutter: 14px;
  }

  .announce span {
    padding-inline: 13px;
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand {
    font-size: 16px;
  }

  .brand__mark {
    width: 32px;
    height: 32px;
  }

  .hero {
    gap: 22px;
    padding: 16px var(--gutter) 38px;
  }

  .hero h1 {
    font-size: clamp(50px, 16vw, 68px);
  }

  .hero__lead {
    margin-top: 18px;
    font-size: 16px;
  }

  .hero__price {
    display: none;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    margin-top: 22px;
  }

  .hero__stats {
    display: grid;
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 20px;
  }

  .hero__stats div {
    min-width: 0;
    padding: 12px 8px;
  }

  .hero__stats dt {
    font-size: 18px;
  }

  .hero__stats dd {
    font-size: 11px;
    line-height: 1.25;
  }

  .hero__actions .btn {
    width: 100%;
    min-width: 0;
  }

  .hero__media {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero__img--main {
    aspect-ratio: 1 / 1.04;
    height: auto;
    object-position: 54% 52%;
  }

  .hero__img--side {
    display: none;
  }

  .hero__note {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 10px;
    align-items: center;
    width: 100%;
    padding: 14px;
  }

  .hero__note b {
    flex: 0 0 100%;
    font-size: 28px;
  }

  .hero__note span {
    margin-top: 0;
  }

  .hero__note em {
    margin-top: 0;
    padding: 8px 10px;
    background: #edf4ec;
    border-radius: 999px;
    font-size: 12px;
  }

  .trust {
    padding-bottom: 34px;
  }

  .trust__item {
    min-height: auto;
    padding: 18px;
  }

  .reviews {
    padding-top: 42px;
  }

  .section h2,
  .delivery h2,
  .reviews h2,
  .order h2 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .story-photo--wide,
  .order__media,
  .color-main,
  .details__media {
    min-height: 350px;
  }

  .order__media {
    height: 350px;
  }

  .color-showcase {
    gap: 10px;
  }

  .color-main {
    min-height: 0;
    aspect-ratio: 1.42 / 1;
    background: #f7f3ed;
  }

  .color-main img {
    height: 100%;
    object-fit: contain;
  }

  .color-options {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .color-option {
    min-width: 0;
    min-height: 74px;
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: center;
    gap: 6px;
    padding: 8px 4px;
    text-align: center;
  }

  .color-option b {
    width: 100%;
    overflow-wrap: anywhere;
    font-size: 12px;
    line-height: 1.1;
  }

  .color-option small {
    display: none;
  }

  .swatch {
    width: 28px;
    height: 28px;
  }

  .review-score {
    max-width: none;
    padding: 18px;
  }

  .review-grid {
    gap: 12px;
  }

  .review {
    min-height: auto;
    padding: 20px;
  }

  .lookbook {
    gap: 6px;
    padding-inline: 6px;
  }

  .order__form {
    padding: 24px 18px;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    width: auto;
  }

  .footer {
    flex-direction: column;
    padding-inline: 18px;
  }
}
