:root {
  --paper: #fcf6ef;
  --paper-strong: #f0e1d2;
  --paper-deep: #ead5c3;
  --ink: #35241d;
  --ink-soft: #715e55;
  --line: rgba(53, 36, 29, 0.1);
  --rose: #c56f76;
  --rose-soft: #f2cccf;
  --sage: #8ea98b;
  --gold: #b68f5f;
  --blue: #6d8eb8;
  --shadow: 0 22px 60px rgba(73, 45, 30, 0.14);
  --shadow-soft: 0 12px 30px rgba(73, 45, 30, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --wrap: min(1180px, calc(100vw - 2.4rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(242, 204, 207, 0.3), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(142, 169, 139, 0.2), transparent 24%),
    linear-gradient(180deg, #fffaf5 0%, #f7eee4 42%, #fff8f2 100%);
  color: var(--ink);
  font-family: "Work Sans", "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.14)),
    radial-gradient(rgba(53, 36, 29, 0.05) 0.7px, transparent 0.7px);
  background-size: auto, 18px 18px;
  opacity: 0.35;
  mix-blend-mode: multiply;
}

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

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

.page-glow {
  position: fixed;
  width: 44rem;
  height: 44rem;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.38;
  pointer-events: none;
  z-index: 0;
}

.page-glow--rose {
  top: -15rem;
  left: -8rem;
  background: rgba(231, 164, 173, 0.35);
}

.page-glow--sage {
  right: -10rem;
  top: 26rem;
  background: rgba(158, 188, 148, 0.28);
}

.site-header,
.section {
  position: relative;
  z-index: 1;
}

.site-header {
  width: var(--wrap);
  margin: 1rem auto 0;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 249, 242, 0.7);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand__logo {
  width: 4.3rem;
  height: 4.3rem;
  object-fit: contain;
}

.brand__text {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1;
}

.brand__text strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.brand__text span:last-child {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.15rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-left: auto;
}

.site-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.section {
  width: var(--wrap);
  margin: 0 auto;
  padding: 5rem 0;
}

.hero {
  min-height: calc(100vh - 6rem);
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
  grid-template-areas:
    "headline headline"
    "copy stage";
  align-items: center;
  gap: 2.2rem;
  padding-top: 4rem;
}

.hero__headline {
  grid-area: headline;
}

.hero__copy {
  grid-area: copy;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.94;
  font-weight: 600;
}

h1 {
  max-width: none;
  width: 100%;
  font-size: clamp(3.8rem, 7.6vw, 7.4rem);
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.6rem, 5.1vw, 4.2rem);
}

h3 {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
}

p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 1rem;
}

.hero__lead {
  max-width: 58ch;
  margin-top: 1.5rem;
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

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

.button--primary {
  background: var(--ink);
  color: #fff9f3;
  box-shadow: 0 14px 28px rgba(53, 36, 29, 0.18);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.48);
  color: var(--ink);
  border-color: rgba(53, 36, 29, 0.12);
}

.button--small {
  min-height: 2.8rem;
  padding: 0 1rem;
  font-size: 0.92rem;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem;
  border: 1px solid rgba(53, 36, 29, 0.1);
  border-radius: 999px;
  background: rgba(255, 251, 247, 0.62);
  box-shadow: var(--shadow-soft);
}

.lang-switcher__button {
  min-width: 3rem;
  min-height: 2.35rem;
  padding: 0 0.8rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.lang-switcher__button.is-active {
  background: var(--ink);
  color: #fff9f3;
}

.hero__facts {
  margin: 2rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hero__facts div {
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 251, 247, 0.55);
  backdrop-filter: blur(14px);
}

.hero__facts dt {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}

.hero__facts dd {
  margin: 0;
  line-height: 1.45;
}

.hero__note {
  margin-top: 1rem;
  max-width: 50ch;
  font-size: 0.94rem;
}

.hero__stage {
  grid-area: stage;
  position: relative;
  min-height: 42rem;
  isolation: isolate;
  --pointer-x: 50%;
  --pointer-y: 50%;
}

.hero__stage::before {
  content: "";
  position: absolute;
  inset: 8% 4% 0 10%;
  border-radius: 42% 58% 46% 54% / 45% 44% 56% 55%;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.8), transparent 24%),
    linear-gradient(180deg, rgba(255, 248, 241, 0.96), rgba(245, 231, 218, 0.76));
  box-shadow: var(--shadow);
}

.hero__halo {
  position: absolute;
  inset: 16% 13% auto auto;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210, 157, 163, 0.46), transparent 68%);
  filter: blur(12px);
}

.floating-card {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.74);
  background: rgba(255, 252, 247, 0.8);
  box-shadow: var(--shadow);
  transform: translate3d(0, 0, 0);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.floating-card:hover {
  box-shadow: 0 30px 70px rgba(73, 45, 30, 0.18);
}

.floating-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card__note {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.82);
  border: 1px solid rgba(53, 36, 29, 0.08);
  backdrop-filter: blur(10px);
  font-size: 0.85rem;
  color: var(--ink);
}

.floating-card--photo {
  inset: 8% 4% 12% 18%;
}

.floating-card--pattern {
  width: 12.5rem;
  height: 15.8rem;
}

.floating-card--cherry {
  top: 6%;
  left: 3%;
  transform: rotate(-9deg);
}

.floating-card--jouy {
  right: 0;
  bottom: 13%;
  transform: rotate(7deg);
}

.floating-card--stamp {
  display: grid;
  place-items: center;
  gap: 0.4rem;
  width: 13rem;
  padding: 1.1rem;
  right: 8%;
  top: 7%;
  background: rgba(255, 249, 242, 0.9);
  text-align: center;
}

.floating-card--stamp img {
  width: 5.7rem;
  height: 5.7rem;
  object-fit: contain;
}

.floating-card--stamp p {
  font-size: 0.92rem;
  color: var(--ink);
}

.section-heading {
  max-width: 50rem;
  margin-bottom: 2rem;
}

.section-heading--full {
  max-width: none;
}

.manifesto__grid,
.collections__grid,
.process__timeline {
  display: grid;
  gap: 1.2rem;
}

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

.info-card,
.collection-card,
.timeline-step,
.closing__card {
  border: 1px solid rgba(255, 255, 255, 0.74);
  background: rgba(255, 251, 247, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.info-card {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
}

.info-card--highlight {
  background:
    radial-gradient(circle at top right, rgba(197, 111, 118, 0.12), transparent 30%),
    rgba(255, 251, 247, 0.78);
}

.info-card h3 {
  margin-bottom: 0.8rem;
}

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

.collections__grid--catalog {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.collection-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  position: relative;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.collection-card__image img {
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
}

.collection-card__link {
  display: block;
  overflow: hidden;
}

.collection-card__link img {
  transition: transform 220ms ease;
}

.collection-card__link:hover img,
.collection-card__link:focus-visible img,
.collection-card:hover .collection-card__link img {
  transform: scale(1.02);
}

.collection-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
}

.collection-card__overlay::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background-color: rgba(53, 36, 29, 0.9);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff9f3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='20' r='1.4'/%3E%3Ccircle cx='17' cy='20' r='1.4'/%3E%3Cpath d='M3 4h2.1l2.2 10.2a1 1 0 0 0 1 .8h7.9a1 1 0 0 0 1-.8L19 8H7.2'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.15rem 1.15rem;
  box-shadow: 0 10px 22px rgba(53, 36, 29, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.collection-card:hover .collection-card__overlay::after,
.collection-card__overlay:focus-visible::after {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 26px rgba(53, 36, 29, 0.26);
  background-color: rgba(182, 143, 95, 0.96);
}

.collection-card__body {
  padding: 1.4rem;
}

.collection-card__body h3 {
  margin-bottom: 0.8rem;
}

.collections__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.collections-page__hero {
  padding-bottom: 1.5rem;
}

.collections-page__hero h1 {
  max-width: none;
  width: 100%;
}

.collections-page__lead {
  max-width: none;
  width: 100%;
  margin-top: 1.2rem;
  font-size: 1.08rem;
}

.process__copy {
  max-width: 38rem;
  margin-bottom: 2rem;
}

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

.timeline-step {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.timeline-step__count {
  display: inline-flex;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--rose);
}

.timeline-step h3 {
  margin-bottom: 0.8rem;
}

.closing {
  padding-bottom: 6rem;
}

.closing__card {
  padding: 2.4rem;
  border-radius: var(--radius-xl);
  text-align: center;
}

.closing__card h2 {
  max-width: 12ch;
  margin: 0 auto;
}

.closing__card p {
  max-width: 52rem;
  margin: 1.2rem auto 0;
}

.closing__card .button {
  margin-top: 1.8rem;
}

.closing__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.closing__actions .button {
  margin-top: 0;
}

.shop__actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 1080px) {
  .hero,
  .story,
  .collections__grid,
  .manifesto__grid,
  .process__timeline {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-areas:
      "headline"
      "copy"
      "stage";
    padding-top: 3rem;
  }

  .hero__stage {
    min-height: 36rem;
    margin-top: 1rem;
  }

  .floating-card--photo {
    inset: 10% 6% 10% 15%;
  }

  .floating-card--stamp {
    width: 11rem;
    right: 3%;
  }

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

@media (max-width: 760px) {
  :root {
    --wrap: min(100vw - 1.4rem, 100%);
  }

  .site-header {
    border-radius: 28px;
    margin-top: 0.8rem;
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 0.8rem 1rem;
    margin-left: 0;
  }

  .site-header__actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
    padding-top: 2.2rem;
    gap: 1.2rem;
  }

  h1 {
    font-size: clamp(3rem, 10vw, 4.6rem);
  }

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

  .hero__stage {
    min-height: 30rem;
  }

  .floating-card--photo {
    inset: 14% 2% 9% 14%;
  }

  .floating-card--pattern {
    width: 9.8rem;
    height: 12.6rem;
  }

  .collections__grid--catalog {
    grid-template-columns: 1fr;
  }

  .floating-card--stamp {
    width: 9.4rem;
    padding: 0.8rem;
  }

  .story__panel,
  .closing__card {
    padding: 1.5rem;
  }

  .story__image img {
    height: 24rem;
  }

  .quote-card p {
    font-size: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

.hero__stage {
  --pointer-x: 50%;
  --pointer-y: 50%;
}

.hero__stage::before {
  inset: 8% 5% 2% 8%;
  border-radius: 2rem;
  background:
    radial-gradient(circle at top right, rgba(197, 111, 118, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 248, 241, 0.96), rgba(245, 231, 218, 0.76));
}

.hero-carousel {
  position: absolute;
  inset: 12% 10% 10% 14%;
  display: grid;
  gap: 1rem;
  z-index: 1;
}

.hero-carousel__frame {
  position: relative;
  min-height: 31rem;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: hero-carousel-fade 18s infinite;
}

.hero-carousel__slide:nth-child(2) {
  animation-delay: 6s;
}

.hero-carousel__slide:nth-child(3) {
  animation-delay: 12s;
}

.hero-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-carousel__slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(19, 13, 10, 0), rgba(19, 13, 10, 0.46));
}

.hero-carousel__label {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 1;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.88);
  border: 1px solid rgba(53, 36, 29, 0.08);
  backdrop-filter: blur(10px);
  color: var(--ink);
  font-size: 0.94rem;
}

.hero-carousel__brand {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.9rem;
  width: fit-content;
  max-width: min(24rem, 100%);
  padding: 0.95rem 1rem;
  border-radius: 22px;
  background: rgba(255, 249, 242, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.hero-carousel__brand img {
  width: 3.6rem;
  height: 3.6rem;
  object-fit: contain;
}

.hero-carousel__brand p {
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.5;
}

.hero-carousel__dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.hero-carousel__dots span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(53, 36, 29, 0.18);
  animation: hero-carousel-dot 18s infinite;
}

.hero-carousel__dots span:nth-child(2) {
  animation-delay: 6s;
}

.hero-carousel__dots span:nth-child(3) {
  animation-delay: 12s;
}

@keyframes hero-carousel-fade {
  0% {
    opacity: 0;
    transform: scale(1.03);
  }
  8% {
    opacity: 1;
    transform: scale(1);
  }
  28% {
    opacity: 1;
    transform: scale(1);
  }
  36% {
    opacity: 0;
    transform: scale(0.99);
  }
  100% {
    opacity: 0;
    transform: scale(0.99);
  }
}

@keyframes hero-carousel-dot {
  0%,
  100% {
    background: rgba(53, 36, 29, 0.18);
    transform: scale(1);
  }
  8%,
  28% {
    background: var(--ink);
    transform: scale(1.15);
  }
  36% {
    background: rgba(53, 36, 29, 0.18);
    transform: scale(1);
  }
}

@media (max-width: 1080px) {
  .hero-carousel {
    inset: 12% 8% 10% 10%;
  }

  .hero-carousel__frame {
    min-height: 26rem;
  }
}

@media (max-width: 760px) {
  .hero-carousel {
    inset: 10% 5% 8% 5%;
    gap: 0.8rem;
  }

  .hero-carousel__frame {
    min-height: 22rem;
  }

  .hero-carousel__brand {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    max-width: none;
  }

  .hero-carousel__brand img {
    width: 3.1rem;
    height: 3.1rem;
  }
}

.proposal-page .section {
  padding-top: 3.6rem;
  padding-bottom: 3.6rem;
}

.proposal-intro {
  padding-top: 4.5rem;
}

.proposal-intro__lead {
  max-width: 62ch;
  margin-top: 1.4rem;
  font-size: 1.08rem;
}

.proposal-row {
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1.22fr);
  gap: 2rem;
  align-items: center;
}

.proposal-copy {
  display: grid;
  gap: 1rem;
}

.proposal-preview {
  min-height: 38rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 250, 245, 0.92), rgba(250, 241, 232, 0.86)),
    rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.manifest-card {
  height: 100%;
  display: grid;
  gap: 1rem;
}

.manifest-card img {
  width: 100%;
  height: calc(100% - 4rem);
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 6px);
}

.manifest-card figcaption {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.cover-wall {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.cover-wall img {
  width: 100%;
  height: 100%;
  min-height: 12rem;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.scene-board {
  position: relative;
  height: 100%;
  border-radius: calc(var(--radius-xl) - 4px);
  background:
    radial-gradient(circle at top right, rgba(197, 111, 118, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(255, 252, 247, 0.98), rgba(244, 233, 220, 0.92));
  overflow: hidden;
}

.scene-board__main {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  width: min(58%, 26rem);
  height: auto;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.scene-board__note {
  position: absolute;
  left: 2rem;
  top: 2rem;
  max-width: 16rem;
  padding: 1.25rem 1.35rem;
  border-radius: 20px;
  background: rgba(255, 250, 245, 0.84);
  border: 1px solid rgba(53, 36, 29, 0.08);
  box-shadow: var(--shadow-soft);
}

.scene-board__note span,
.editorial-stack__text span {
  display: inline-block;
  margin-bottom: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--rose);
  font-weight: 600;
}

.scene-board__note p {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 0.95;
}

.scene-board__swatch {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  width: 9rem;
  height: 12rem;
  border-radius: 20px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.08)),
    url("./assets/images/cover-tulip.webp") center/cover;
  transform: rotate(-8deg);
  box-shadow: var(--shadow-soft);
}

.editorial-stack {
  height: 100%;
  display: grid;
  grid-template-columns: 0.8fr 1fr 0.8fr;
  gap: 0.9rem;
  align-items: stretch;
}

.editorial-stack__text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem 1.2rem;
  border-radius: 22px;
  background: rgba(255, 248, 242, 0.88);
}

.editorial-stack__text strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 0.9;
  font-weight: 600;
}

.editorial-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.carousel-mock {
  height: 100%;
  display: grid;
  gap: 1rem;
  align-content: center;
}

.carousel-mock__frame {
  position: relative;
  height: 31rem;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.carousel-mock__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: proposal-fade 18s infinite;
}

.carousel-mock__frame img:nth-child(2) {
  animation-delay: 6s;
}

.carousel-mock__frame img:nth-child(3) {
  animation-delay: 12s;
}

.carousel-mock__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.carousel-mock__dots span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(53, 36, 29, 0.18);
}

.carousel-mock__dots span:first-child {
  background: var(--ink);
}

.atelier-board {
  position: relative;
  height: 100%;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(142, 169, 139, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(240, 228, 216, 0.92));
  overflow: hidden;
}

.atelier-board__cover {
  position: absolute;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.atelier-board__cover--large {
  left: 2rem;
  top: 2rem;
  width: 46%;
  height: 66%;
}

.atelier-board__cover--small {
  right: 2rem;
  top: 2.2rem;
  width: 28%;
  height: 36%;
}

.atelier-board__cover--tall {
  right: 4.5rem;
  bottom: 2rem;
  width: 22%;
  height: 42%;
}

.atelier-board__chip {
  position: absolute;
  left: 2rem;
  bottom: 2.4rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.92);
  color: var(--ink);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(53, 36, 29, 0.08);
}

.atelier-board__chip--gold {
  left: auto;
  right: 2rem;
  bottom: 8.5rem;
  background: rgba(182, 143, 95, 0.15);
}

.identity-panel {
  position: relative;
  height: 100%;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 1.2rem;
  padding: 2rem;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(145deg, #f8efe4, #efe0cf);
}

.identity-panel__texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(rgba(53, 36, 29, 0.05) 0.9px, transparent 0.9px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  background-size: 18px 18px, auto;
  opacity: 0.45;
}

.identity-panel__logo {
  position: relative;
  width: 8.5rem;
  z-index: 1;
}

.identity-panel p {
  position: relative;
  z-index: 1;
  max-width: 20rem;
  text-align: center;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 0.92;
}

.identity-panel__snippets {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  width: min(100%, 28rem);
}

.identity-panel__snippets img {
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.proposal-footer__card {
  padding: 2rem 2.2rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 249, 242, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

@keyframes proposal-fade {
  0% {
    opacity: 0;
    transform: scale(1.03);
  }
  8% {
    opacity: 1;
    transform: scale(1);
  }
  28% {
    opacity: 1;
    transform: scale(1);
  }
  36% {
    opacity: 0;
    transform: scale(0.99);
  }
  100% {
    opacity: 0;
    transform: scale(0.99);
  }
}

@media (max-width: 1080px) {
  .proposal-row {
    grid-template-columns: 1fr;
  }

  .proposal-preview {
    min-height: 32rem;
  }

  .editorial-stack {
    grid-template-columns: 1fr 1fr;
  }

  .editorial-stack__text {
    grid-column: 1 / -1;
    min-height: 12rem;
  }
}

@media (max-width: 720px) {
  .proposal-preview {
    min-height: auto;
  }

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

  .scene-board,
  .atelier-board,
  .identity-panel {
    min-height: 28rem;
  }

  .carousel-mock__frame {
    height: 24rem;
  }

  .editorial-stack {
    grid-template-columns: 1fr;
  }

  .editorial-stack img {
    min-height: 16rem;
  }

  .atelier-board__cover--large {
    width: 52%;
  }

  .atelier-board__cover--small {
    width: 32%;
  }

  .atelier-board__cover--tall {
    width: 27%;
    right: 2rem;
  }

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