:root {
  --bg-canvas: #f8f1ec;
  --bg-shell: rgba(255, 250, 247, 0.97);
  --bg-shell-strong: rgba(255, 247, 243, 0.99);
  --surface: rgba(255, 252, 250, 0.92);
  --surface-rose: #f8e7e6;
  --surface-rose-strong: #efcfd6;
  --surface-muted: #f6efea;
  --accent: #c97e92;
  --accent-strong: #b55f76;
  --accent-soft: #d9a1ae;
  --accent-pale: #f1dadd;
  --text-main: #4f3c3c;
  --text-body: #6a5353;
  --text-muted: #8d7373;
  --line: rgba(224, 199, 202, 0.82);
  --branch: #b7b086;
  --shadow-shell: 0 28px 64px rgba(187, 146, 149, 0.12);
  --shadow-soft: 0 14px 28px rgba(204, 168, 171, 0.11);
  --shadow-hover: 0 18px 36px rgba(193, 146, 152, 0.16);
  --radius-shell: 42px;
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --container: 1160px;
  --font-base: "Manrope", sans-serif;
  --font-script: "Marck Script", cursive;
  --transition: 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-base);
  color: var(--text-main);
  background:
    radial-gradient(circle at 12% 14%, rgba(244, 222, 226, 0.58), transparent 20%),
    radial-gradient(circle at 86% 12%, rgba(248, 233, 224, 0.62), transparent 22%),
    linear-gradient(180deg, #fbf7f4 0%, #f7efe9 100%);
  padding: 22px 16px;
}

body::selection {
  background: rgba(201, 126, 146, 0.18);
}

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

a {
  color: inherit;
}

.background-veil {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.55), transparent 24%),
    linear-gradient(90deg, rgba(255, 248, 246, 0.28), transparent 28%, transparent 72%, rgba(255, 248, 246, 0.28));
  opacity: 0.5;
}

.page-shell {
  position: relative;
  max-width: min(var(--container), 100%);
  margin: 0 auto;
  border-radius: var(--radius-shell);
  background: linear-gradient(180deg, var(--bg-shell) 0%, var(--bg-shell-strong) 100%);
  border: 1px solid rgba(231, 210, 211, 0.88);
  box-shadow: var(--shadow-shell);
  overflow: hidden;
  isolation: isolate;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(22px);
  opacity: 0.5;
}

.page-shell::before {
  width: 280px;
  height: 280px;
  top: -110px;
  right: -60px;
  background: radial-gradient(circle, rgba(248, 223, 226, 0.92), transparent 68%);
}

.page-shell::after {
  width: 200px;
  height: 200px;
  bottom: 110px;
  left: -70px;
  background: radial-gradient(circle, rgba(246, 231, 221, 0.9), transparent 68%);
}

.page-shell__sprig,
.contact-ribbon__leaf,
.detail-card__branch,
.hero__description-icon,
.hero__badge-icon,
.hero__badge-heart,
.hero__script-heart,
.contact-pill__icon,
.advantage-item__icon,
.detail-card__icon,
.detail-card__eyebrow span {
  color: var(--branch);
}

.page-shell__sprig,
.contact-ribbon__leaf,
.detail-card__branch {
  position: absolute;
  width: clamp(48px, 6vw, 72px);
  opacity: 0.78;
  pointer-events: none;
}

.page-shell__sprig svg,
.contact-ribbon__leaf svg,
.detail-card__branch svg,
.hero__description-icon svg,
.hero__badge-icon svg,
.hero__badge-heart svg,
.hero__script-heart svg,
.contact-pill__icon svg,
.advantage-item__icon svg,
.detail-card__icon svg,
.detail-card__eyebrow span svg {
  width: 100%;
  height: 100%;
}

.page-shell__sprig--top-left {
  top: 88px;
  left: 24px;
  transform: rotate(-12deg);
}

.page-shell__sprig--top-right {
  top: 80px;
  right: 28px;
  transform: rotate(16deg);
}

.page-shell__sprig--bottom-right {
  right: 22px;
  bottom: 120px;
  transform: rotate(12deg);
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.2rem 2rem 0.6rem;
}

.site-header__brand {
  display: grid;
  gap: 0.1rem;
  text-decoration: none;
}

.site-header__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.site-header__name {
  font-family: var(--font-script);
  font-size: 2rem;
  line-height: 0.92;
  color: var(--text-main);
}

.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-header__nav-list a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-body);
  transition: color var(--transition);
}

.site-header__nav-list a:hover {
  color: var(--accent-strong);
}

.site-header__cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.site-header__cta,
.button--primary {
  background: linear-gradient(180deg, #d992a4 0%, #c77589 100%);
  color: #fff9f7;
  box-shadow: var(--shadow-soft);
}

.site-header__cta:hover,
.button--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.button--secondary {
  border: 1px solid rgba(215, 182, 187, 0.85);
  background: rgba(255, 251, 249, 0.76);
  color: var(--text-main);
}

.button--secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 126, 146, 0.45);
}

.hero {
  padding: 0.8rem 2rem 2.1rem;
  display: grid;
  gap: 1.15rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(370px, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.hero__content {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.hero__badge {
  width: clamp(124px, 12vw, 154px);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.34rem;
  padding: 0.9rem;
  text-align: center;
  background: rgba(255, 252, 250, 0.88);
  border: 1px solid rgba(223, 193, 196, 0.9);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.78);
  color: var(--accent);
}

.hero__badge-icon,
.hero__badge-heart {
  width: 14px;
  height: 14px;
}

.hero__badge-text {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.hero__eyebrow {
  margin: 0;
  max-width: 520px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.55;
  text-transform: uppercase;
  color: var(--accent);
}

.hero__heading {
  display: grid;
  gap: 0.12rem;
}

.hero__lead {
  margin: 0;
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--accent);
}

.hero__script-row {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
}

.hero__script {
  margin: 0;
  font-family: var(--font-script);
  font-size: clamp(4rem, 6.5vw, 6rem);
  line-height: 0.82;
  color: var(--text-main);
  font-weight: 400;
}

.hero__script-heart {
  width: clamp(22px, 2.4vw, 34px);
  color: var(--accent-soft);
  margin-bottom: 0.85rem;
}

.hero__subhead {
  margin: 0.35rem 0 0;
  max-width: 560px;
  font-size: clamp(1rem, 1.8vw, 1.32rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.hero__description {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.75rem;
  max-width: 500px;
}

.hero__description p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
}

.hero__description-icon {
  width: 24px;
  margin-top: 0.18rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-chip {
  display: inline-grid;
  gap: 0.12rem;
  padding: 0.82rem 1rem;
  border-radius: 20px;
  background: rgba(255, 249, 247, 0.9);
  border: 1px solid rgba(227, 204, 207, 0.82);
}

.hero-chip strong {
  font-size: 0.96rem;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-chip span {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.hero__photo-card {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 244, 241, 0.86), rgba(255, 249, 247, 0.95));
  box-shadow: var(--shadow-soft);
}

.hero__photo-glow {
  position: absolute;
  inset: 10% 10% auto auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 246, 241, 0.94), rgba(255, 242, 237, 0));
  filter: blur(18px);
  z-index: 0;
}

.hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__poster {
  display: grid;
}

.hero__poster .promo-board--hero {
  min-height: clamp(580px, 72vw, 760px);
}

.hero__poster .promo-board--hero .promo-board__content {
  padding-top: clamp(7rem, 11vw, 8.4rem);
}

.hero__poster .promo-board--hero .promo-board__script {
  font-size: clamp(4.8rem, 8vw, 7.4rem);
}

.hero__poster .promo-board--hero .promo-board__hero-media {
  min-height: clamp(380px, 42vw, 520px);
}

.hero__foot {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero__summary {
  max-width: 680px;
  display: grid;
  gap: 0.45rem;
}

.hero__summary .hero__eyebrow {
  max-width: 680px;
}

.hero__summary-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.72;
  color: var(--text-body);
}

.hero__foot .hero__actions {
  margin-left: auto;
}

.section {
  padding: 0 2rem 2.6rem;
}

.section__head {
  max-width: 760px;
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.section__head--compact {
  max-width: 520px;
}

.section__kicker,
.contact-ribbon__kicker {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.section__title,
.contact-ribbon__title {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.08;
  color: var(--text-main);
}

.section__description,
.contact-ribbon__description {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
}

.showcase-list {
  display: grid;
  gap: 1rem;
}

.promo-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: clamp(1.3rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3.2vw, 2.5rem);
  border-radius: 38px;
  border: 1px solid rgba(232, 207, 211, 0.88);
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.8), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(247, 219, 225, 0.55), transparent 20%),
    linear-gradient(135deg, rgba(255, 251, 249, 0.98), rgba(250, 239, 236, 0.96));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  isolation: isolate;
}

.promo-board::before,
.promo-board::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.promo-board::before {
  top: -60px;
  right: -30px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 244, 242, 0.95), rgba(255, 244, 242, 0));
  filter: blur(10px);
  opacity: 0.86;
}

.promo-board::after {
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(300deg, rgba(255, 255, 255, 0.16), transparent 34%);
  opacity: 0.72;
}

.promo-board__badge,
.promo-board__content,
.promo-board__visual {
  position: relative;
  z-index: 1;
}

.promo-board__badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  width: clamp(118px, 11vw, 154px);
  aspect-ratio: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.28rem;
  padding: 0.9rem;
  border-radius: 50%;
  text-align: center;
  color: var(--accent);
  background: rgba(255, 251, 249, 0.94);
  border: 1px solid rgba(221, 191, 195, 0.92);
  box-shadow:
    inset 0 0 0 5px rgba(255, 255, 255, 0.82),
    0 16px 26px rgba(215, 180, 184, 0.1);
}

.promo-board__badge-icon,
.promo-board__badge-heart {
  width: 14px;
  height: 14px;
}

.promo-board__badge-text {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.46;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.promo-board__content {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  padding-top: clamp(6.2rem, 11vw, 8rem);
}

.promo-board__eyebrow {
  margin: 0;
  max-width: 540px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.55;
  text-transform: uppercase;
  color: var(--accent);
}

.promo-board__lead {
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 2.15rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--accent);
}

.promo-board__script-row {
  display: flex;
  align-items: flex-end;
  gap: 0.55rem;
  margin-top: -0.15rem;
}

.promo-board__script {
  margin: 0;
  font-family: var(--font-script);
  font-size: clamp(4.15rem, 7.4vw, 6.7rem);
  line-height: 0.84;
  font-weight: 400;
  color: var(--text-main);
}

.promo-board__script-heart {
  width: clamp(24px, 2.2vw, 34px);
  color: var(--accent-soft);
  margin-bottom: 0.95rem;
}

.promo-board__subhead {
  margin: -0.2rem 0 0;
  font-size: clamp(1rem, 1.8vw, 1.38rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.32;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.promo-board__description {
  margin: 0;
  max-width: 470px;
  font-size: 1rem;
  line-height: 1.72;
  color: var(--text-body);
}

.promo-board__description-row {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
  gap: 0.75rem;
  max-width: 470px;
  margin-top: 0.25rem;
}

.promo-board__description-icon {
  width: 28px;
  color: var(--branch);
  margin-top: 0.2rem;
}

.promo-board__description-icon svg {
  width: 100%;
  height: 100%;
}

.promo-board__offers {
  display: grid;
  gap: 0.85rem;
  max-width: 470px;
  margin-top: 0.35rem;
}

.promo-board__offer {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(252, 236, 239, 0.96), rgba(249, 229, 232, 0.92));
  border: 1px solid rgba(237, 204, 209, 0.9);
  box-shadow: 0 14px 26px rgba(214, 185, 188, 0.08);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.promo-board__offer:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(214, 177, 182, 0.12);
  border-color: rgba(201, 126, 146, 0.34);
}

.promo-board__offer-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fffaf8;
  background: linear-gradient(180deg, #d88ea1 0%, #c97287 100%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.44);
}

.promo-board__offer-icon svg {
  width: 28px;
  height: 28px;
}

.promo-board__offer div {
  display: grid;
  gap: 0.12rem;
}

.promo-board__offer strong,
.promo-board__offer span,
.promo-board__offer small {
  display: block;
}

.promo-board__offer strong {
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.promo-board__offer span {
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--text-body);
}

.promo-board__offer small {
  margin-top: 0.12rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.promo-board__visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 166px;
  grid-template-areas:
    "hero hero"
    "compliment qr"
    "benefits benefits";
  gap: 1rem;
  align-content: start;
}

.promo-board__hero-media {
  grid-area: hero;
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 48px 48px 32px 32px;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.95), rgba(255, 241, 241, 0)),
    linear-gradient(180deg, rgba(255, 248, 245, 0.96), rgba(248, 233, 229, 0.96));
  box-shadow: 0 22px 42px rgba(213, 182, 186, 0.15);
}

.promo-board__hero-media::before {
  content: "";
  position: absolute;
  inset: 10% 14% auto auto;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 250, 246, 0.94), rgba(255, 250, 246, 0));
  filter: blur(8px);
  z-index: 0;
}

.promo-board__hero-media img,
.promo-board__compliment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-board__hero-media:hover img,
.promo-board__compliment-card:hover img {
  transform: scale(1.035);
}

.promo-board__compliment {
  grid-area: compliment;
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.promo-board__compliment-label {
  margin: 0;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--text-main);
}

.promo-board__compliment-card {
  min-height: 240px;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 247, 245, 0.96), rgba(249, 237, 233, 0.95));
  box-shadow: 0 18px 34px rgba(214, 182, 186, 0.15);
}

.promo-board__qr {
  grid-area: qr;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.45rem;
  min-height: 240px;
  padding: 1rem 0.75rem;
  border-radius: 28px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 245, 244, 0.98), rgba(255, 250, 248, 0.96));
  border: 1.5px dashed rgba(224, 191, 197, 0.92);
}

.promo-board__qr-icon {
  width: 22px;
  color: var(--accent-soft);
}

.promo-board__qr strong,
.promo-board__qr span {
  display: block;
}

.promo-board__qr strong {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-main);
}

.promo-board__qr span {
  font-size: 0.82rem;
  line-height: 1.45;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.promo-board__benefits {
  grid-area: benefits;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 0.1rem;
  border-top: 1px solid rgba(229, 208, 211, 0.84);
}

.promo-board__benefits span {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.55rem;
  padding: 1rem 0.85rem 0;
  min-height: 68px;
  text-align: center;
}

.promo-board__benefits span + span {
  border-left: 1px solid rgba(229, 208, 211, 0.84);
}

.promo-board__benefits i {
  width: 24px;
  height: 24px;
  color: var(--accent-soft);
}

.promo-board__benefits i svg {
  width: 100%;
  height: 100%;
}

.promo-board__benefits em {
  font-style: normal;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.55;
  text-transform: uppercase;
  color: var(--text-main);
}

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

.collection-item {
  padding: 1.25rem 1.2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 249, 247, 0.92), rgba(248, 239, 234, 0.92));
  border: 1px solid rgba(231, 208, 210, 0.82);
}

.collection-item h3,
.work-card__copy h3,
.advantage-item h3,
.order-step h3 {
  margin: 0 0 0.35rem;
  font-size: 1.12rem;
  line-height: 1.3;
}

.collection-item p,
.work-card__copy p,
.advantage-item p,
.order-step p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.68;
  color: var(--text-body);
}

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

.work-card {
  display: grid;
  gap: 0.85rem;
  padding: 0.85rem;
  border-radius: 28px;
  background: rgba(255, 252, 250, 0.84);
  border: 1px solid rgba(233, 211, 213, 0.84);
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.work-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201, 126, 146, 0.34);
}

.work-card--large {
  grid-column: span 6;
}

.work-card--square {
  grid-column: span 3;
}

.work-card--portrait,
.work-card--poster {
  grid-column: span 3;
}

.work-card--placeholder {
  grid-column: span 3;
}

.work-card__media {
  overflow: hidden;
  border-radius: 22px;
  background: var(--surface-muted);
  min-height: 220px;
}

.work-card--large .work-card__media {
  min-height: 360px;
}

.work-card--portrait .work-card__media,
.work-card--poster .work-card__media {
  min-height: 320px;
}

.work-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-card__media--placeholder {
  display: grid;
  place-items: center;
  border: 1.5px dashed rgba(222, 195, 200, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 248, 246, 0.96), rgba(248, 238, 234, 0.94));
  color: var(--text-muted);
  text-align: center;
  padding: 1.5rem;
}

.work-card__media--placeholder span {
  max-width: 160px;
  font-weight: 600;
  line-height: 1.55;
}

.work-card__tag {
  display: inline-flex;
  width: fit-content;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(241, 218, 221, 0.78);
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offers-layout,
.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.82fr);
  gap: 1rem;
  align-items: start;
}

.offer-stack {
  display: grid;
  gap: 0.9rem;
}

.offer-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(252, 239, 240, 0.98), rgba(247, 227, 229, 0.96));
  border: 1px solid rgba(237, 203, 207, 0.9);
}

.offer-card__icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fffaf8;
  background: linear-gradient(180deg, #d98ea1 0%, #c87389 100%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.42);
}

.offer-card__icon svg {
  width: 28px;
  height: 28px;
}

.offer-card__headline {
  margin: 0;
  display: grid;
  gap: 0.08rem;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.offer-card__headline span {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.offer-card__headline small {
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--text-main);
}

.offer-card__note {
  margin: 0.25rem 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.detail-card {
  position: relative;
  min-height: 274px;
  padding: 0.95rem 1rem 1rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 252, 250, 0.8), rgba(255, 248, 246, 0.86));
}

.detail-card--dashed {
  border: 1.5px dashed rgba(214, 181, 186, 0.82);
}

.detail-card__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.36rem;
  width: 100%;
  margin: 0 auto 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
}

.detail-card__eyebrow p {
  margin: 0;
}

.detail-card__eyebrow span {
  width: 12px;
  height: 12px;
}

.detail-card__body {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.7rem;
  min-height: 210px;
  text-align: center;
}

.detail-card__icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
}

.detail-card__title,
.qr-card__title {
  margin: 0;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-main);
}

.detail-card__caption,
.qr-card__caption {
  margin: 0;
  max-width: 210px;
  font-size: 0.88rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.detail-card__branch {
  right: 14px;
  bottom: 8px;
  width: 48px;
  transform: rotate(18deg);
}

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

.advantage-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 1rem 0;
  border-top: 1px solid rgba(228, 209, 212, 0.9);
}

.advantage-item__icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
  margin-top: 0.2rem;
}

.order-steps {
  display: grid;
  gap: 0.85rem;
}

.order-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 248, 0.84);
  border: 1px solid rgba(231, 208, 211, 0.86);
}

.order-step__index {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(241, 218, 221, 0.84);
  color: var(--accent-strong);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.qr-card {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.9rem;
  min-height: 100%;
  padding: 1.1rem 0.95rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 245, 244, 0.94), rgba(255, 250, 248, 0.96));
  border: 1.4px dashed rgba(225, 198, 204, 0.92);
}

.qr-card__frame {
  display: grid;
  place-items: center;
  width: min(146px, 100%);
  padding: 0.55rem;
  aspect-ratio: 1;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(229, 206, 210, 0.84);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.8);
}

.qr-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-card__copy {
  text-align: center;
}

.contact-ribbon {
  margin-top: 0.4rem;
  padding: 1.4rem 2rem 0.9rem;
  background: linear-gradient(180deg, rgba(226, 173, 184, 0.98), rgba(214, 154, 166, 0.99));
  color: #fffaf7;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.contact-ribbon__intro {
  display: grid;
  gap: 0.35rem;
  max-width: 740px;
  margin-bottom: 0.9rem;
}

.contact-ribbon__title,
.contact-ribbon__description {
  color: #fffaf7;
}

.contact-ribbon__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.35rem 0;
  text-decoration: none;
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.contact-pill:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.contact-pill__icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: #fffaf7;
}

.contact-pill__icon svg {
  width: 18px;
  height: 18px;
}

.contact-ribbon__signature {
  margin: 0.5rem auto 0;
  width: fit-content;
  font-family: var(--font-script);
  font-size: clamp(1.9rem, 2.8vw, 2.45rem);
  line-height: 1;
  color: rgba(255, 250, 247, 0.98);
  letter-spacing: 0.03em;
}

.contact-ribbon__leaf {
  bottom: 14px;
  color: rgba(255, 255, 255, 0.32);
}

.contact-ribbon__leaf--left {
  left: 12px;
  transform: rotate(-6deg);
}

.contact-ribbon__leaf--right {
  right: 12px;
  transform: rotate(10deg) scaleX(-1);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.has-motion .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
  transition-delay: var(--delay, 0ms);
}

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

@media (max-width: 1040px) {
  .hero__grid,
  .offers-layout,
  .order-layout {
    grid-template-columns: 1fr;
  }

  .hero__foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__foot .hero__actions {
    margin-left: 0;
  }

  .hero__poster .promo-board--hero .promo-board__hero-media {
    min-height: 420px;
  }

  .promo-board {
    grid-template-columns: 1fr;
  }

  .promo-board__content {
    padding-top: 7rem;
  }

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

  .work-card--large {
    grid-column: span 6;
  }

  .work-card--square,
  .work-card--portrait,
  .work-card--poster,
  .work-card--placeholder {
    grid-column: span 3;
  }

  .hero__photo-card {
    min-height: 460px;
  }
}

@media (max-width: 860px) {
  body {
    padding: 14px 10px;
  }

  .page-shell {
    border-radius: 30px;
  }

  .site-header,
  .hero,
  .section,
  .contact-ribbon {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 0.5rem;
  }

  .hero__summary {
    max-width: 100%;
  }

  .collections,
  .advantages,
  .promo-board__benefits {
    grid-template-columns: 1fr;
  }

  .promo-board {
    padding-top: 1.25rem;
  }

  .promo-board__badge {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 0.4rem;
  }

  .promo-board__content {
    padding-top: 0;
  }

  .promo-board__visual {
    grid-template-columns: 1fr 180px;
  }

  .promo-board__benefits span {
    padding: 0.85rem 0.65rem;
  }

  .promo-board__benefits span + span {
    border-left: 0;
    border-top: 1px solid rgba(229, 208, 211, 0.84);
  }

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

  .work-card,
  .work-card--large,
  .work-card--square,
  .work-card--portrait,
  .work-card--poster,
  .work-card--placeholder {
    grid-column: auto;
  }

  .work-card__media,
  .work-card--large .work-card__media,
  .work-card--portrait .work-card__media,
  .work-card--poster .work-card__media {
    min-height: 260px;
  }

  .contact-ribbon__row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  body {
    padding: 8px;
  }

  .page-shell {
    border-radius: 24px;
  }

  .page-shell__sprig {
    width: 40px;
  }

  .site-header,
  .hero,
  .section,
  .contact-ribbon {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .site-header__nav-list {
    gap: 0.7rem;
  }

  .site-header__nav-list a {
    font-size: 0.86rem;
  }

  .hero__badge {
    width: 114px;
  }

  .hero__badge-text {
    font-size: 0.6rem;
  }

  .hero__script {
    font-size: clamp(3.25rem, 16vw, 4.85rem);
  }

  .hero__script-heart {
    width: 22px;
    margin-bottom: 0.56rem;
  }

  .hero__subhead {
    font-size: 0.95rem;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__poster .promo-board--hero .promo-board__hero-media {
    min-height: 280px;
  }

  .promo-board__script {
    font-size: clamp(3.3rem, 16vw, 4.9rem);
  }

  .promo-board__script-heart {
    width: 22px;
    margin-bottom: 0.56rem;
  }

  .promo-board__subhead {
    font-size: 0.95rem;
  }

  .promo-board__offer {
    grid-template-columns: 56px 1fr;
    gap: 0.82rem;
    padding: 0.9rem;
  }

  .promo-board__offer-icon {
    width: 56px;
    height: 56px;
  }

  .promo-board__visual {
    grid-template-columns: 1fr;
    grid-template-areas:
      "hero"
      "compliment"
      "qr"
      "benefits";
  }

  .promo-board__hero-media {
    min-height: 260px;
  }

  .promo-board__compliment-card,
  .promo-board__qr {
    min-height: 210px;
  }

  .promo-board__benefits {
    margin-top: 0;
  }

  .button,
  .site-header__cta {
    width: 100%;
  }

  .hero-chip {
    width: 100%;
  }

  .offer-card,
  .order-step {
    grid-template-columns: 56px 1fr;
    gap: 0.82rem;
  }

  .offer-card__icon,
  .order-step__index {
    width: 56px;
    height: 56px;
  }

  .detail-card__title,
  .qr-card__title {
    font-size: 1rem;
  }

  .detail-card__caption,
  .qr-card__caption {
    font-size: 0.8rem;
  }

  .contact-pill {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .has-motion .reveal,
  .has-motion .reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
  }
}
