/* ---------- Foundation ---------- */
:root {
  --paper: #fffdfb;
  --paper-deep: #f9f2ef;
  --blush: #f5dfdf;
  --rose: #d8a7a4;
  --rose-deep: #a96260;
  --wine: #6d3535;
  --ink: #2e2525;
  --muted: #756969;
  --line: rgba(92, 55, 55, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1240px;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --shadow: 0 22px 60px rgba(91, 53, 53, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--rose-deep);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--ink);
  color: white;
}

.skip-link:focus {
  transform: none;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--rose-deep);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section {
  width: min(100% - 36px, var(--max));
  margin-inline: auto;
  padding-block: 92px;
}

.section-heading {
  max-width: 670px;
  margin-bottom: 44px;
}

.section-heading h2,
.features__intro h2,
.lifestyle__copy h2,
.gifting__copy h2 {
  margin-bottom: 22px;
  color: var(--wine);
  font-size: clamp(2.8rem, 10vw, 5.8rem);
}

.section-heading > p:last-child,
.features__intro > p:last-child,
.lifestyle__copy > p,
.gifting__copy > p {
  max-width: 570px;
  color: var(--muted);
  font-size: 1rem;
}

.image-shell {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(237, 210, 207, 0.72)),
    var(--paper-deep);
}

.image-shell.image-missing::after,
.image-missing::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--rose-deep);
  content: "Passion Pulse image";
  font-family: var(--serif);
  font-size: 1.2rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Navigation ---------- */
.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 10px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 253, 251, 0.86);
  box-shadow: 0 8px 28px rgba(70, 41, 41, 0.04);
  backdrop-filter: blur(18px);
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  white-space: nowrap;
}

.wordmark__monogram {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--rose);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.72rem;
  font-style: normal;
  letter-spacing: -0.08em;
}

.site-nav {
  display: none;
}

.preview-pill {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.version-toggle {
  display: flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 251, 0.7);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.version-toggle a {
  padding: 6px 8px;
  border-radius: 999px;
  color: var(--muted);
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.version-toggle a:hover {
  color: var(--wine);
}

.version-toggle a.is-active {
  background: var(--wine);
  color: white;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  padding: 118px 18px 42px;
  background: #e9c9c6;
}

.hero__media,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(0.8) contrast(0.9);
}

.hero__veil {
  background:
    linear-gradient(180deg, rgba(82, 43, 43, 0.05), rgba(68, 34, 34, 0.42)),
    linear-gradient(90deg, rgba(255, 247, 244, 0.95) 0%, rgba(255, 247, 244, 0.76) 52%, rgba(255, 247, 244, 0.06) 90%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 24px;
  color: var(--wine);
  font-size: clamp(3.45rem, 14vw, 7.5rem);
}

.hero h1 span {
  display: block;
}

.hero__subtitle {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__copy {
  max-width: 510px;
  margin-bottom: 30px;
  color: #574b4b;
  font-size: 0.97rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--wine);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}

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

.button--primary {
  background: var(--wine);
  color: white;
}

.button--primary:hover {
  background: #542727;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.3);
  color: var(--wine);
  backdrop-filter: blur(8px);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.7);
}

.hero__model-strip {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 34px;
  left: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 18px;
  background: rgba(255, 250, 248, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-model {
  min-width: 0;
}

.image-shell--mini {
  aspect-ratio: 1;
  margin-bottom: 7px;
  border-radius: 11px;
}

.image-shell--mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-model span {
  display: block;
  overflow: hidden;
  padding-inline: 3px;
  color: var(--muted);
  font-size: 0.52rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-model strong {
  display: block;
  color: var(--ink);
  font-size: 0.61rem;
}

.scroll-cue {
  display: none;
}

/* ---------- Product line ---------- */
.collection {
  position: relative;
}

.product-grid {
  display: grid;
  gap: 38px;
}

.product-card {
  min-width: 0;
}

.product-card__media {
  aspect-ratio: 0.96;
  margin-bottom: 22px;
  border-radius: var(--radius-md);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.2, 0.65, 0.2, 1);
}

.product-card:hover .product-card__media img {
  transform: scale(1.025);
}

.product-card__index,
.product-card__badge {
  position: absolute;
  z-index: 1;
  top: 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 251, 0.86);
  color: var(--wine);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.product-card__index {
  left: 14px;
  padding: 6px 9px;
}

.product-card__badge {
  right: 14px;
  padding: 6px 10px;
}

.product-card__body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.product-card__tier {
  margin-bottom: 6px;
  color: var(--rose-deep);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 0;
  color: var(--wine);
  font-size: 2rem;
}

.product-card__price {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 700;
  white-space: nowrap;
}

.product-card__tagline {
  margin: 10px 0 18px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-style: italic;
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.keyword-list li {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 600;
}

/* ---------- Comparison ---------- */
.comparison {
  width: 100%;
  max-width: none;
  padding-inline: 18px;
  background: var(--paper-deep);
}

.comparison .section-heading {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.table-wrap {
  width: min(100%, var(--max));
  margin-inline: auto;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 16px 45px rgba(99, 60, 60, 0.05);
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}

th,
td {
  padding: 16px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.76rem;
}

th:last-child,
td:last-child {
  border-right: 0;
}

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

thead th {
  padding-block: 22px;
  background: rgba(255, 255, 255, 0.72);
}

thead th:first-child {
  width: 20%;
  color: var(--muted);
  font-size: 0.63rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

thead span {
  display: block;
  margin-bottom: 5px;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 1.18rem;
}

thead small {
  color: var(--rose-deep);
  font-size: 0.57rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

tbody th {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.is-premium,
td:last-child {
  background: rgba(224, 180, 178, 0.13);
}

.price-row td {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 1.2rem;
}

/* ---------- A+ features ---------- */
.features__intro {
  max-width: 760px;
  margin-bottom: 46px;
}

.feature-grid {
  display: grid;
  gap: 18px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
}

.feature-card__media {
  aspect-ratio: 1.35;
}

.feature-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.feature-card:hover img {
  transform: scale(1.025);
}

.feature-card__copy {
  padding: 22px;
}

.feature-card__copy span {
  display: block;
  margin-bottom: 9px;
  color: var(--rose-deep);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-card h3 {
  margin-bottom: 12px;
  color: var(--wine);
  font-size: 1.85rem;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

/* ---------- Lifestyle ---------- */
.lifestyle {
  padding: 92px 18px;
  background: var(--wine);
  color: white;
}

.lifestyle__copy {
  width: min(100%, var(--max));
  margin: 0 auto 42px;
}

.lifestyle__copy .eyebrow {
  color: #eac4c1;
}

.lifestyle__copy h2 {
  color: white;
}

.lifestyle__copy > p {
  color: rgba(255, 255, 255, 0.68);
}

.lifestyle__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.lifestyle__notes span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.61rem;
}

.lifestyle__gallery {
  display: grid;
  width: min(100%, var(--max));
  margin-inline: auto;
  gap: 10px;
}

.lifestyle-shot {
  min-height: 240px;
  margin: 0;
  border-radius: var(--radius-sm);
}

.lifestyle-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lifestyle-shot--action {
  aspect-ratio: 1 / 1.1;
}

.lifestyle-shot--social,
.lifestyle-shot--weekend {
  aspect-ratio: 1.45;
}

/* ---------- Gifting ---------- */
.gifting {
  display: grid;
  gap: 54px;
}

.gifting__media {
  position: relative;
  min-height: 430px;
}

.gift-shot {
  margin: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.gift-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gift-shot--main {
  width: 92%;
  aspect-ratio: 1.15;
}

.gift-shot--detail {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 41%;
  aspect-ratio: 0.92;
  border: 8px solid var(--paper);
}

.gifting__copy {
  align-self: center;
}

.gift-list {
  margin: 36px 0 0;
}

.gift-list div {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.gift-list div:last-child {
  border-bottom: 1px solid var(--line);
}

.gift-list dt {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.gift-list dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

/* ---------- Footer ---------- */
.footer {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: 46px 18px;
  border-top: 1px solid var(--line);
  background: var(--paper-deep);
  color: var(--muted);
  font-size: 0.7rem;
  text-align: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--wine);
  text-align: left;
}

.footer__brand p {
  margin: 0;
  line-height: 1.45;
}

.footer a {
  color: var(--wine);
  font-weight: 700;
}

/* ---------- Larger screens ---------- */
@media (min-width: 640px) {
  .section {
    width: min(100% - 64px, var(--max));
  }

  .site-header {
    padding-inline: 32px;
  }

  .site-nav {
    display: flex;
    gap: 26px;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 600;
  }

  .site-nav a {
    transition: color 0.2s ease;
  }

  .site-nav a:hover {
    color: var(--wine);
  }

  .hero {
    padding-inline: 7vw;
  }

  .hero__model-strip {
    right: 5vw;
    bottom: 42px;
    left: auto;
    width: min(46vw, 480px);
  }

  .hero-model span,
  .hero-model strong {
    display: inline;
    font-size: 0.64rem;
  }

  .hero-model strong {
    margin-right: 4px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 20px;
  }

  .product-card--featured {
    grid-column: 1 / -1;
    width: calc(50% - 10px);
    margin-inline: auto;
  }

  .comparison {
    padding-inline: 32px;
  }

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

  .feature-card--wide {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.55fr 0.75fr;
  }

  .feature-card--wide:nth-child(4) {
    grid-template-columns: 0.75fr 1.55fr;
  }

  .feature-card--wide:nth-child(4) .feature-card__media {
    grid-column: 2;
    grid-row: 1;
  }

  .feature-card--wide .feature-card__media {
    aspect-ratio: auto;
    min-height: 310px;
  }

  .feature-card--wide .feature-card__copy {
    align-self: center;
    padding: 34px;
  }

  .lifestyle {
    padding-inline: 32px;
  }

  .lifestyle__gallery {
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: repeat(2, minmax(210px, 1fr));
  }

  .lifestyle-shot--action {
    grid-row: 1 / 3;
    aspect-ratio: auto;
  }

  .lifestyle-shot--social,
  .lifestyle-shot--weekend {
    aspect-ratio: auto;
  }

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

  .footer__brand {
    justify-content: flex-start;
  }

  .footer a {
    text-align: right;
  }
}

@media (min-width: 960px) {
  .section {
    padding-block: 138px;
  }

  .site-header {
    min-height: 74px;
    padding-inline: 4.5vw;
  }

  .preview-pill {
    padding: 7px 13px;
  }

  .version-toggle {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .version-toggle a {
    padding: 7px 12px;
  }

  .hero {
    min-height: 100svh;
    padding-top: max(150px, 17vh);
  }

  .hero__background {
    object-position: center 42%;
  }

  .hero__content {
    width: 55%;
  }

  .hero h1 {
    font-size: clamp(5.6rem, 8.2vw, 8.8rem);
  }

  .hero__subtitle {
    font-size: 0.92rem;
  }

  .hero__copy {
    font-size: 1.05rem;
  }

  .hero__model-strip {
    right: 4.5vw;
    bottom: 5vh;
    width: min(32vw, 450px);
  }

  .scroll-cue {
    position: absolute;
    z-index: 3;
    bottom: 42px;
    left: 7vw;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(60, 43, 43, 0.74);
    font-size: 0.59rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .scroll-cue i {
    display: block;
    width: 54px;
    height: 1px;
    background: currentColor;
  }

  .section-heading {
    margin-bottom: 70px;
  }

  .section-heading h2,
  .features__intro h2,
  .lifestyle__copy h2,
  .gifting__copy h2 {
    font-size: clamp(4.6rem, 6.2vw, 6.8rem);
  }

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

  .product-card--featured {
    grid-column: auto;
    width: auto;
    margin: 0;
  }

  .product-card:nth-child(2) {
    margin-top: 70px;
  }

  .product-card__media {
    border-radius: 30px;
  }

  .comparison {
    padding-inline: 4vw;
  }

  th,
  td {
    padding: 21px 24px;
    font-size: 0.84rem;
  }

  .features {
    display: grid;
    grid-template-columns: 0.78fr 1.55fr;
    align-items: start;
    gap: 64px;
  }

  .features__intro {
    position: sticky;
    top: 120px;
    margin: 0;
  }

  .features__intro h2 {
    font-size: clamp(3.8rem, 5vw, 5.7rem);
  }

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

  .feature-card--wide {
    display: block;
    grid-column: auto;
  }

  .feature-card--wide:nth-child(4) .feature-card__media {
    grid-column: auto;
    grid-row: auto;
  }

  .feature-card--wide .feature-card__media {
    min-height: 0;
    aspect-ratio: 1.35;
  }

  .feature-card:nth-child(2),
  .feature-card:nth-child(4) {
    transform: translateY(54px);
  }

  .js .feature-card:nth-child(2),
  .js .feature-card:nth-child(4) {
    transform: translateY(78px);
  }

  .js .feature-card:nth-child(2).is-visible,
  .js .feature-card:nth-child(4).is-visible {
    transform: translateY(54px);
  }

  .lifestyle {
    display: grid;
    grid-template-columns: minmax(300px, 0.65fr) minmax(620px, 1.4fr);
    gap: 70px;
    align-items: center;
    padding: 138px max(4vw, calc((100vw - var(--max)) / 2));
  }

  .lifestyle__copy {
    margin: 0;
  }

  .lifestyle__copy h2 {
    font-size: clamp(4rem, 5.4vw, 6.3rem);
  }

  .lifestyle__gallery {
    width: 100%;
  }

  .gifting {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 90px;
  }

  .gifting__media {
    min-height: 630px;
  }

  .gift-shot--main {
    height: 560px;
    aspect-ratio: auto;
  }

  .gift-shot--detail {
    width: 39%;
    height: 270px;
    aspect-ratio: auto;
  }

  .gift-list div {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 24px;
  }

  .footer {
    padding: 58px max(4vw, calc((100vw - var(--max)) / 2));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal,
  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}
