/* ════════════════════════════════════════════════════
   Agnieszka Belczyk — Strateg Wizerunku
   Editorial · white · black · red · bluesky
   ════════════════════════════════════════════════════ */

:root {
  --bg: #ffffff; /* pure white */
  --bg-2: #ffffff; /* pure white */
  --ink: #000000; /* pure black */
  --ink-soft: #1a1a1a;
  --mute: #6b6b6b;
  --line: #000000;

  --brown: #c8001a; /* vivid deep red */
  --coral: #ff1322; /* vivid red */
  --coral-2: #ff4a55;
  --blush: #ffe4e6;
  --teal: #c8001a;
  --bluesky: #7adaff;

  --accent: var(--coral);

  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "Hanken Grotesk", system-ui, sans-serif;
  --script: "Caveat", cursive;

  --maxw: 100%;
  --pad: clamp(20px, 4vw, 56px);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
::selection {
  background: var(--coral);
  color: var(--bg);
}

/* ── grain overlay ────────────────────────────── */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ── nav ─────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad);
  background: color-mix(in srgb, var(--bg) 75%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 8%, transparent);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.nav__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
}
.nav__links a {
  position: relative;
}
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}
.nav__links a:not(.nav__cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav__cta {
  background: var(--coral);
  color: var(--bg) !important;
  padding: 4px 4px 4px 20px;
  border-radius: 100px;
  font-weight: 500;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  transition:
    background 0.3s,
    transform 0.3s;
}
.nav__cta:hover {
  background: var(--ink);
  transform: translateY(-1px);
}
.nav__cta:hover .btn__arrow {
  transform: translateX(2px);
}
.btn__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--ink);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  transition:
    background 0.3s,
    color 0.3s,
    transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}
.btn__arrow svg {
  display: block;
}
@media (max-width: 720px) {
  .nav__links a:not(.nav__cta) {
    display: none;
  }
  .nav__name {
    display: none;
  }
}

/* ════════════════════ HERO ════════════════════ */
.hero {
  position: relative;
  padding: clamp(80px, 11vh, 110px) var(--pad) clamp(24px, 4vh, 40px);
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: stretch;
  gap: clamp(24px, 4vw, 80px);
  max-width: var(--maxw);
  margin: 0 auto;
  overflow: hidden;
}
.hero__left,
.hero__right {
  flex: 1 1 50%;
  min-width: 0;
  position: relative;
}
.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(14px, 2.4vh, 24px);
}
.hero__right {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--coral) 60%, transparent);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--coral) 60%, transparent);
  }
  70% {
    box-shadow: 0 0 0 12px transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}

.hero__title {
  font-family: var(--serif);
  font-weight: 360;
  font-size: min(6.2vw, 9.5vh, 84px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-variation-settings:
    "SOFT" 50,
    "opsz" 144;
  color: var(--ink);
}
.hero__title span {
  display: block;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  font-variation-settings:
    "SOFT" 100,
    "opsz" 144;
  color: var(--coral);
}
.hero__title u {
  text-decoration: none;
  background-image: linear-gradient(
    transparent 62%,
    var(--coral) 62%,
    var(--coral) 78%,
    transparent 78%
  );
  padding: 0 0.04em;
}
.hero__title--alt {
  font-style: italic;
  font-weight: 320;
}
.hero__title--alt em {
  font-style: normal;
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) var(--d, 0s) forwards;
}
@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

.hero__photo {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  animation: floaty 9s ease-in-out infinite;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 220px 220px 24px 24px;
  filter: saturate(1.05) contrast(1.02);
  box-shadow: 0 40px 90px -40px rgba(45, 25, 12, 0.5);
}
.hero__photo::before {
  content: "";
  position: absolute;
  inset: 22px 22px 22px 22px;
  border-radius: 200px 200px 16px 16px;
  border: 1px solid color-mix(in srgb, var(--bg) 60%, transparent);
  pointer-events: none;
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero__sticker {
  position: absolute;
  top: 28px;
  right: -28px;
  background: var(--coral);
  color: var(--bg);
  padding: 18px 22px 22px;
  border-radius: 4px;
  transform: rotate(6deg);
  box-shadow:
    0 18px 40px -16px rgba(216, 65, 42, 0.55),
    0 2px 0 rgba(0, 0, 0, 0.12);
  font-family: var(--serif);
  line-height: 1;
  z-index: 3;
}
.hero__sticker-line {
  display: block;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero__sticker-line + .hero__sticker-line {
  margin-top: 4px;
}
.hero__sticker-script {
  display: block;
  margin-top: 10px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  line-height: 0.9;
  font-weight: 380;
  letter-spacing: -0.01em;
  text-transform: none;
  transform: rotate(-3deg) translateX(8px);
}

.hero__loop {
  position: absolute;
  left: -70px;
  top: 36%;
  width: 160px;
  height: 100px;
  color: var(--brown);
  opacity: 0;
  animation: drawIn 1.4s ease-out 1s forwards;
}
@keyframes drawIn {
  from {
    opacity: 0;
    transform: rotate(-12deg) scale(0.8);
  }
  to {
    opacity: 0.8;
    transform: rotate(-6deg) scale(1);
  }
}

.hero__signature {
  font-family: "Ms Madi", var(--script);
  font-weight: 400;
  font-size: 128px;
  color: var(--coral);
  line-height: 0.9;
  letter-spacing: -0.01em;
  white-space: nowrap;
  pointer-events: none;
  margin-top: auto;
}
.hero__signature em {
  font-style: normal;
  margin-left: 0.3em;
}
.hero__signature-line {
  display: none;
}
@keyframes scaleX {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.hero__intro {
  max-width: 56ch;
  font-size: clamp(14px, 1.05vw, 16px);
  color: var(--ink-soft);
  border-top: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
  padding-top: min(22px, 2vh);
}

.hero__cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--coral);
  color: var(--bg);
  padding: 8px 8px 8px 24px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition:
    transform 0.4s cubic-bezier(0.7, 0, 0.3, 1),
    background 0.3s;
  position: relative;
}
.hero__cta:hover {
  background: var(--ink);
  transform: translateY(-2px);
}
.hero__cta:hover .btn__arrow {
  transform: translateX(3px);
}

.hero__corner {
  position: absolute;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mute);
}
.hero__corner--tl {
  top: 110px;
  right: var(--pad);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero__corner--br {
  bottom: 28px;
  right: var(--pad);
}

@media (max-width: 880px) {
  .hero {
    flex-direction: column;
    padding-top: 100px;
    height: auto;
    min-height: 100svh;
    overflow: visible;
  }
  .hero__left,
  .hero__right {
    flex: none;
    width: 100%;
  }
  .hero__photo {
    aspect-ratio: 4/5;
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
  }
  .hero__signature {
    font-size: clamp(70px, 18vw, 130px);
  }
  .hero__corner--tl {
    display: none;
  }
  .hero__sticker {
    right: -10px;
    top: 14px;
  }
}

/* ════════════════════ MANIFEST ════════════════════ */
.manifest {
  position: relative;
  padding: 120px var(--pad);
  background: var(--coral);
  color: var(--bg);
  overflow: hidden;
}
.manifest::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 480px;
  height: 480px;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--coral) 30%, transparent),
    transparent 70%
  );
  pointer-events: none;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}
.eyebrow span {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--coral);
}
.eyebrow--light {
  color: color-mix(in srgb, var(--bg) 60%, transparent);
}
.eyebrow--light span {
  color: var(--coral-2);
}

.manifest__title {
  font-family: var(--serif);
  font-weight: 320;
  font-size: clamp(40px, 7vw, 116px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  font-variation-settings:
    "SOFT" 30,
    "opsz" 144;
  max-width: 14ch;
  margin-bottom: 60px;
}
.manifest__title span {
  display: block;
}
.manifest__big {
  color: var(--ink);
}
.manifest__alt {
  font-style: italic;
  font-weight: 280;
  padding-left: clamp(40px, 8vw, 140px);
}
.manifest__alt em {
  font-style: normal;
  color: var(--bluesky);
  font-weight: 380;
}
.manifest__alt u {
  text-decoration: none;
  background-image: linear-gradient(
    transparent 60%,
    color-mix(in srgb, var(--coral) 45%, transparent) 60%
  );
}

.manifest__photo {
  position: absolute;
  right: var(--pad);
  top: 50%;
  transform: translateY(-50%) rotate(2deg);
  width: 50vw;
  max-width: 720px;
  z-index: 1;
}
.manifest__photo img {
  width: 100%;
  border-radius: 4px;
  filter: grayscale(0.15) contrast(1.05);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7);
}
.manifest__tape {
  position: absolute;
  width: 80px;
  height: 22px;
  background: color-mix(in srgb, var(--blush) 70%, transparent);
  backdrop-filter: blur(2px);
  border: 1px solid color-mix(in srgb, var(--bg) 40%, transparent);
}
.manifest__tape--1 {
  top: -12px;
  left: 20%;
  transform: rotate(-6deg);
}
.manifest__tape--2 {
  bottom: -12px;
  right: 20%;
  transform: rotate(4deg);
}

@media (max-width: 1100px) {
  .manifest__photo {
    display: none;
  }
}

.manifest__body {
  max-width: 56ch;
  font-size: clamp(16px, 1.4vw, 22px);
  line-height: 1.5;
  border-left: 2px solid var(--coral);
  padding-left: 24px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.ticker {
  margin-top: 100px;
  border-top: 1px solid color-mix(in srgb, var(--bg) 20%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--bg) 20%, transparent);
  padding: 22px 0;
  overflow: hidden;
}
.ticker__track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  font-weight: 340;
  color: color-mix(in srgb, var(--bg) 90%, transparent);
  animation: tick 36s linear infinite;
  width: max-content;
}
.ticker__track span:nth-child(even) {
  color: var(--bluesky);
  font-style: normal;
}
@keyframes tick {
  to {
    transform: translateX(-50%);
  }
}

/* ════════════════════ OFFER ════════════════════ */
.offer {
  padding: 100px var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}

.offer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px clamp(40px, 6vw, 110px);
  align-items: start;
}

.offer__title {
  font-family: var(--serif);
  font-weight: 320;
  font-size: clamp(44px, 6vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  font-variation-settings:
    "SOFT" 60,
    "opsz" 144;
}
.offer__title em {
  font-style: italic;
  color: var(--coral);
  font-weight: 320;
}

.offer__list {
  list-style: none;
  border-top: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
}
.offer__list li {
  padding: 28px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
  display: grid;
  grid-template-columns: 50px 1fr;
  column-gap: 12px;
  position: relative;
  transition: padding-left 0.4s cubic-bezier(0.7, 0, 0.3, 1);
  cursor: default;
}
.offer__list li > h3,
.offer__list li > p {
  grid-column: 2;
}
.offer__num {
  grid-column: 1;
  grid-row: 1 / span 2;
}
.offer__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: var(--coral);
  opacity: 0;
  transition:
    width 0.5s cubic-bezier(0.7, 0, 0.3, 1),
    opacity 0.3s;
}
.offer__list li:hover {
  padding-left: 18px;
}
.offer__list li:hover::before {
  width: 4px;
  opacity: 1;
}
.offer__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--coral);
  font-weight: 400;
  padding-top: 4px;
}
.offer__list h3 {
  font-family: var(--serif);
  font-weight: 420;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.005em;
  margin-bottom: 6px;
}
.offer__list p {
  color: var(--ink-soft);
  font-size: 15.5px;
  max-width: 50ch;
}

.offer__visual {
  position: relative;
}
.offer__photo {
  position: relative;
  margin-top: -0.4em;
  border-radius: 4px;
  overflow: visible;
}
.offer__photo img {
  width: 100%;
  border-radius: 4px;
  filter: contrast(1.04) saturate(1.05);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.35);
}
.offer__photo-badge {
  position: absolute;
  bottom: -32px;
  left: -28px;
  background: var(--coral);
  color: var(--bg);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 420;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.05;
  padding: 22px 28px;
  border-radius: 100%;
  width: clamp(150px, 13vw, 190px);
  height: clamp(150px, 13vw, 190px);
  display: grid;
  place-items: center;
  text-align: center;
  transform: rotate(-8deg);
  box-shadow: 0 18px 40px -16px rgba(255, 19, 34, 0.55);
  z-index: 3;
}
.offer__photo-badge em {
  font-style: normal;
  font-weight: 500;
  display: block;
  font-size: 1.4em;
  line-height: 1;
}

@media (max-width: 880px) {
  .offer__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .offer__photo-badge {
    left: 0;
    bottom: -24px;
    width: 130px;
    height: 130px;
    font-size: 16px;
  }
}

/* ════════════════════ WHY ════════════════════ */
.why {
  background: var(--bluesky);
  color: var(--ink);
  padding: 140px var(--pad);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: "";
  position: absolute;
  inset: 40px;
  border: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
  pointer-events: none;
}

.why__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  position: relative;
}

.why__photo {
  position: relative;
}
.why__photo img {
  width: 100%;
  border-radius: 200px 200px 4px 4px;
  filter: contrast(1.05);
  box-shadow: 0 50px 100px -40px rgba(0, 0, 0, 0.5);
}
.why__photo::after {
  content: "";
  position: absolute;
  inset: -20px;
  border: 1px solid color-mix(in srgb, var(--ink) 28%, transparent);
  border-radius: 220px 220px 8px 8px;
  pointer-events: none;
}

.why__title {
  font-family: var(--serif);
  font-weight: 320;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variation-settings:
    "SOFT" 70,
    "opsz" 144;
  margin-bottom: 28px;
}
.why__strike {
  display: inline;
}
.why__strike {
  text-decoration: line-through;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 2px;
  opacity: 0.5;
}

.why__lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 360;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  margin-bottom: 36px;
  color: var(--ink);
}

.why__pillars {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: color-mix(in srgb, var(--ink) 22%, transparent);
  border: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
  margin-bottom: 32px;
}
.why__pillars li {
  background: var(--bluesky);
  padding: 28px 26px;
  font-family: var(--serif);
  font-weight: 420;
  font-size: clamp(18px, 1.6vw, 22px);
  display: flex;
  align-items: center;
  gap: 18px;
  transition:
    background 0.3s,
    color 0.3s;
}
.why__pillars li:hover {
  background: var(--coral);
  color: var(--bg);
}
.why__pillars li:hover .why__check {
  background: var(--bg);
  color: var(--coral);
  border-color: var(--bg);
  transform: rotate(-8deg) scale(1.05);
}
.why__check {
  flex: 0 0 auto;
  width: clamp(38px, 3vw, 46px);
  height: clamp(38px, 3vw, 46px);
  background: var(--ink);
  color: var(--bluesky);
  border: 2px solid var(--ink);
  border-radius: 8px;
  display: grid;
  place-items: center;
  box-shadow: 4px 4px 0 0 color-mix(in srgb, var(--ink) 25%, transparent);
  transition:
    background 0.3s,
    color 0.3s,
    transform 0.3s,
    border-color 0.3s;
}
.why__check svg {
  width: 70%;
  height: 70%;
  display: block;
}
.why .eyebrow {
  color: color-mix(in srgb, var(--ink) 70%, transparent);
}
.why .eyebrow--light span {
  color: var(--coral);
}
.why__title .why__strike {
  text-decoration-color: var(--coral);
  opacity: 0.6;
}

.why__outro {
  font-size: clamp(15px, 1.2vw, 17px);
  color: color-mix(in srgb, var(--ink) 75%, transparent);
  max-width: 56ch;
}

@media (max-width: 880px) {
  .why__inner {
    grid-template-columns: 1fr;
  }
  .why__photo {
    max-width: 380px;
    margin: 0 auto;
  }
  .why__pillars {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════ PRICING ════════════════════ */
.pricing {
  padding: 140px var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}

.pricing__title {
  font-family: var(--serif);
  font-weight: 320;
  font-size: clamp(40px, 5.6vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  font-variation-settings:
    "SOFT" 60,
    "opsz" 144;
  margin-bottom: 24px;
  max-width: 18ch;
}
.pricing__title em {
  font-style: italic;
  color: var(--coral);
}

.pricing__lede {
  max-width: 60ch;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.15vw, 17px);
  margin-bottom: 64px;
  border-top: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
  padding-top: 22px;
}

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

.card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  transition:
    transform 0.5s cubic-bezier(0.7, 0, 0.3, 1),
    box-shadow 0.5s,
    background 0.4s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -25px rgba(45, 25, 12, 0.3);
}

.card--featured {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: translateY(-12px);
}
.card--featured:hover {
  transform: translateY(-18px);
}

.card__ribbon {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--coral);
  color: var(--bg);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

.card header {
  margin-bottom: 24px;
  border-bottom: 1px solid color-mix(in srgb, currentColor 18%, transparent);
  padding-bottom: 22px;
}
.card__tag {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--coral);
  margin-bottom: 6px;
}
.card h3 {
  font-family: var(--serif);
  font-weight: 380;
  font-size: 28px;
  letter-spacing: -0.01em;
}

.card__price {
  font-family: var(--serif);
  font-weight: 360;
  font-size: clamp(36px, 3.8vw, 52px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.card__price small {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  opacity: 0.6;
}
.card__from {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 380;
  font-size: 22px;
  color: var(--coral);
  margin-right: 4px;
}

.card ul {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}
.card ul li {
  padding: 10px 0 10px 24px;
  position: relative;
  font-size: 15px;
  border-bottom: 1px dashed color-mix(in srgb, currentColor 14%, transparent);
}
.card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 9px;
  font-family: var(--serif);
  color: var(--coral);
  font-weight: 500;
}

.card__cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  align-self: flex-start;
  transition:
    gap 0.3s,
    color 0.3s;
}
.card__cta:hover {
  color: var(--coral);
}

.pricing__note {
  margin-top: 32px;
  font-size: 13px;
  color: var(--mute);
  font-style: italic;
  max-width: 70ch;
}

@media (max-width: 880px) {
  .cards {
    grid-template-columns: 1fr;
  }
  .card--featured {
    transform: none;
  }
  .card--featured:hover {
    transform: translateY(-6px);
  }
}

/* ════════════════════ CONTACT ════════════════════ */
.contact {
  background: var(--ink);
  color: var(--bg);
  padding: 140px var(--pad) 100px;
  position: relative;
  overflow: hidden;
}

.contact__title {
  font-family: var(--serif);
  font-weight: 320;
  font-size: clamp(44px, 7vw, 110px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  font-variation-settings:
    "SOFT" 60,
    "opsz" 144;
  max-width: var(--maxw);
  margin: 0 auto 24px;
}
.contact__title em {
  font-style: italic;
  color: var(--coral);
}
.contact__sub {
  max-width: var(--maxw);
  margin: 0 auto 64px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 24px);
  color: color-mix(in srgb, var(--bg) 70%, transparent);
}

.contact__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: color-mix(in srgb, var(--bg) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--bg) 14%, transparent);
}
.contact__card {
  background: var(--ink);
  padding: 36px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 14px;
  transition:
    background 0.4s,
    color 0.4s;
  position: relative;
}
.contact__card:hover {
  background: var(--coral);
  color: var(--bg);
}
.contact__card:hover .contact__label {
  color: color-mix(in srgb, var(--bg) 75%, transparent);
}
.contact__label {
  grid-column: 1 / -1;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--bg) 50%, transparent);
}
.contact__value {
  font-family: var(--serif);
  font-weight: 380;
  font-size: clamp(18px, 1.7vw, 24px);
  letter-spacing: -0.005em;
}
.contact__arrow {
  font-size: 22px;
  align-self: center;
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}
.contact__card:hover .contact__arrow {
  transform: translate(4px, -4px);
}

@media (max-width: 880px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
}

.marquee {
  margin-top: 80px;
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid color-mix(in srgb, var(--bg) 14%, transparent);
}
.marquee__track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(60px, 9vw, 140px);
  font-weight: 320;
  color: color-mix(in srgb, var(--bg) 95%, transparent);
  animation: tick 32s linear infinite;
  width: max-content;
  letter-spacing: -0.02em;
}
.marquee__track span:nth-child(even) {
  color: var(--coral);
}

/* ════════════════════ FOOTER ════════════════════ */
.foot {
  padding: 28px var(--pad);
  background: var(--ink);
  color: color-mix(in srgb, var(--bg) 60%, transparent);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  border-top: 1px solid color-mix(in srgb, var(--bg) 14%, transparent);
  flex-wrap: wrap;
  gap: 12px;
}
.foot__heart {
  color: var(--coral);
}

/* ════════════════════ Reveal on scroll ════════════════════ */
.in-view-init {
  opacity: 0;
  transform: translateY(40px);
}
.in-view {
  opacity: 1;
  transform: none;
  transition:
    opacity 1s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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