:root {
  --ink: #18151b;
  --graphite: #2d3038;
  --muted: #756f7b;
  --paper: #fff8f1;
  --soft-gray: #edf0f3;
  --warm-gray: #f5f1ec;
  --white: #ffffff;
  --sun: #ffb347;
  --coral: #ff6b5f;
  --pink: #ff2b91;
  --rose: #ffe3ef;
  --blue: #0077d9;
  --aqua: #63d7ff;
  --olive: #8fb45f;
  --line: rgba(24, 21, 27, 0.13);
  --shadow: 0 28px 80px rgba(24, 21, 27, 0.18);
  --radius: 18px;
  --max: 1160px;
  --parallax: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(255, 179, 71, 0.2), transparent 26rem),
    radial-gradient(circle at 88% 18%, rgba(99, 215, 255, 0.2), transparent 24rem),
    linear-gradient(145deg, var(--paper) 0%, var(--warm-gray) 46%, var(--soft-gray) 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -52px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
}

.skip-link:focus {
  top: 16px;
}

.site-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  width: min(var(--max), calc(100% - 32px));
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: rgba(255, 248, 241, 0.72);
  box-shadow: 0 16px 45px rgba(24, 21, 27, 0.14);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  animation: navDrop 780ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 950;
}

.brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--coral), var(--sun));
  border-radius: 50%;
}

.brand__name {
  letter-spacing: 0;
}

.menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.menu a,
.nav-toggle {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--graphite);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 850;
  transition: color 520ms ease, transform 520ms ease;
}

.menu a::before,
.nav-toggle::before {
  content: "";
  position: absolute;
  inset: 5px;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(135deg, rgba(255, 43, 145, 0.18), rgba(255, 179, 71, 0.22));
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.menu a:hover,
.menu a.is-active,
.nav-toggle:hover {
  color: var(--pink);
}

.menu a:hover::before,
.menu a.is-active::before,
.nav-toggle:hover::before {
  opacity: 1;
  transform: scale(1);
  animation: menuBreath 2.6s ease-in-out infinite;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  font: inherit;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px max(18px, calc((100% - var(--max)) / 2)) 38px;
  background: #f5d8ba;
}

.hero__image,
.hero__wash,
.hero__glow {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(calc(var(--parallax) * 0.18)) scale(1.04);
  transition: transform 160ms linear;
  animation: heroImageIn 1600ms ease-out both;
}

.hero__wash {
  background:
    linear-gradient(90deg, rgba(255, 248, 241, 0.96) 0%, rgba(255, 248, 241, 0.74) 30%, rgba(255, 248, 241, 0.08) 59%),
    linear-gradient(0deg, rgba(24, 21, 27, 0.48) 0%, rgba(24, 21, 27, 0) 44%);
}

.hero__glow {
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 72%, rgba(255, 43, 145, 0.18), transparent 18rem),
    radial-gradient(circle at 42% 92%, rgba(255, 179, 71, 0.18), transparent 22rem);
  mix-blend-mode: screen;
  animation: ambientGlow 8s ease-in-out infinite alternate;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 590px;
  padding-bottom: 78px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--pink);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(3.35rem, 10vw, 8.9rem);
  line-height: 0.84;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin: 0;
  font-size: clamp(2.3rem, 6vw, 5.6rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.8vw, 2.2rem);
  line-height: 0.98;
}

.hero__line {
  margin: 20px 0 0;
  color: var(--graphite);
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
  font-weight: 750;
}

.hero__content .eyebrow,
.hero__content h1,
.hero__line,
.hero__actions {
  opacity: 0;
  transform: translateY(34px);
  animation: riseIn 850ms cubic-bezier(0.2, 0.85, 0.2, 1) forwards;
}

.hero__content .eyebrow {
  animation-delay: 180ms;
}

.hero__content h1 {
  animation-delay: 330ms;
}

.hero__line {
  animation-delay: 510ms;
}

.hero__actions {
  animation-delay: 680ms;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  transition: transform 360ms ease, box-shadow 360ms ease, filter 360ms ease;
}

.button:hover {
  transform: translateY(-3px);
  filter: saturate(1.08);
}

.button--sun {
  color: var(--ink);
  background: linear-gradient(135deg, var(--sun), var(--coral));
  box-shadow: 0 18px 40px rgba(255, 107, 95, 0.28);
}

.button--glass {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
}

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

.scroll-cue {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.32), transparent 34%),
    rgba(24, 21, 27, 0.78);
  box-shadow: 0 18px 46px rgba(24, 21, 27, 0.22);
  backdrop-filter: blur(16px);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.92);
  transition: opacity 420ms ease, transform 420ms cubic-bezier(0.2, 0.85, 0.2, 1), background 420ms ease;
  animation: float 2.8s ease-in-out infinite;
}

.scroll-cue.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-cue:hover {
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.38), transparent 34%),
    linear-gradient(135deg, rgba(255, 43, 145, 0.9), rgba(255, 179, 71, 0.86));
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.vibe {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 34px;
  padding: 92px max(18px, calc((100% - var(--max)) / 2));
  background:
    linear-gradient(135deg, rgba(255, 248, 241, 0.9), rgba(237, 240, 243, 0.86)),
    var(--warm-gray);
}

.vibe::before,
.contact::before {
  content: "";
  position: absolute;
  width: 44vw;
  height: 44vw;
  min-width: 360px;
  min-height: 360px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(12px);
  opacity: 0.24;
  transform: translate3d(calc(var(--parallax) * -0.08), calc(var(--parallax) * 0.06), 0);
  animation: softDrift 12s ease-in-out infinite alternate;
}

.vibe::before {
  right: -16vw;
  top: -14vw;
  background: radial-gradient(circle, var(--rose), transparent 66%);
}

.vibe__text {
  align-self: end;
  font-size: 1.08rem;
}

.vibe__text p,
.format-list p,
.copy-stack p,
.contact__copy p,
.contact__copy li {
  color: var(--muted);
}

.routes {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 16px;
  padding: 0 max(18px, calc((100% - var(--max)) / 2)) 96px;
}

.route {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(24, 21, 27, 0.08);
  transition: transform 520ms cubic-bezier(0.2, 0.85, 0.2, 1), box-shadow 520ms ease;
}

.route::after,
.tile::after {
  content: "";
  position: absolute;
  inset: auto -20% -35% 20%;
  height: 55%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.32), transparent 62%);
  opacity: 0;
  transition: opacity 650ms ease, transform 650ms ease;
}

.route:hover,
.tile:hover,
.format-list article:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 80px rgba(24, 21, 27, 0.14);
}

.route:hover::after,
.tile:hover::after {
  opacity: 1;
  transform: translateY(-12px);
}

.route--wide {
  grid-row: span 2;
  min-height: 536px;
  color: var(--white);
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.24), transparent 32%),
    linear-gradient(135deg, var(--pink), var(--coral) 54%, var(--sun));
}

.route--pink {
  color: var(--white);
  background: var(--pink);
}

.route--blue {
  color: var(--white);
  background: var(--blue);
}

.route span {
  font-weight: 950;
  opacity: 0.72;
}

.route p {
  max-width: 540px;
  margin-bottom: 0;
  color: currentColor;
  opacity: 0.78;
}

.route--wide h3 {
  font-size: clamp(4rem, 10vw, 9rem);
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 94px 0;
}

.marta,
.formats {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: 38px;
  align-items: start;
}

.marta__story {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1fr);
  gap: 22px;
  align-items: end;
}

.marta__photo {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  margin: 0;
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.marta__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(24, 21, 27, 0.52), transparent 42%),
    radial-gradient(circle at 18% 16%, rgba(255, 179, 71, 0.2), transparent 32%);
  pointer-events: none;
}

.marta__photo img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  transition: transform 800ms cubic-bezier(0.2, 0.85, 0.2, 1);
}

.marta:hover .marta__photo img {
  transform: scale(1.08);
}

.marta__photo figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(24, 21, 27, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-size: 0.72rem;
  font-weight: 800;
}

.copy-stack {
  padding-top: 8px;
  font-size: 1.08rem;
}

.tiles {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0 max(18px, calc((100% - var(--max)) / 2)) 96px;
}

.tile {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 520ms cubic-bezier(0.2, 0.85, 0.2, 1), box-shadow 520ms ease;
}

.tile--quote {
  grid-column: span 2;
  color: var(--white);
  background: var(--ink);
}

.tile--quote p {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 0.92;
  font-weight: 950;
}

.tile--blue {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--aqua));
}

.tile p {
  margin-bottom: 0;
  color: var(--muted);
}

.tile--blue p,
.tile--blue .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.product {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 42px;
  align-items: center;
  margin: 0 max(18px, calc((100% - var(--max)) / 2)) 96px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: calc(var(--radius) + 12px);
  background:
    radial-gradient(circle at 78% 22%, rgba(99, 215, 255, 0.34), transparent 24rem),
    radial-gradient(circle at 12% 100%, rgba(255, 43, 145, 0.18), transparent 22rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(245, 241, 236, 0.74));
  box-shadow: var(--shadow);
}

.product::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -8%;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 179, 71, 0.28), transparent 66%);
  transform: translate3d(calc(var(--parallax) * -0.05), calc(var(--parallax) * 0.04), 0);
  pointer-events: none;
}

.product__copy,
.product__visual {
  position: relative;
  z-index: 1;
}

.product__copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
}

.product__copy ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 28px;
  list-style: none;
}

.product__copy li {
  position: relative;
  padding-left: 28px;
  color: var(--graphite);
  font-weight: 760;
}

.product__copy li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--sun));
}

.product__visual {
  display: grid;
  place-items: center;
  min-height: 520px;
  perspective: 1200px;
}

.ebook-cover {
  position: relative;
  width: min(360px, 86vw);
  aspect-ratio: 0.72;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 28px;
  color: var(--white);
  border-radius: 22px;
  background:
    linear-gradient(150deg, rgba(24, 21, 27, 0.18), rgba(24, 21, 27, 0.78)),
    radial-gradient(circle at 24% 18%, rgba(255, 179, 71, 0.9), transparent 28%),
    linear-gradient(135deg, var(--pink), var(--coral) 48%, var(--blue));
  box-shadow:
    28px 28px 70px rgba(24, 21, 27, 0.28),
    inset -10px 0 0 rgba(24, 21, 27, 0.14);
  transform: rotateY(-13deg) rotateZ(2deg);
  transition: transform 700ms cubic-bezier(0.2, 0.85, 0.2, 1);
}

.product:hover .ebook-cover {
  transform: rotateY(-7deg) rotateZ(0deg) translateY(-8px);
}

.ebook-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent 18%),
    radial-gradient(circle at 82% 8%, rgba(99, 215, 255, 0.55), transparent 22%);
  pointer-events: none;
}

.ebook-cover__label,
.ebook-cover h3,
.ebook-cover p,
.ebook-cover__road {
  position: relative;
  z-index: 1;
}

.ebook-cover__label {
  align-self: flex-start;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ebook-cover h3 {
  max-width: 260px;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 0.86;
}

.ebook-cover p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
  font-weight: 850;
}

.ebook-cover__road {
  position: absolute;
  left: -18%;
  right: -18%;
  bottom: 18%;
  height: 46%;
  border: 18px solid rgba(255, 255, 255, 0.72);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-18deg);
  opacity: 0.55;
}

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

.format-list article {
  position: relative;
  overflow: hidden;
  min-height: 152px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 118px;
  gap: 20px;
  align-items: center;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 520ms cubic-bezier(0.2, 0.85, 0.2, 1), box-shadow 520ms ease, border-color 520ms ease;
}

.format-list article::before {
  content: "";
  position: absolute;
  inset: auto -8% -38% 44%;
  height: 90%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 179, 71, 0.2), transparent 66%);
  opacity: 0;
  transition: opacity 520ms ease, transform 520ms ease;
}

.format-list article:hover {
  border-color: rgba(255, 43, 145, 0.28);
}

.format-list article:hover::before {
  opacity: 1;
  transform: translateY(-10px);
}

.format-list p {
  margin-bottom: 0;
}

.format-icon {
  position: relative;
  justify-self: end;
  width: 104px;
  height: 104px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.86), transparent 26%),
    linear-gradient(135deg, rgba(255, 43, 145, 0.88), rgba(255, 179, 71, 0.86));
  box-shadow: 0 18px 42px rgba(255, 107, 95, 0.22);
  transform: rotate(3deg);
  transition: transform 620ms cubic-bezier(0.2, 0.85, 0.2, 1), box-shadow 620ms ease;
}

.format-list article:hover .format-icon {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 28px 58px rgba(255, 107, 95, 0.28);
}

.format-icon::before,
.format-icon::after,
.format-icon span {
  position: absolute;
  content: "";
  display: block;
}

.format-icon--solo::before {
  left: 30px;
  top: 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
}

.format-icon--solo::after {
  left: 24px;
  top: 54px;
  width: 40px;
  height: 26px;
  border-radius: 18px 18px 10px 10px;
  background: var(--white);
}

.format-icon--solo span:first-child {
  right: 20px;
  top: 26px;
  width: 26px;
  height: 46px;
  border: 4px solid rgba(255, 255, 255, 0.72);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 28px 0 0;
  transform: rotate(22deg);
}

.format-icon--solo span:last-child {
  right: 22px;
  bottom: 21px;
  width: 36px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.format-icon--online {
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.82), transparent 24%),
    linear-gradient(135deg, var(--blue), var(--aqua));
  box-shadow: 0 18px 42px rgba(0, 119, 217, 0.22);
}

.format-icon--online::before {
  left: 22px;
  top: 27px;
  width: 60px;
  height: 42px;
  border: 5px solid var(--white);
  border-radius: 12px;
}

.format-icon--online::after {
  left: 36px;
  bottom: 24px;
  width: 34px;
  height: 5px;
  border-radius: 999px;
  background: var(--white);
}

.format-icon--online span:first-child {
  left: 46px;
  top: 40px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 15px solid var(--white);
}

.format-icon--online span:last-child {
  right: 17px;
  top: 18px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--sun);
}

.format-icon--live {
  background:
    radial-gradient(circle at 25% 22%, rgba(255, 255, 255, 0.82), transparent 23%),
    linear-gradient(135deg, var(--olive), var(--sun));
  box-shadow: 0 18px 42px rgba(143, 180, 95, 0.24);
}

.format-icon--live::before {
  left: 24px;
  bottom: 25px;
  width: 56px;
  height: 36px;
  border-radius: 30px 30px 12px 12px;
  background: var(--white);
}

.format-icon--live::after {
  left: 40px;
  top: 22px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 24px 8px 0 rgba(255, 255, 255, 0.74), -20px 10px 0 rgba(255, 255, 255, 0.7);
}

.format-icon--live span:first-child {
  left: 22px;
  top: 24px;
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255, 255, 255, 0.66);
  border-radius: 50%;
}

.format-icon--live span:nth-child(2) {
  right: 20px;
  top: 25px;
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255, 255, 255, 0.66);
  border-radius: 50%;
}

.format-icon--live span:last-child {
  left: 36px;
  bottom: 19px;
  width: 34px;
  height: 5px;
  border-radius: 999px;
  background: rgba(24, 21, 27, 0.16);
}

.contact {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 32px;
  padding: 92px max(18px, calc((100% - var(--max)) / 2));
  background:
    linear-gradient(135deg, rgba(255, 179, 71, 0.15), rgba(99, 215, 255, 0.18)),
    linear-gradient(145deg, var(--paper), var(--soft-gray));
}

.contact::before {
  left: -18vw;
  bottom: -22vw;
  background: radial-gradient(circle, rgba(99, 215, 255, 0.85), transparent 66%);
}

.contact__copy ul {
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.contact__copy li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.contact__form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact__form label {
  display: grid;
  gap: 7px;
  color: var(--graphite);
  font-weight: 850;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(24, 21, 27, 0.16);
  border-radius: 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.contact__form textarea {
  resize: vertical;
}

.check {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  color: var(--muted) !important;
  font-size: 0.9rem;
}

.check input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
  accent-color: var(--pink);
}

.form-message {
  display: none;
  margin: 0;
  padding: 12px 14px;
  color: #155a3a !important;
  background: #e8faee;
  border-radius: 14px;
  font-weight: 850;
}

.form-message.is-visible {
  display: block;
}

.footer {
  padding: 30px max(18px, calc((100% - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.68);
  background: var(--ink);
}

.footer p {
  margin: 8px 0;
}

.footer strong {
  color: var(--white);
}

[data-cms] {
  scroll-margin-top: 96px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 780ms ease, transform 780ms cubic-bezier(0.2, 0.85, 0.2, 1);
}

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

@keyframes riseIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translate(-50%, -18px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes heroImageIn {
  from {
    filter: saturate(0.86) contrast(0.92);
    transform: translateY(-10px) scale(1.08);
  }
}

@keyframes menuBreath {
  0%,
  100% {
    opacity: 0.72;
  }
  50% {
    opacity: 1;
  }
}

@keyframes ambientGlow {
  from {
    opacity: 0.16;
    transform: translate3d(-10px, 8px, 0);
  }
  to {
    opacity: 0.34;
    transform: translate3d(16px, -8px, 0);
  }
}

@keyframes softDrift {
  from {
    scale: 0.95;
  }
  to {
    scale: 1.08;
  }
}

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

  .hero__image {
    transform: none;
  }
}

@media (max-width: 920px) {
  .site-nav {
    align-items: flex-start;
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    justify-content: flex-start;
  }

  .hero {
    align-items: start;
    min-height: 760px;
  }

  .hero__wash {
    background:
      linear-gradient(180deg, rgba(255, 248, 241, 0.97) 0%, rgba(255, 248, 241, 0.76) 44%, rgba(255, 248, 241, 0.04) 72%),
      linear-gradient(0deg, rgba(24, 21, 27, 0.48) 0%, rgba(24, 21, 27, 0) 44%);
  }

  .hero__content {
    padding-top: 64px;
    padding-bottom: 0;
  }

  .vibe,
  .marta,
  .marta__story,
  .formats,
  .contact,
  .routes,
  .product {
    grid-template-columns: 1fr;
  }

  .product__visual {
    min-height: 430px;
  }

  .marta__photo {
    min-height: 520px;
    transform: rotate(0deg);
  }

  .marta__photo img {
    min-height: 520px;
  }

  .route--wide {
    min-height: 360px;
  }

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

@media (max-width: 620px) {
  .site-nav,
  .section {
    width: min(100% - 28px, var(--max));
  }

  .brand__name {
    max-width: 120px;
  }

  .hero {
    min-height: 720px;
    padding: 112px 14px 26px;
  }

  .hero__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .scroll-cue {
    width: 64px;
    height: 64px;
    right: 14px;
    bottom: 24px;
    font-size: 0.56rem;
  }

  .vibe,
  .routes,
  .tiles,
  .contact,
  .product {
    padding-left: 14px;
    padding-right: 14px;
  }

  .product {
    margin-left: 14px;
    margin-right: 14px;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .product__visual {
    min-height: 360px;
  }

  .ebook-cover {
    width: min(290px, 82vw);
    transform: rotateY(-6deg) rotateZ(1deg);
  }

  .section,
  .vibe,
  .contact {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .format-list article {
    grid-template-columns: 1fr 78px;
    min-height: 132px;
  }

  .marta__photo {
    min-height: 420px;
  }

  .marta__photo img {
    min-height: 420px;
  }

  .marta__photo figcaption {
    border-radius: 14px;
  }

  .format-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
  }

  .format-icon--solo::before {
    left: 21px;
    top: 17px;
    width: 17px;
    height: 17px;
  }

  .format-icon--solo::after {
    left: 17px;
    top: 38px;
    width: 28px;
    height: 19px;
  }

  .format-icon--solo span:first-child {
    right: 14px;
    top: 18px;
    width: 18px;
    height: 33px;
    border-width: 3px;
  }

  .format-icon--solo span:last-child {
    right: 15px;
    bottom: 14px;
    width: 25px;
    height: 4px;
  }

  .format-icon--online::before {
    left: 15px;
    top: 19px;
    width: 42px;
    height: 30px;
    border-width: 4px;
    border-radius: 9px;
  }

  .format-icon--online::after {
    left: 25px;
    bottom: 17px;
    width: 24px;
    height: 4px;
  }

  .format-icon--online span:first-child {
    left: 32px;
    top: 29px;
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-left-width: 10px;
  }

  .format-icon--online span:last-child {
    right: 12px;
    top: 12px;
    width: 12px;
    height: 12px;
  }

  .format-icon--live::before {
    left: 17px;
    bottom: 18px;
    width: 39px;
    height: 26px;
  }

  .format-icon--live::after {
    left: 28px;
    top: 16px;
    width: 17px;
    height: 17px;
    box-shadow: 17px 6px 0 rgba(255, 255, 255, 0.74), -14px 7px 0 rgba(255, 255, 255, 0.7);
  }

  .format-icon--live span:first-child,
  .format-icon--live span:nth-child(2) {
    width: 13px;
    height: 13px;
    border-width: 2px;
  }

  .format-icon--live span:first-child {
    left: 16px;
    top: 17px;
  }

  .format-icon--live span:nth-child(2) {
    right: 14px;
    top: 18px;
  }

  .format-icon--live span:last-child {
    left: 25px;
    bottom: 13px;
    width: 24px;
    height: 4px;
  }

  .tiles {
    grid-template-columns: 1fr;
  }

  .tile--quote {
    grid-column: span 1;
  }
}
