:root {
  --white: #fffdf9;
  --bone: #f4eee8;
  --blush: #ead7d4;
  --rose: #c99692;
  --clay: #95615e;
  --wine: #5c3030;
  --ink: #252120;
  --muted: #756d69;
  --line: rgba(63, 44, 41, 0.13);
  --serif: "Iowan Old Style", "Baskerville", Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1320px;
}

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

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

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

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

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

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

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

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

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

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

.v2-kicker {
  color: var(--clay);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.image-shell {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--bone), var(--blush));
}

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

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

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

/* Header */
.v2-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 9px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 253, 249, 0.82);
  backdrop-filter: blur(18px);
}

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

.v2-wordmark__mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.62rem;
  font-style: normal;
  letter-spacing: -0.08em;
}

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

.v2-toggle a {
  padding: 6px 8px;
  border-radius: 999px;
  color: var(--muted);
}

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

/* Hero — emotion only */
.v2-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #9f7772;
  color: white;
}

.v2-hero__image,
.v2-hero__shade {
  position: absolute;
  inset: 0;
}

.v2-hero__image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.v2-hero__image img {
  height: 100%;
  object-fit: cover;
  object-position: 86% center;
  filter: saturate(0.8) contrast(0.95);
}

.v2-hero__shade {
  background: linear-gradient(
    180deg,
    rgba(23, 16, 15, 0.02) 44%,
    rgba(42, 27, 26, 0.9) 72%,
    rgba(42, 27, 26, 0.98) 100%
  );
}

.v2-hero__copy {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 92px;
  left: 18px;
  max-width: 330px;
}

.v2-hero--product {
  background: var(--paper);
  color: var(--wine);
}

.v2-hero--product .v2-hero__image {
  bottom: 30%;
  padding: 76px 18px 10px;
  background: white;
}

.v2-hero--product .v2-hero__image img {
  object-fit: contain;
  object-position: center;
  filter: none;
}

.v2-hero--product .v2-hero__shade {
  background: linear-gradient(180deg, transparent 58%, var(--paper) 78%);
}

.v2-hero.v2-hero--product .v2-kicker,
.v2-hero--product .v2-scroll {
  color: var(--muted);
}

.v2-hero--product h1 {
  color: var(--wine);
}

.v2-hero .v2-kicker {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.v2-hero h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 13vw, 4.6rem);
  line-height: 0.94;
  text-wrap: balance;
}

.v2-scroll {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 30px;
  display: flex;
  gap: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 699px) {
  .v2-hero__image img {
    object-position: center;
  }
}

/* Ease */
.v2-space {
  width: min(100% - 36px, var(--max));
  margin-inline: auto;
}

.v2-ease {
  display: grid;
  min-height: 120svh;
  align-content: center;
  gap: 70px;
  padding-block: 130px;
}

.v2-ease__copy {
  max-width: 540px;
}

.v2-ease h2,
.v2-connection h2,
.v2-collection h2,
.v2-touch h2,
.v2-meaning h2,
.v2-footer h2 {
  color: var(--wine);
  font-size: clamp(3rem, 12vw, 7.2rem);
  line-height: 0.96;
}

.v2-ease .v2-kicker,
.v2-connection .v2-kicker,
.v2-collection .v2-kicker,
.v2-touch .v2-kicker,
.v2-meaning .v2-kicker {
  margin-bottom: 24px;
}

.v2-ease__copy > p:last-child,
.v2-connection__copy > p:last-child,
.v2-touch__copy > p:last-child,
.v2-meaning__copy > p:last-child {
  margin-top: 24px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
}

.v2-ease__image {
  width: 82%;
  margin-left: auto;
  aspect-ratio: 0.82;
}

.v2-ease__image img {
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

/* Connection */
.v2-connection {
  position: relative;
  display: grid;
  min-height: 110svh;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.v2-connection__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 60%;
}

.v2-connection__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 16, 15, 0.02), rgba(20, 16, 15, 0.55));
  content: "";
}

.v2-connection__image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78);
}

.v2-connection__copy {
  position: relative;
  z-index: 2;
  width: min(100% - 36px, var(--max));
  margin-inline: auto;
  padding-bottom: 74px;
}

.v2-connection .v2-kicker {
  color: rgba(255, 255, 255, 0.62);
}

.v2-connection h2 {
  max-width: 690px;
  color: white;
}

.v2-connection__lines,
.v2-meaning__lines {
  margin-top: 30px;
}

.v2-connection__lines p,
.v2-meaning__lines p {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--serif);
  font-size: 1.04rem;
  font-style: italic;
  line-height: 1.7;
}

.v2-connection__copy > p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

/* Quiet collection */
.v2-collection {
  width: min(100% - 36px, var(--max));
  margin-inline: auto;
  padding-block: 150px;
}

.v2-collection__heading {
  max-width: 820px;
  margin-bottom: 100px;
}

.v2-portraits {
  display: grid;
  gap: 90px;
}

.v2-portrait {
  min-width: 0;
}

.v2-portrait__image {
  aspect-ratio: 0.84;
  background: #f8f4f1;
}

.v2-portrait__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.v2-portrait--set .v2-portrait__image img {
  object-fit: contain;
}

.v2-portrait:hover img {
  transform: scale(1.018);
}

.v2-portrait figcaption {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 6px 18px;
  padding-top: 20px;
}

.v2-portrait figcaption span {
  grid-column: 1 / -1;
  color: var(--clay);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.v2-portrait h3 {
  color: var(--wine);
  font-size: 1.65rem;
}

.v2-portrait small {
  color: var(--muted);
  font-size: 0.67rem;
}

/* Touch */
.v2-touch {
  display: grid;
  min-height: 110svh;
  align-items: center;
  gap: 70px;
  padding: 130px 18px;
  background: var(--bone);
}

.v2-touch__copy {
  max-width: 500px;
}

.v2-touch__image {
  aspect-ratio: 0.84;
}

.v2-touch__image img {
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.5);
}

.v2-touch__image--corrected {
  background: white;
}

.v2-touch__image--corrected img {
  object-fit: contain;
  object-position: center;
  transform: none;
}

/* Meaning */
.v2-meaning {
  width: 100%;
  overflow: hidden;
  background: var(--white);
}

.v2-meaning__image {
  aspect-ratio: 1.48;
}

.v2-meaning__image img {
  height: 100%;
  object-fit: cover;
}

.v2-meaning__copy {
  max-width: 650px;
  padding: 90px 18px 140px;
}

.v2-meaning__lines p {
  color: var(--muted);
}

/* Coda */
.v2-footer {
  display: grid;
  min-height: 82svh;
  place-content: center;
  padding: 110px 18px 50px;
  background: var(--wine);
  color: white;
  text-align: center;
}

.v2-footer .v2-kicker {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.58);
}

.v2-footer h2 {
  margin-bottom: 50px;
  color: white;
}

.v2-footer > a {
  justify-self: center;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.v2-footer small {
  margin-top: 100px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (min-width: 700px) {
  .v2-header {
    min-height: 72px;
    padding-inline: 32px;
  }

  .v2-toggle {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }

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

  .v2-hero__copy {
    right: auto;
    bottom: 12vh;
    left: 6vw;
    max-width: min(45vw, 650px);
  }

  .v2-hero--product .v2-hero__image {
    top: 72px;
    bottom: 0;
    left: 38%;
    padding: 4vh 5vw 4vh 0;
  }

  .v2-hero--product .v2-hero__shade {
    background: linear-gradient(
      90deg,
      var(--paper) 0%,
      rgba(255, 253, 249, 0.94) 34%,
      rgba(255, 253, 249, 0.18) 60%,
      transparent 74%
    );
  }

  .v2-hero__image img {
    object-position: 72% center;
  }

  .v2-hero__shade {
    background:
      linear-gradient(180deg, rgba(23, 16, 15, 0.02) 42%, rgba(23, 16, 15, 0.52) 100%),
      linear-gradient(90deg, rgba(35, 22, 21, 0.42), rgba(35, 22, 21, 0.08) 58%, transparent 76%);
  }

  .v2-hero h1 {
    max-width: 9ch;
    font-size: clamp(4.4rem, 7vw, 6.8rem);
  }

  .v2-scroll {
    right: 6vw;
    bottom: 42px;
  }

  .v2-space,
  .v2-collection {
    width: min(100% - 80px, var(--max));
  }

  .v2-ease {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 10vw;
  }

  .v2-ease__image {
    width: 100%;
    aspect-ratio: 0.78;
  }

  .v2-connection__copy {
    width: min(100% - 80px, var(--max));
    padding-bottom: 11vh;
  }

  .v2-connection__image {
    width: 66%;
    height: 100%;
  }

  .v2-connection__image::after {
    background: linear-gradient(90deg, rgba(20, 16, 15, 0.52), transparent 42%);
  }

  .v2-portraits {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    gap: 24px;
  }

  .v2-portrait:nth-child(2) {
    margin-top: 100px;
  }

  .v2-touch {
    grid-template-columns: 0.72fr 1.28fr;
    gap: 9vw;
    padding-inline: max(40px, calc((100vw - var(--max)) / 2));
  }

  .v2-touch__image {
    aspect-ratio: 1.2;
  }

  .v2-meaning {
    position: relative;
    display: grid;
    min-height: 100svh;
    align-items: center;
    padding: 0;
  }

  .v2-meaning__image {
    position: absolute;
    inset: 0;
    height: 100%;
    aspect-ratio: auto;
  }

  .v2-meaning__copy {
    position: relative;
    z-index: 2;
    width: min(39vw, 570px);
    margin-right: max(6vw, calc((100vw - var(--max)) / 2));
    margin-left: auto;
    padding: 0;
  }

  .v2-meaning h2 {
    font-size: clamp(4rem, 5.4vw, 6.4rem);
  }
}

@media (min-width: 1100px) {
  .v2-header {
    padding-inline: 4.5vw;
  }

  .v2-hero__image img {
    object-position: center;
  }

  .v2-hero h1 {
    font-size: clamp(5rem, 6.7vw, 7rem);
  }

  .v2-ease {
    padding-block: 170px;
  }

  .v2-ease__copy {
    align-self: start;
    margin-top: 18vh;
  }

  .v2-ease__image {
    max-height: 820px;
  }

  .v2-collection {
    padding-block: 190px;
  }

  .v2-collection__heading {
    margin-left: 9%;
  }

  .v2-connection__image img {
    object-position: center;
  }

  .v2-touch {
    padding-block: 170px;
  }
}

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

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