:root {
  --paper: #f4f0e8;
  --paper-deep: #e7e0d4;
  --ink: #25231f;
  --muted: #6f6a61;
  --line: rgba(37, 35, 31, 0.18);
  --white: #fffdf8;
  --stone: #b8ad9d;
  --sage: #8b9484;
  --clay: #b98672;
  --max: 1240px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

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

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

button,
input { font: inherit; }

button { color: inherit; }

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  transform: translateY(-160%);
}

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

.shell {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(244, 240, 232, 0.9);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease;
}

.site-header.is-scrolled { border-color: var(--line); }

.header-row {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.logo::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.4vw, 22px);
  color: var(--muted);
  font-size: 13px;
}

.site-nav a { transition: color 160ms ease; }
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--ink); }

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span { opacity: 0; }
.menu-button[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.button {
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

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

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

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

.button--outline-light {
  border-color: rgba(255, 253, 248, 0.7);
  background: transparent;
  color: var(--white);
}

.text-link {
  padding-block: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 600;
}

.text-link::after { content: "\2197"; }

.eyebrow {
  display: block;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p { margin-top: 0; }

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

h1 {
  max-width: 880px;
  margin-bottom: 28px;
  font-size: clamp(52px, 8vw, 108px);
  line-height: 0.9;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.96;
}

h3 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1;
}

.lede {
  max-width: 670px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.hero {
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: end;
  padding: clamp(72px, 10vw, 140px) 0 32px;
}

.hero__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: end;
  gap: 40px;
  margin-bottom: clamp(54px, 8vw, 108px);
}

.hero__copy { max-width: 590px; color: var(--muted); font-size: 18px; }

.hero__actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero__media,
.media-frame {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.22), transparent 60%),
    linear-gradient(145deg, #c6beb2, #8e897f);
}

.hero__media {
  min-height: clamp(360px, 52vw, 680px);
  border-radius: 2px;
}

.media-frame {
  min-height: 420px;
}

.media-frame--warm { background: linear-gradient(145deg, #d3c5b9, #987f70); }
.media-frame--cool { background: linear-gradient(145deg, #c4c5bd, #7f877e); }
.media-frame--dark { background: linear-gradient(145deg, #817d75, #383733); }
.media-frame--wide { min-height: 520px; }
.media-frame--portrait { min-height: 620px; }
.media-frame--small { min-height: 280px; }

.hero__media::after,
.media-frame::after {
  content: attr(data-media);
  position: absolute;
  left: 20px;
  bottom: 18px;
  max-width: calc(100% - 40px);
  color: rgba(255, 253, 248, 0.82);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section { padding: clamp(88px, 12vw, 164px) 0; }
.section--line { border-top: 1px solid var(--line); }
.section--white { background: var(--white); }
.section--tint { background: var(--paper-deep); }
.section--dark { background: var(--ink); color: var(--white); }
.section--compact { padding-block: clamp(64px, 8vw, 100px); }

.section-head {
  max-width: 790px;
  margin-bottom: clamp(42px, 7vw, 84px);
}

.section-head--row {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 440px);
  align-items: end;
  gap: 50px;
}

.section-head--row p { color: var(--muted); }
.section--dark .eyebrow,
.section--dark .lede,
.section--dark .section-head--row p { color: rgba(255,253,248,.65); }

.path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.path-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 52px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 200ms ease;
}

.path-card:hover { background: rgba(255,255,255,.42); }
.path-card__number { color: var(--muted); font-size: 11px; letter-spacing: .16em; }
.path-card p { max-width: 390px; color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(44px, 8vw, 110px);
}

.split--top { align-items: start; }
.split__copy { max-width: 520px; }
.split__copy p { color: var(--muted); }
.split__copy p + p { margin-top: 18px; }

.quote {
  max-width: 970px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.card {
  min-height: 300px;
  padding: clamp(26px, 3.5vw, 42px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.card__meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 70px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.card p { color: var(--muted); }
.card .text-link { margin-top: 26px; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: step;
  border-top: 1px solid var(--line);
}

.step {
  min-height: 270px;
  padding: 28px 28px 32px 0;
  border-bottom: 1px solid var(--line);
  counter-increment: step;
}

.step + .step { padding-left: 28px; border-left: 1px solid var(--line); }
.step::before { content: "0" counter(step); display: block; margin-bottom: 64px; color: var(--muted); font-size: 11px; letter-spacing: .14em; }
.step h3 { font-size: 29px; }
.step p { color: var(--muted); font-size: 14px; }

.price-list { border-top: 1px solid var(--line); }

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.price-row strong { font-weight: 600; }
.price-row span:last-child { color: var(--muted); text-align: right; }

.note {
  padding: 24px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.review-placeholder {
  display: grid;
  grid-template-columns: minmax(220px, .75fr) 1fr;
  min-height: 460px;
  border: 1px solid var(--line);
}

.review-placeholder__portrait { background: linear-gradient(145deg, #c8b9ad, #847b72); }
.review-placeholder__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(32px, 7vw, 90px); }
.review-placeholder__copy p { max-width: 470px; color: var(--muted); }

.final-cta {
  position: relative;
  min-height: min(760px, 85svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: linear-gradient(135deg, #8e8b84 0%, #45443f 100%);
  color: var(--white);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(20,20,18,.72) 100%);
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(54px, 8vw, 92px);
}

.final-cta h2 { max-width: 780px; }
.final-cta .eyebrow { color: rgba(255,253,248,.7); }

.sub-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 0;
  border-top: 1px solid rgba(255,253,248,.32);
  margin-top: 44px;
}

.page-hero { padding: clamp(90px, 13vw, 180px) 0 clamp(70px, 9vw, 120px); }
.page-hero h1 { max-width: 1050px; }
.page-hero .lede { margin-bottom: 0; }

.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.collection-card { background: var(--white); }
.collection-card .media-frame { min-height: 560px; }
.collection-card__body { padding: 30px; }
.collection-card__body p { color: var(--muted); }
.collection-card__footer { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-top: 34px; }
.collection-card__price { font-family: var(--serif); font-size: 28px; }

.schedule-empty {
  min-height: 330px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(32px, 6vw, 72px);
  border: 1px solid var(--line);
}

.schedule-empty p { max-width: 540px; color: var(--muted); }

.gallery-strip {
  display: grid;
  grid-template-columns: 1.3fr .85fr .85fr;
  gap: 12px;
}

.gallery-strip .media-frame:nth-child(2) { margin-top: 80px; }
.gallery-strip .media-frame:nth-child(3) { margin-bottom: 80px; }

.analysis-wrap {
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: center;
  padding: 72px 0;
}

.analysis-card { max-width: 720px; margin-inline: auto; text-align: center; }
.analysis-card h1 { font-size: clamp(50px, 8vw, 88px); }
.analysis-card .lede { margin-inline: auto; }

.analysis-form {
  display: flex;
  gap: 10px;
  max-width: 610px;
  margin: 42px auto 0;
}

.analysis-input {
  min-width: 0;
  flex: 1;
  height: 56px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  text-align: center;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.form-status { min-height: 26px; margin-top: 18px; color: var(--muted); font-size: 14px; }

.analysis-result {
  display: none;
  margin-top: 46px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.analysis-result.is-visible { display: block; }
.ecosystem-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; margin-top: 30px; color: var(--muted); font-size: 13px; }

.site-footer { padding: 64px 0 28px; background: var(--ink); color: var(--white); }
.footer-main { display: grid; grid-template-columns: 1.2fr repeat(2, .55fr); gap: 50px; padding-bottom: 76px; }
.footer-main h2 { max-width: 540px; font-size: clamp(42px, 5vw, 68px); }
.footer-nav { display: grid; align-content: start; gap: 13px; color: rgba(255,253,248,.66); font-size: 13px; }
.footer-label { margin-bottom: 8px; color: var(--white); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 24px; border-top: 1px solid rgba(255,253,248,.2); color: rgba(255,253,248,.5); font-size: 11px; }

.platform-hero { padding: clamp(72px, 10vw, 140px) 0 64px; border-bottom: 1px solid var(--line); }
.platform-hero h1 { max-width: 980px; margin: 14px 0 22px; font: 500 clamp(52px, 8vw, 108px)/.9 var(--serif); letter-spacing: -.035em; }
.platform-hero .lede { max-width: 720px; color: var(--muted); font-size: clamp(17px, 2vw, 22px); }
.narrow { max-width: 860px; }
.platform-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.platform-card { padding: clamp(24px, 4vw, 42px); border: 1px solid var(--line); border-radius: 4px; background: var(--white); }
.platform-card h1, .platform-card h2, .platform-card h3 { margin: 10px 0 16px; font-family: var(--serif); font-weight: 500; line-height: 1; }
.platform-card h1 { font-size: clamp(38px, 5vw, 62px); }.platform-card h2 { font-size: clamp(31px, 4vw, 48px); }.platform-card h3 { font-size: 30px; }
.media-card { padding: 0 0 28px; overflow: hidden; }.media-card > :not(img) { margin-left: 28px; margin-right: 28px; }.media-card > img { width: 100%; height: 330px; margin-bottom: 28px; object-fit: cover; }
.platform-card dl { display: grid; gap: 10px; margin: 22px 0; }.platform-card dl div { display: flex; justify-content: space-between; gap: 20px; padding-top: 10px; border-top: 1px solid var(--line); }.platform-card dt { color: var(--muted); }.platform-card dd { margin: 0; text-align: right; }
.platform-form { display: grid; gap: 20px; }.platform-form label { display: grid; gap: 8px; color: var(--muted); font-size: 13px; }.platform-form input,.platform-form textarea,.platform-form select,.admin-cards select { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 2px; background: var(--paper); color: var(--ink); font: inherit; }.platform-form textarea { resize: vertical; }.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }.platform-form .consent { display: flex; grid-template-columns: none; align-items: flex-start; gap: 10px; }.platform-form .consent input { width: 18px; min-height: 18px; margin-top: 2px; }.form-error { padding: 12px 14px; border-left: 3px solid #a33; background: #fff0ed; color: #7b261f; }.pdf-frame { aspect-ratio: 4/5; margin: 24px 0; border: 1px solid var(--line); }.pdf-frame iframe { width: 100%; height: 100%; border: 0; }
.choice-tabs { display: flex; gap: 10px; margin-top: 30px; }.choice-tabs a { padding: 12px 18px; border: 1px solid var(--line); border-radius: 999px; }.choice-tabs a.active { background: var(--ink); color: var(--white); }
.event-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; margin: 20px 28px; }.event-gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.inline-review { margin: 24px 28px; padding: 18px 0; border-block: 1px solid var(--line); }.inline-review p { margin: 0 0 10px; font-family: var(--serif); font-size: 24px; }.inline-review footer { color: var(--muted); font-size: 12px; }
.workshop-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; align-items: stretch; }
.workshop-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid var(--line); background: var(--white); transition: transform .35s cubic-bezier(.2,.7,.2,1),box-shadow .35s ease,border-color .35s ease; }
.workshop-card__media { position: relative; display: grid; aspect-ratio: 4/3; overflow: hidden; background: linear-gradient(145deg,#cfc5b8,#766d61); }
.workshop-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.workshop-card__media > span { display: grid; align-content: end; gap: 4px; padding: 24px; color: var(--white); font: 500 36px/1 var(--serif); }
.workshop-card__media small { font: 600 10px/1.2 var(--sans); letter-spacing: .16em; }
.workshop-card__body { display: flex; flex: 1; flex-direction: column; padding: 23px; }
.workshop-card__top { display: flex; min-height: 27px; align-items: center; justify-content: space-between; gap: 10px; }
.workshop-card__top time { color: var(--muted); font-size: 10px; text-align: right; }
.workshop-card h3 { display: -webkit-box; min-height: 2em; margin: 18px 0 12px; overflow: hidden; font: 500 clamp(28px,2.5vw,38px)/1 var(--serif); -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.workshop-card__teaser { display: -webkit-box; min-height: 4.65em; margin: 0; overflow: hidden; color: var(--muted); font-size: 13px; line-height: 1.55; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.workshop-card__facts { display: grid; gap: 6px; margin: 20px 0 !important; }
.workshop-card__facts div { display: grid !important; grid-template-columns: 72px 1fr; gap: 10px !important; padding-top: 7px !important; font-size: 11px; }
.workshop-card__facts dd { overflow: hidden; text-align: right; text-overflow: ellipsis; white-space: nowrap; }
.workshop-card .text-link { align-self: flex-start; margin-top: auto; }
.workshop-card .text-link span { transition: transform .25s ease; }
.workshop-card:hover { transform: translateY(-6px); border-color: rgba(37,35,31,.38); box-shadow: 0 24px 60px rgba(43,39,33,.11); }
.workshop-card:hover .workshop-card__media img { transform: scale(1.035); }
.workshop-card:hover .text-link span { transform: translateX(5px); }
.event-status { display: inline-flex; width: fit-content; align-items: center; min-height: 26px; padding: 5px 9px; border-radius: 999px; background: #edf1e8; color: #486042; font-size: 9px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; }
.event-status--few_places { background: #f5e8dc; color: #865536; }.event-status--full { background: #eee7df; color: #675b50; }.event-status--completed { background: #e9e7e1; color: #68645c; }.event-status--cancelled { background: #f6e3df; color: #8a443a; }.event-status--draft,.event-status--hidden { background: #eee; color: #666; }
.event-empty { min-height: 330px; display: grid; place-content: center; justify-items: start; padding: clamp(32px,6vw,70px); border: 1px solid var(--line); background: radial-gradient(circle at 80% 30%,rgba(185,134,114,.23),transparent 23%),var(--white); }
.event-empty > span { color: var(--muted); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }.event-empty h3 { max-width: 620px; margin: 12px 0; font-size: clamp(38px,5vw,70px); }.event-empty p { max-width: 560px; color: var(--muted); }
.event-breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; padding-top: 26px; color: var(--muted); font-size: 11px; }.event-breadcrumbs > * + *::before { content: '→'; margin-right: 9px; }.event-breadcrumbs span { color: var(--ink); }
.event-hero { padding: 30px 0 clamp(70px,9vw,120px); overflow: hidden; }
.event-hero__grid { display: grid; grid-template-columns: minmax(0,.88fr) minmax(460px,1.12fr); gap: clamp(38px,7vw,100px); align-items: center; }
.event-hero__copy h1 { margin: 18px 0 24px; font-size: clamp(56px,7.4vw,112px); line-height: .88; letter-spacing: -.04em; }
.event-hero__copy .lede { max-width: 640px; color: var(--muted); font-size: clamp(17px,2vw,22px); }
.event-hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 32px; }
.event-hero__media { position: relative; min-height: min(70vw,760px); overflow: hidden; background: linear-gradient(145deg,#cfc5b8,#766d61); transform: translateY(var(--ambient-y,0)); }
.event-hero__media::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.2); pointer-events: none; }
.event-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.event-hero__media > span { position: absolute; left: 36px; bottom: 36px; color: rgba(255,255,255,.9); font: 500 clamp(36px,5vw,68px)/.9 var(--serif); }
.event-facts { border-block: 1px solid var(--line); background: var(--white); }
.event-facts dl { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); margin: 0; }
.event-facts dl > div { min-height: 170px; padding: 30px; border-right: 1px solid var(--line); }.event-facts dl > div:last-child { border-right: 0; }
.event-facts dt { margin-bottom: 22px; color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }.event-facts dd { margin: 0; font: 500 clamp(21px,2.2vw,30px)/1.15 var(--serif); }.event-facts a { font: 500 11px/1.4 var(--sans); text-decoration: underline; text-underline-offset: 3px; }
.event-copy .prose { color: #4e4a43; font-size: clamp(16px,1.5vw,19px); line-height: 1.85; }.event-copy .button { margin-top: 26px; }
.event-gallery--page { grid-template-columns: 1.4fr 1fr 1fr; gap: 14px; margin: 0; }.event-gallery--page img { aspect-ratio: 4/3; transition: transform .5s ease,filter .5s ease; }.event-gallery--page img:first-child { grid-row: span 2; height: 100%; }.event-gallery--page img:hover { filter: saturate(1.08); transform: scale(.985); }
.telegram-bridge { min-height: calc(100svh - 76px); display: grid; align-items: center; padding: clamp(70px,10vw,130px) 0; background: radial-gradient(circle at 14% 18%,rgba(185,134,114,.22),transparent 25%); }.telegram-bridge__grid { display: grid; grid-template-columns: 1fr minmax(420px,.8fr); gap: clamp(36px,8vw,110px); align-items: center; }.telegram-bridge h1 { margin: 12px 0 22px; font-size: clamp(54px,7vw,100px); line-height: .9; }.telegram-message textarea { background: var(--paper); }.telegram-message__status { min-height: 24px; margin: 0; color: var(--muted); font-size: 12px; }
.admin-grid--workshops { grid-template-columns: minmax(520px,.95fr) minmax(0,1.05fr); }.workshop-editor { padding: 0; overflow: hidden; }.workshop-editor > form { gap: 0; }.admin-form-section { border-bottom: 1px solid var(--line); background: var(--white); }.admin-form-section summary { padding: 22px 26px; cursor: pointer; font: 500 28px/1 var(--serif); list-style-position: inside; }.admin-form-section > div { display: grid; gap: 18px; padding: 0 26px 28px; }.admin-form-section small { color: var(--muted); }.admin-workshop-list { display: grid; gap: 14px; }.admin-workshop-card { display: grid; grid-template-columns: 160px 1fr; gap: 20px; padding: 0; overflow: hidden; }.admin-workshop-card > img { width: 100%; height: 100%; min-height: 230px; object-fit: cover; }.admin-workshop-card > div { padding: 22px 22px 22px 0; }.admin-workshop-card h2 { margin: 10px 0; font-size: 32px; }.admin-workshop-card p { margin: 8px 0; color: var(--muted); font-size: 12px; }
.admin-workshop-list--overview { grid-template-columns: repeat(2,minmax(0,1fr)); }.admin-workshop-list--overview .admin-workshop-card { grid-template-columns: minmax(180px,.72fr) minmax(0,1.28fr); }
.motion-ready .motion-reveal { opacity: 0; transform: translateY(32px); transition: opacity .75s ease,transform .85s cubic-bezier(.2,.7,.2,1); }.motion-ready .motion-reveal--1 { transform: translateY(18px) scale(.985); }.motion-ready .motion-reveal--2 { transform: translateY(42px); }.motion-ready .motion-reveal.is-visible { opacity: 1; transform: none; }
.home-hero__media { transform: translateY(var(--ambient-y,0)) scale(1.025); transition: transform .2s linear; }.home-hero__media::before { content: ''; position: absolute; inset: -25%; z-index: 1; background: radial-gradient(circle at 72% 24%,rgba(255,242,223,.23),transparent 24%); animation: micaAmbient 13s ease-in-out infinite alternate; pointer-events: none; }.founders__media .media-surface--large { transform: translateY(var(--ambient-y,0)); transition: transform .2s linear; }
.product-card,.story-card { transition: transform .35s ease,box-shadow .35s ease; }.product-card img,.story-card > img { transition: transform .65s cubic-bezier(.2,.7,.2,1),filter .45s ease; }.product-card:hover,.story-card:hover { transform: translateY(-5px); box-shadow: 0 22px 56px rgba(42,39,34,.09); }.product-card:hover img,.story-card:hover > img { transform: scale(1.025); filter: saturate(1.04); }.product-card,.story-card { overflow: hidden; }
.faq-list details::details-content { opacity: 0; transform: translateY(-8px); transition: opacity .25s ease,transform .25s ease,content-visibility .25s allow-discrete; }.faq-list details[open]::details-content { opacity: 1; transform: none; }
@keyframes micaAmbient { from { transform: translate3d(-1.5%,-1%,0) scale(1); } to { transform: translate3d(2%,1.5%,0) scale(1.04); } }
.admin-body { background: #ebe6dc; }.admin-top { display: flex; justify-content: space-between; gap: 20px; padding: 20px 28px; background: var(--ink); color: var(--white); }.admin-top nav { display: flex; gap: 20px; }.admin-shell { width: min(1500px, calc(100% - 40px)); margin: 32px auto 80px; }.admin-login { width: min(520px, calc(100% - 32px)); margin: 10vh auto; }.admin-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }.admin-tabs a { padding: 11px 15px; border: 1px solid var(--line); background: var(--white); }.admin-tabs a.active { background: var(--ink); color: var(--white); }.admin-grid { display: grid; grid-template-columns: minmax(360px,.8fr) minmax(0,1.2fr); gap: 24px; align-items: start; }.admin-cards { display: grid; gap: 14px; }.admin-cards .platform-card { padding: 22px; }.admin-cards h2 { font-size: 30px; }.admin-actions { display: flex; flex-wrap: wrap; gap: 10px; }.admin-actions form { margin: 0; }.admin-actions .button { min-height: 42px; padding: 9px 15px; }.admin-notice { padding: 14px; border-left: 3px solid var(--sage); background: #f6fff2; }

.home-hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: linear-gradient(135deg, #b8ad9d, #5c5a54 58%, #25231f);
  color: var(--white);
}
.home-hero__media { position: absolute; inset: 0; }
.home-hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(24,23,20,.8), rgba(24,23,20,.15) 70%), linear-gradient(0deg, rgba(24,23,20,.7), transparent 55%); }
.home-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.home-hero__content { position: relative; z-index: 1; padding-block: clamp(80px, 12vw, 150px) 36px; }
.home-hero h1 { max-width: 920px; }
.home-hero p { max-width: 670px; font-size: clamp(17px, 2vw, 22px); color: rgba(255,253,248,.8); }
.home-hero .eyebrow { color: rgba(255,253,248,.7); }
.hero-choice { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); margin-top: clamp(52px, 8vw, 92px); border-top: 1px solid rgba(255,255,255,.34); border-left: 1px solid rgba(255,255,255,.34); }
.hero-choice a { min-height: 154px; display: grid; align-content: space-between; gap: 10px; padding: 24px; border-right: 1px solid rgba(255,255,255,.34); border-bottom: 1px solid rgba(255,255,255,.34); background: rgba(22,21,18,.12); transition: background 180ms ease; }
.hero-choice a:hover { background: rgba(255,255,255,.1); }
.hero-choice span,.hero-choice small { color: rgba(255,253,248,.68); font-size: 11px; letter-spacing: .1em; }
.hero-choice strong { font-family: var(--serif); font-size: clamp(24px,2.5vw,36px); font-weight: 500; line-height: 1; }

.editorial-triptych,.scenario-pair { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: clamp(18px,3vw,36px); }
.editorial-triptych article { display: grid; align-content: start; }
.editorial-triptych article:nth-child(2) { margin-top: 70px; }
.editorial-triptych h3 { margin-top: 26px; }
.editorial-triptych p { color: var(--muted); }
.editorial-triptych .text-link { justify-self: start; margin-top: 12px; }
.media-surface,.gift-surface { position: relative; min-height: 440px; overflow: hidden; background: radial-gradient(circle at 70% 22%, rgba(255,255,255,.62), transparent 18%), linear-gradient(145deg,#cfc5b8,#867d70); }
.media-surface::after,.gift-surface::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(37,35,31,.12); pointer-events: none; }
.media-surface > span,.gift-surface > span { position: absolute; left: 22px; bottom: 18px; z-index: 1; color: rgba(255,255,255,.9); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.media-surface img { width: 100%; height: 100%; object-fit: cover; }
.media-surface.has-image > span { display: none; }
.media-surface--large { min-height: clamp(500px,60vw,720px); }
.gift-surface { background: radial-gradient(circle at 50% 45%, #f7eee4 0 14%, transparent 15%), radial-gradient(circle at 50% 45%, transparent 0 27%, rgba(255,255,255,.4) 28% 29%, transparent 30%), linear-gradient(145deg,#c7a993,#7d6b5e); }

.product-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.product-card { display: flex; flex-direction: column; min-height: 430px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.product-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; margin-bottom: 24px; }
.product-card h3 { font-size: clamp(30px,3vw,44px); }
.product-card p { color: var(--muted); }
.product-card strong { margin-top: auto; padding-top: 18px; }
.product-card .text-link { align-self: flex-start; margin-top: 14px; }

.story-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; }
.story-card { display: grid; grid-template-columns: minmax(160px,.8fr) 1fr; min-height: 330px; border: 1px solid var(--line); background: var(--white); }
.story-card > img { width: 100%; height: 100%; object-fit: cover; }
.story-card > div { padding: clamp(24px,4vw,44px); }
.story-card h3 { font-size: clamp(30px,4vw,48px); }
.story-card p { color: var(--muted); }
.story-meta { padding-top: 14px; border-top: 1px solid var(--line); font-size: 13px; }
.empty-state { min-height: 190px; display: grid; align-content: center; padding: clamp(28px,5vw,56px); border: 1px solid var(--line); background: rgba(255,255,255,.38); }
.empty-state h3 { max-width: 560px; }
.empty-state p { max-width: 620px; color: var(--muted); }

.scenario-pair { grid-template-columns: repeat(2,minmax(0,1fr)); gap: clamp(30px,6vw,80px); }
.scenario-pair .media-surface,.scenario-pair .gift-surface { margin-bottom: 32px; }
.scenario-pair p { color: var(--muted); }
.scenario-pair .button { margin-top: 18px; }
.founders__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(44px,8vw,110px); align-items: center; }
.founders__media { position: relative; padding-right: 14%; padding-bottom: 14%; }
.founders__detail { position: absolute; right: 0; bottom: 0; width: 42%; min-height: 260px; border: 8px solid var(--white); }
.role-list { margin: 30px 0; border-top: 1px solid var(--line); }
.role-list p { display: grid; grid-template-columns: 100px 1fr; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.role-list strong { font-weight: 600; }

.trust-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.trust-grid article { min-height: 210px; padding: 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-grid h3 { margin: 28px 0 10px; font-size: 28px; }
.trust-grid p { color: var(--muted); font-size: 14px; }
.line-icon { display: inline-grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; font-size: 12px; }
.final-cta--routes { min-height: 780px; background: radial-gradient(circle at 75% 20%,rgba(255,255,255,.16),transparent 22%),linear-gradient(140deg,#84786d,#262521 66%); }
.final-cta__inner > p { max-width: 560px; color: rgba(255,255,255,.72); }
.final-routes { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); margin: 40px 0 30px; border-top: 1px solid rgba(255,255,255,.3); border-left: 1px solid rgba(255,255,255,.3); }
.final-routes a { min-height: 120px; display: grid; place-items: center; padding: 20px; border-right: 1px solid rgba(255,255,255,.3); border-bottom: 1px solid rgba(255,255,255,.3); font-family: var(--serif); font-size: clamp(22px,2.6vw,34px); text-align: center; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { padding: 22px 0; border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; font-family: var(--serif); font-size: 28px; }
.faq-list p { max-width: 740px; margin: 16px 0 0; color: var(--muted); }
.form-trap { position: absolute !important; left: -9999px !important; }

.admin-top { position: sticky; top: 0; z-index: 80; }
.admin-layout { display: grid; grid-template-columns: 250px minmax(0,1fr); min-height: calc(100svh - 64px); }
.admin-sidebar { padding: 28px 18px 60px; border-right: 1px solid var(--line); background: #f5f1e9; }
.admin-sidebar section { display: grid; gap: 3px; margin-bottom: 24px; }
.admin-sidebar section > span { padding: 0 12px 7px; color: var(--muted); font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.admin-sidebar a { padding: 11px 12px; border-radius: 3px; color: #4e4a44; font-size: 13px; transition: background .18s ease,color .18s ease; }
.admin-sidebar a:hover,.admin-sidebar a:focus-visible { background: rgba(255,255,255,.8); }
.admin-sidebar a.active { background: var(--ink); color: var(--white); }
.admin-layout > .admin-shell { width: min(1320px,calc(100% - 48px)); margin: 32px auto 80px; min-width: 0; }
.admin-breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 22px; color: var(--muted); font-size: 12px; }
.admin-breadcrumbs > * + *::before { content: '→'; margin-right: 8px; color: #a59e93; }
.admin-breadcrumbs strong { color: var(--ink); font-weight: 500; }
.admin-page-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 30px; }
.admin-page-head h1 { margin: 7px 0 9px; }
.admin-page-head p { max-width: 720px; margin: 0; color: var(--muted); }
.admin-stats { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; margin-bottom: 28px; }
.admin-stats a { display: grid; gap: 8px; padding: 24px; border: 1px solid var(--line); background: var(--white); }
.admin-stats strong { font: 500 48px/1 var(--serif); }
.admin-stats span { color: var(--muted); font-size: 12px; }
.admin-quick { margin-bottom: 24px; }
.admin-quick > div { display: flex; flex-wrap: wrap; gap: 10px; }
.admin-recent p { display: grid; grid-template-columns: 130px minmax(0,1fr) auto; gap: 18px; align-items: center; margin: 0; padding: 12px 0; border-bottom: 1px solid var(--line); }
.admin-recent p:last-child { border-bottom: 0; }
.admin-recent span,.admin-recent small { color: var(--muted); font-size: 11px; }
.site-page-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.site-page-card { display: flex; flex-direction: column; min-height: 260px; }
.site-page-card p { color: var(--muted); }
.site-page-card .admin-actions { margin-top: auto; padding-top: 20px; }
.site-section-list { display: grid; gap: 14px; }
.site-section-card { display: grid; grid-template-columns: 190px minmax(0,1fr); gap: 24px; align-items: center; padding: 0; overflow: hidden; }
.site-section-card > img,.site-section-placeholder { width: 100%; height: 100%; min-height: 180px; object-fit: cover; background: linear-gradient(145deg,#d4c8b8,#8e8174); }
.site-section-placeholder { display: grid; place-items: center; color: rgba(255,255,255,.72); font: 500 38px/1 var(--serif); }
.site-section-card > div:last-child { padding: 22px 24px 22px 0; }
.site-section-card h2 { margin: 6px 0; font-size: clamp(28px,3vw,40px); }
.site-section-card p { max-width: 760px; color: var(--muted); }
.site-section-editor { gap: 24px; }
.site-field-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.site-field-grid label:has(textarea) { grid-column: 1 / -1; }
.site-media-field { display: grid; grid-template-columns: minmax(240px,.8fr) minmax(300px,1.2fr); gap: 24px; padding: 24px 0; border-top: 1px solid var(--line); }
.site-media-preview { display: grid; place-items: center; min-height: 250px; overflow: hidden; background: var(--paper); color: var(--muted); }
.site-media-preview img { width: 100%; height: 100%; max-height: 420px; object-fit: cover; }
.site-media-controls { display: grid; align-content: start; gap: 15px; }
.site-media-controls h3 { margin: 0; }
.admin-savebar { position: sticky; bottom: 14px; z-index: 20; display: flex; justify-content: flex-end; gap: 10px; padding: 12px; border: 1px solid var(--line); background: rgba(245,241,233,.94); backdrop-filter: blur(12px); box-shadow: 0 10px 40px rgba(42,39,34,.12); }
.media-upload-card { max-width: 680px; margin-bottom: 24px; }
.media-library-tools { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 20px; }.media-library-tools label { display: grid; flex: 1; max-width: 520px; gap: 7px; color: var(--muted); font-size: 12px; }.media-library-tools input { min-height: 48px; padding: 12px 14px; border: 1px solid var(--line); background: var(--white); }.media-library-tools > div { display: flex; flex-wrap: wrap; gap: 8px; }.media-library-tools .button { min-height: 42px; padding: 9px 14px; }.media-library-tools .button.active { background: var(--ink); color: var(--white); }
.media-library-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.media-library-card { padding: 16px; overflow: hidden; }
.media-library-card > img { width: 100%; aspect-ratio: 4/3; object-fit: cover; margin-bottom: 15px; }
.media-library-card h2 { overflow-wrap: anywhere; font-size: 20px; }
.admin-badge { display: inline-flex; padding: 5px 8px; border-radius: 999px; font-size: 10px; font-weight: 600; text-transform: uppercase; }
.admin-badge.is-published { background: #e8f2e2; color: #416039; }
.admin-badge.is-draft { background: #eee9df; color: #6f665b; }

.builder-intro { display: grid; grid-template-columns: minmax(0,1.5fr) minmax(260px,1fr); gap: 28px; align-items: end; margin-bottom: 30px; }
.builder-intro h1 { margin: 8px 0; }
.builder-preview { display: flex; flex-wrap: wrap; gap: 8px; }
.builder-preview a { padding: 9px 12px; border: 1px solid var(--line); background: var(--white); font-size: 12px; }
.builder-settings { margin-bottom: 64px; }
.builder-groups { display: grid; gap: 12px; }
.builder-panel { border: 1px solid var(--line); background: var(--white); }
.builder-panel summary { padding: 18px 20px; cursor: pointer; font: 500 26px/1.1 var(--serif); }
.builder-fields { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; padding: 0 20px 22px; }
.builder-fields label:has(textarea) { grid-column: 1 / -1; }
.builder-save { align-self: start; }
.builder-blocks { display: grid; grid-template-columns: minmax(320px,.8fr) minmax(0,1.2fr); gap: 28px; align-items: start; }
.builder-block-card > img { width: 100%; aspect-ratio: 16/8; object-fit: cover; margin-bottom: 18px; }
.admin-hint { margin: -4px 0 4px; padding: 12px 14px; border-left: 3px solid var(--accent); background: var(--tint); color: var(--muted); font-size: 13px; }
.custom-block--white { background: var(--white); }
.custom-block--paper { background: var(--paper); }
.custom-block--tint { background: var(--tint); }
.custom-block--dark { background: var(--ink); color: var(--white); }
.custom-block__inner { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(320px,.95fr); gap: clamp(30px,6vw,90px); align-items: center; }
.custom-block__media img { width: 100%; max-height: 680px; object-fit: cover; }
.custom-block__copy { max-width: 660px; }
.custom-block__copy h2 { margin: 8px 0 20px; }
.custom-block__copy p { color: var(--muted); white-space: normal; }
.custom-block--dark .custom-block__copy p { color: rgba(255,255,255,.72); }
.custom-block__copy .button { margin-top: 20px; }
.custom-block--text .custom-block__inner { display: block; }
.custom-block--text .custom-block__copy { margin-inline: auto; text-align: center; }
.custom-block--banner { padding-block: clamp(100px,14vw,210px); }
.custom-block--banner .custom-block__inner { grid-template-columns: 1fr; }
.custom-block--banner .custom-block__media { display: none; }
.custom-block--cards .custom-block__inner { padding: clamp(28px,5vw,70px); border: 1px solid var(--line); background: var(--white); }

.admin-search { display: flex; gap: 10px; margin-bottom: 18px; }
.admin-search input { flex: 1; min-width: 0; padding: 12px; border: 1px solid var(--line); background: var(--white); }
.admin-code { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.admin-code code { padding: 8px 10px; background: var(--paper); font-size: 18px; letter-spacing: .12em; }
.copy-button { padding: 8px 10px; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.toast { position: fixed; right: 24px; bottom: 24px; z-index: 100; padding: 12px 18px; background: var(--ink); color: var(--white); opacity: 0; transform: translateY(12px); pointer-events: none; transition: .2s ease; }
.toast.is-visible { opacity: 1; transform: none; }
.analytics-consent { position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 120; display: flex; align-items: center; justify-content: space-between; gap: 24px; max-width: 860px; margin-inline: auto; padding: 18px 20px; border: 1px solid rgba(255,255,255,.18); background: rgba(37,35,31,.96); color: var(--white); box-shadow: 0 18px 60px rgba(0,0,0,.25); }
.analytics-consent p { display: grid; gap: 4px; margin: 0; }
.analytics-consent span { color: rgba(255,255,255,.68); font-size: 12px; }
.analytics-consent div { display: flex; gap: 8px; }
.analytics-consent button { min-height: 40px; padding: 8px 14px; border: 1px solid rgba(255,255,255,.35); background: transparent; color: var(--white); cursor: pointer; white-space: nowrap; }
.analytics-consent button:last-child { background: var(--white); color: var(--ink); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.partner-showcase { background: var(--white); }
.partner-showcase__inner { padding: clamp(28px,5vw,58px); display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: clamp(24px,4vw,54px); border: 1px solid var(--line); background: linear-gradient(135deg,var(--paper),#fff); }
.partner-showcase__mark { width: 82px; height: 82px; display: grid; place-items: center; border-radius: 50%; color: var(--paper); background: var(--ink); font: 600 34px var(--serif); }
.partner-showcase h2 { margin: 3px 0 8px; font: 500 clamp(40px,5vw,62px)/1 var(--serif); }
.partner-showcase p { max-width: 680px; margin: 0; color: var(--muted); }
.partner-showcase .button { white-space: nowrap; }

@media (max-width: 1120px) {
  .admin-layout { display: block; }
  .admin-sidebar { position: static; display: flex; gap: 10px; padding: 14px 20px; overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .admin-sidebar section { display: flex; flex: 0 0 auto; align-items: center; margin: 0; }
  .admin-sidebar section > span { display: none; }
  .admin-sidebar a { white-space: nowrap; }
  .admin-layout > .admin-shell { width: min(100% - 40px,1320px); }
  .admin-stats { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .media-library-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .menu-button { display: block; }
  .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    min-height: calc(100svh - 76px);
    padding: 40px 20px;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    font-family: var(--serif);
    font-size: 34px;
  }
  .site-nav.is-open { display: flex; }
  .header-cta { display: none; }
  .hero__intro,
  .section-head--row,
  .split { grid-template-columns: 1fr; }
  .hero__intro { align-items: start; }
  .hero__intro .text-link { justify-self: start; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .step:nth-child(3) { border-left: 0; }
  .gallery-strip { grid-template-columns: 1fr 1fr; }
  .gallery-strip .media-frame:first-child { grid-column: 1 / -1; }
  .gallery-strip .media-frame:nth-child(2),
  .gallery-strip .media-frame:nth-child(3) { margin: 0; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > :first-child { grid-column: 1 / -1; }
  .platform-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-grid { grid-template-columns: 1fr; }
  .admin-grid--workshops { grid-template-columns: 1fr; }
  .admin-workshop-list--overview { grid-template-columns: 1fr; }
  .workshop-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .event-hero__grid { grid-template-columns: 1fr 1fr; }
  .event-facts dl { grid-template-columns: repeat(2,minmax(0,1fr)); }.event-facts dl > div:nth-child(2) { border-right: 0; }.event-facts dl > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .hero-choice,.editorial-triptych,.product-grid,.trust-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .hero-choice a:last-child,.editorial-triptych article:last-child { grid-column: 1 / -1; }
  .editorial-triptych article:nth-child(2) { margin-top: 0; }
  .founders__grid { grid-template-columns: 1fr; }
  .builder-intro,.builder-blocks,.custom-block__inner { grid-template-columns: 1fr; }
  .partner-showcase__inner { grid-template-columns: auto 1fr; }
  .partner-showcase .button { grid-column: 2; justify-self: start; }
}

@media (max-width: 640px) {
  .admin-top { padding: 16px; }
  .admin-top nav a:first-child { display: none; }
  .admin-layout > .admin-shell { width: min(100% - 24px,1320px); margin-top: 22px; }
  .admin-page-head { align-items: stretch; flex-direction: column; }
  .admin-stats,.site-page-grid,.media-library-grid { grid-template-columns: 1fr; }
  .media-library-tools { align-items: stretch; flex-direction: column; }.media-library-tools label { max-width: none; }
  .workshop-grid,.event-hero__grid,.event-facts dl,.telegram-bridge__grid { grid-template-columns: 1fr; }
  .workshop-card__body { padding: 20px; }.workshop-card h3 { min-height: auto; }.workshop-card__teaser { min-height: auto; }
  .event-hero { padding-top: 18px; }.event-hero__grid { gap: 36px; }.event-hero__copy h1 { font-size: clamp(50px,16vw,72px); }.event-hero__media { min-height: 110vw; }.event-hero__actions { align-items: stretch; flex-direction: column; }.event-hero__actions .text-link { justify-content: flex-start; }
  .event-facts dl > div { min-height: 0; padding: 24px 4px; border-right: 0; border-bottom: 1px solid var(--line); }.event-facts dl > div:last-child { border-bottom: 0; }
  .event-gallery--page { grid-template-columns: 1fr 1fr; }.event-gallery--page img:first-child { grid-column: 1 / -1; grid-row: auto; height: auto; }
  .telegram-bridge__grid { gap: 28px; }.telegram-bridge h1 { font-size: 54px; }.telegram-message .actions { align-items: stretch; flex-direction: column; }
  .admin-workshop-card { grid-template-columns: 1fr; }.admin-workshop-card > img { min-height: 220px; aspect-ratio: 4/3; }.admin-workshop-card > div { padding: 22px; }
  .admin-recent p { grid-template-columns: 1fr; gap: 4px; }
  .site-section-card { grid-template-columns: 1fr; gap: 0; }
  .site-section-card > img,.site-section-placeholder { min-height: 210px; }
  .site-section-card > div:last-child { padding: 22px; }
  .site-field-grid,.site-media-field { grid-template-columns: 1fr; }
  .site-field-grid label:has(textarea) { grid-column: auto; }
  .admin-savebar { bottom: 6px; }
  .admin-savebar .button { width: auto; }
  .shell { width: min(100% - 28px, var(--max)); }
  .hero { min-height: auto; }
  .hero__intro { margin-bottom: 56px; }
  .hero__copy { font-size: 16px; }
  .button { width: 100%; }
  .path-grid,
  .collection-grid { grid-template-columns: 1fr; }
  .path-card { min-height: 280px; }
  .media-frame--portrait,
  .collection-card .media-frame { min-height: 470px; }
  .steps { grid-template-columns: 1fr; }
  .step + .step { padding-left: 0; border-left: 0; }
  .review-placeholder { grid-template-columns: 1fr; }
  .review-placeholder__portrait { min-height: 360px; }
  .schedule-empty { align-items: start; flex-direction: column; }
  .schedule-empty .button { width: auto; }
  .analysis-form { flex-direction: column; }
  .gallery-strip { grid-template-columns: 1fr; }
  .gallery-strip .media-frame:first-child { grid-column: auto; }
  .sub-cta { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main > :first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .platform-grid, .form-grid { grid-template-columns: 1fr; }
  .choice-tabs { flex-direction: column; }
  .home-hero { min-height: auto; }
  .home-hero__content { padding-top: 80px; }
  .hero-choice,.editorial-triptych,.product-grid,.story-grid,.scenario-pair,.trust-grid,.final-routes { grid-template-columns: 1fr; }
  .hero-choice a:last-child,.editorial-triptych article:last-child { grid-column: auto; }
  .media-surface,.gift-surface { min-height: 360px; }
  .media-surface--large { min-height: 480px; }
  .story-card { grid-template-columns: 1fr; }
  .story-card > img { aspect-ratio: 4/3; }
  .founders__media { padding-right: 0; padding-bottom: 22%; }
  .founders__detail { width: 48%; min-height: 190px; }
  .trust-grid article { min-height: 180px; }
  .admin-search { flex-direction: column; }
  .builder-fields { grid-template-columns: 1fr; }
  .builder-fields label:has(textarea) { grid-column: auto; }
  .analytics-consent { align-items: stretch; flex-direction: column; }
  .analytics-consent div { display: grid; grid-template-columns: 1fr 1fr; }
  .partner-showcase__inner { grid-template-columns: 1fr; }
  .partner-showcase .button { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal,.motion-ready .motion-reveal { opacity: 1; transform: none; }
  .home-hero__media,.event-hero__media,.founders__media .media-surface--large { transform: none !important; }
  .home-hero__media::before { animation: none; }
}


/* 20260817 admin visual revision */
.button--pill {
  min-height: 46px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(42,39,34,.1);
  text-decoration: none;
  line-height: 1.15;
  text-align: center;
}
.button--rose { background: #9b5f65; color: #fff; }
.button--sage { background: #647866; color: #fff; }
.button--sand { background: #d8b579; color: #2a2722; }
.button--rose:hover,.button--sage:hover,.button--sand:hover { transform: translateY(-2px); filter: saturate(1.04); }
.section-head__cta { flex: 0 0 auto; }
.editorial-triptych { align-items: stretch; }
.editorial-triptych article {
  grid-template-rows: auto auto 1fr auto;
  min-width: 0;
  height: 100%;
}
.editorial-triptych article:nth-child(2) { margin-top: 0; }
.editorial-triptych .media-surface {
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 5;
}
.editorial-triptych .button { justify-self: start; align-self: end; margin-top: 16px; }
.scenario-single { max-width: 1040px; }
.scenario-single article {
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(280px,.85fr);
  align-items: center;
  gap: clamp(28px,6vw,76px);
}
.scenario-single .media-surface { min-height: 520px; }
.scenario-single__copy p { color: var(--muted); }
.platform-grid > *, .platform-card, .platform-card dl, .platform-card dl div { min-width: 0; }
.platform-card p, .platform-card h2, .platform-card h3, .platform-card dd {
  overflow-wrap: anywhere;
  word-break: normal;
}
.platform-card dl div { align-items: start; }
.platform-card dt { flex: 0 0 34%; }
.platform-card dd { max-width: 66%; }
.media-card > img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.product-card .button { align-self: flex-start; margin-top: 16px; }
@media (max-width: 760px) {
  .section-head--row { align-items: flex-start; }
  .section-head__cta { margin-top: 14px; }
  .scenario-single article { grid-template-columns: 1fr; }
  .scenario-single .media-surface { min-height: 0; aspect-ratio: 4 / 5; }
  .editorial-triptych .button { width: 100%; justify-self: stretch; }
  .platform-card dl div { display: grid; grid-template-columns: minmax(92px,.8fr) minmax(0,1.2fr); gap: 12px; }
  .platform-card dt, .platform-card dd { max-width: none; text-align: left; }
}
/* 20260817 mobile platform button containment */
@media (max-width:720px){.platform-card .button{width:calc(100% - 56px)}}

/* 20260817 equal tablet direction cards */
@media (min-width:761px) and (max-width:1020px){.editorial-triptych article:last-child{width:calc((100% - 3vw)/2);justify-self:center}}

/* 20260817 catalog product boundaries */
.catalog-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}
.catalog-grid .media-card > dl {
  margin: 22px 28px;
}
.catalog-grid .media-card > dl > div {
  padding-top: 12px;
}
@media (max-width: 760px) {
  .catalog-grid { grid-template-columns: 1fr; }
}


/* Production refinement: product gallery and unified CTAs — 2026-08-18 */
.section-head--row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}
.section-head--row > div { min-width: 0; }
.section-head__cta { align-self: center; justify-self: end; width: auto; }
.header-cta { flex: 0 0 auto; padding: 10px 17px; font-size: .82rem; white-space: nowrap; }
.founders__cta { align-self: flex-start; margin-top: 8px; }

.product-gallery { margin: -30px -30px 26px; }
.product-gallery__stage {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-deep);
  isolation: isolate;
}
.product-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.018);
  transition: opacity .32s ease, transform .5s ease;
}
.product-gallery__image.is-active { opacity: 1; transform: scale(1); }
.product-gallery__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.64);
  border-radius: 50%;
  color: var(--white);
  background: rgba(37,35,31,.62);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .2s ease, transform .2s ease;
}
.product-gallery__nav:hover { background: rgba(37,35,31,.88); transform: translateY(-50%) scale(1.06); }
.product-gallery__nav--prev { left: 14px; }
.product-gallery__nav--next { right: 14px; }
.product-gallery__counter {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(37,35,31,.68);
  font-size: .76rem;
  letter-spacing: .08em;
}
.product-gallery__thumbs { display: flex; gap: 8px; padding: 10px 30px 0; overflow-x: auto; }
.product-gallery__thumb {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  opacity: .58;
  transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
}
.product-gallery__thumb:hover,
.product-gallery__thumb.is-active { border-color: var(--clay); opacity: 1; transform: translateY(-2px); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.admin-gallery { margin: 0; padding: 0; border: 0; }
.admin-gallery legend { margin-bottom: 10px; font-weight: 700; }
.admin-gallery__grid,
.admin-gallery-preview { display: grid; grid-template-columns: repeat(auto-fill, minmax(112px, 1fr)); gap: 12px; }
.admin-gallery__item { position: relative; gap: 7px; padding: 8px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.admin-gallery__item img,
.admin-gallery-preview img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 10px; }
.admin-gallery__item span { display: flex; align-items: center; gap: 7px; font-size: .85rem; }
.admin-gallery__item small { color: var(--clay); font-weight: 700; }
.admin-gallery-preview:not(:empty) { margin-top: 12px; padding: 12px; border: 1px dashed var(--line); border-radius: 14px; }
.platform-form label > small { color: var(--muted); font-size: .8rem; font-weight: 500; }

.site-footer { text-align: center; }
.site-footer .footer-main { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 30px; }
.site-footer .footer-nav { align-items: center; }
.site-footer .footer-bottom { justify-content: center; text-align: center; flex-wrap: wrap; gap: 10px 28px; }
.final-cta__inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
.final-cta__inner > * { max-width: 760px; }
.final-routes { justify-content: center; }

@media (max-width: 760px) {
  .section-head--row { grid-template-columns: 1fr; align-items: start; gap: 20px; }
  .section-head__cta { justify-self: start; width: auto; }
  .product-gallery { margin: -22px -22px 22px; }
  .product-gallery__thumbs { padding-inline: 22px; }
  .product-gallery__nav { width: 38px; height: 38px; }
  .site-footer .footer-main { gap: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .product-gallery__image,
  .product-gallery__nav,
  .product-gallery__thumb { transition: none; }
}

/* Production QA geometry refinement — 2026-08-18 */
.section-head--row h2 { margin-bottom: 0; }
.catalog-grid .media-card > .product-gallery {
  width: 100%;
  max-width: none;
  margin: 0 0 26px;
}
.site-footer .footer-main {
  grid-template-columns: 1.2fr repeat(2, minmax(0, .55fr));
  align-items: start;
}
@media (max-width: 760px) {
  .site-footer .footer-main { grid-template-columns: 1fr; }
}

/* Production visual regression fixes — 2026-08-18 */
.section-head--row {
  grid-template-columns: 1fr minmax(280px, 440px);
  align-items: end;
  gap: 50px;
}

.section-head--row.section-head--cta-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.section-head--cta-row h2 {
  margin-bottom: 0;
}

.product-gallery__stage .product-gallery__image {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
}

.product-gallery__stage .product-gallery__image.is-active {
  pointer-events: auto;
}

.catalog-grid .media-card {
  padding-bottom: clamp(36px, 3.5vw, 48px);
}

.catalog-grid .media-card > .product-gallery {
  margin-bottom: 30px;
}

.catalog-grid .media-card > .eyebrow,
.catalog-grid .media-card > h2,
.catalog-grid .media-card > p,
.catalog-grid .media-card > dl,
.catalog-grid .media-card > .button {
  margin-left: clamp(34px, 3.2vw, 44px);
  margin-right: clamp(34px, 3.2vw, 44px);
}

@media (max-width: 760px) {
  .section-head--row,
  .section-head--row.section-head--cta-row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
  }

  .catalog-grid .media-card {
    padding-bottom: 30px;
  }

  .catalog-grid .media-card > .product-gallery {
    margin-bottom: 24px;
  }

  .catalog-grid .media-card > .eyebrow,
  .catalog-grid .media-card > h2,
  .catalog-grid .media-card > p,
  .catalog-grid .media-card > dl,
  .catalog-grid .media-card > .button {
    margin-left: 24px;
    margin-right: 24px;
  }
}

/* Conversion dock and lead attribution release - 2026-08-24 */
.lead-dock {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 110;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(37, 35, 31, .14);
  border-radius: 999px;
  background: rgba(255, 253, 248, .94);
  box-shadow: 0 18px 50px rgba(42, 39, 34, .2);
  backdrop-filter: blur(14px);
  transition: opacity .24s ease, transform .24s ease;
}

.lead-dock a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .01em;
  text-decoration: none;
  white-space: nowrap;
}

.lead-dock__primary { color: var(--white); background: rgb(155, 95, 101); }
.lead-dock__primary:hover { color: var(--white); background: rgb(137, 82, 88); }
.lead-dock__secondary { color: var(--ink); background: var(--paper-deep); }
.lead-dock__secondary:hover { background: #e2d9cb; }
.lead-dock a:focus-visible { outline: 3px solid rgba(155, 95, 101, .35); outline-offset: 2px; }
.analytics-consent ~ .lead-dock { opacity: 0; transform: translateY(16px); pointer-events: none; }

@media (max-width: 760px) {
  .lead-dock {
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
    border-radius: 18px;
  }

  .lead-dock a {
    min-width: 0;
    min-height: 48px;
    padding: 12px 10px;
    white-space: normal;
    text-align: center;
  }

  .has-lead-dock .site-footer { padding-bottom: 104px; }
}

/* Production cross-page CTA consistency — 2026-08-18 */
.text-link.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgb(155, 95, 101);
  box-shadow: 0 14px 30px rgba(96, 56, 59, 0.18);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.text-link.header-cta::after {
  content: none;
}

.text-link.header-cta:hover {
  color: var(--white);
  background: rgb(137, 82, 88);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(96, 56, 59, 0.24);
}

/* Production homepage product card boundary fix - 2026-08-18 */
[data-home-jewelry] .product-card {
  padding-bottom: clamp(30px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  background-clip: padding-box;
  isolation: isolate;
}

[data-home-jewelry] .product-card > img {
  margin-bottom: 28px;
  transform-origin: center;
}

[data-home-jewelry] .product-card > .eyebrow,
[data-home-jewelry] .product-card > h3,
[data-home-jewelry] .product-card > p,
[data-home-jewelry] .product-card > strong,
[data-home-jewelry] .product-card > .button {
  margin-left: clamp(28px, 3vw, 36px);
  margin-right: clamp(28px, 3vw, 36px);
}

[data-home-jewelry] .product-card:hover {
  border-color: rgba(37, 35, 31, .24);
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(42, 39, 34, .12);
}

[data-home-jewelry] .product-card:hover > img {
  transform: scale(1.012);
}

@media (max-width: 760px) {
  [data-home-jewelry] .product-card {
    padding-bottom: 30px;
  }

  [data-home-jewelry] .product-card > .eyebrow,
  [data-home-jewelry] .product-card > h3,
  [data-home-jewelry] .product-card > p,
  [data-home-jewelry] .product-card > strong,
  [data-home-jewelry] .product-card > .button {
    margin-left: 24px;
    margin-right: 24px;
  }
}

/* Production marketplace cards and product reviews - 2026-08-18 */
[data-home-jewelry] {
  align-items: stretch;
}

[data-home-jewelry] .marketplace-card {
  min-width: 0;
  padding: 0;
  border: 1px solid rgba(37, 35, 31, .16);
  border-radius: 18px;
  background: var(--white);
  overflow: hidden;
}

[data-home-jewelry] .marketplace-card:hover {
  border-color: rgba(155, 95, 101, .48);
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(42, 39, 34, .12);
}

.marketplace-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper-deep);
}

.marketplace-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.marketplace-card:hover .marketplace-card__media img {
  transform: scale(1.018);
}

.marketplace-card__placeholder {
  display: grid;
  place-items: center;
  min-height: 100%;
  color: var(--muted);
}

.marketplace-card__availability {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 253, 248, .92);
  box-shadow: 0 8px 24px rgba(42, 39, 34, .12);
  font-size: 12px;
  font-weight: 600;
}

.marketplace-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  padding: 26px clamp(24px, 2.5vw, 32px) 30px;
}

.marketplace-card__body > .eyebrow,
.marketplace-card__body > h3,
.marketplace-card__body > p,
.marketplace-card__body > .product-rating,
.marketplace-card__body > .marketplace-card__footer {
  margin-left: 0;
  margin-right: 0;
}

.marketplace-card__body h3 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.marketplace-card__body h3 a {
  color: inherit;
  text-decoration: none;
}

.marketplace-card__description {
  display: -webkit-box;
  min-height: 3.4em;
  margin-top: 16px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.product-rating__stars {
  color: #a87345;
  letter-spacing: 2px;
  white-space: nowrap;
}

.marketplace-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 24px;
}

.marketplace-card__footer strong {
  font-family: var(--serif);
  font-size: clamp(25px, 2.4vw, 31px);
  font-weight: 500;
}

.marketplace-card__footer .button {
  min-height: 48px;
  margin-top: 0;
  padding: 12px 18px;
  font-size: 13px;
}

.catalog-product {
  scroll-margin-top: 120px;
}

.catalog-grid .catalog-product > .product-rating,
.catalog-grid .catalog-product > .product-reviews {
  margin-left: clamp(34px, 3.2vw, 44px);
  margin-right: clamp(34px, 3.2vw, 44px);
}

.product-rating--catalog {
  margin-top: -10px;
  margin-bottom: 24px;
}

.product-reviews {
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.product-reviews__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.product-reviews__head h3 {
  margin: 8px 0 0;
}

.product-reviews__head > strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  white-space: nowrap;
}

.product-review-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.product-review {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(244, 240, 232, .52);
}

.product-review > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.product-review p {
  margin: 12px 0;
  overflow-wrap: anywhere;
}

.product-review time,
.product-reviews__empty,
.form-help {
  color: var(--muted);
  font-size: 13px;
}

.review-form-wrap {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.review-form-wrap summary {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
}

.review-form {
  padding: 0 20px 22px;
}

.review-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.review-notice {
  margin: 28px 0 0;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.g-recaptcha {
  min-height: 78px;
}

@media (max-width: 760px) {
  [data-home-jewelry] .marketplace-card {
    padding-bottom: 0;
    border-radius: 14px;
  }

  .marketplace-card__body {
    padding: 22px 24px 26px;
  }

  .marketplace-card__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .marketplace-card__footer .button {
    width: 100%;
  }

  .catalog-grid .catalog-product > .product-rating,
  .catalog-grid .catalog-product > .product-reviews {
    margin-left: 24px;
    margin-right: 24px;
  }

  .product-reviews__head,
  .product-review > div {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Lavivion-inspired editorial refinement — 2026-08-29
   Keeps the MICA PLACE structure and brand accent while reducing visual noise. */
:root {
  --paper: #f7f6f2;
  --paper-deep: #efede7;
  --ink: #1f2928;
  --muted: #74736d;
  --line: rgba(31, 41, 40, .14);
  --white: #fffefa;
  --clay: #a7646b;
  --max: 1220px;
}

body {
  background: var(--paper);
  font-size: 15px;
  line-height: 1.65;
}

.shell { width: min(var(--max), calc(100% - 56px)); }

.site-header {
  border-bottom-color: var(--line);
  background: rgba(255, 254, 250, .94);
  backdrop-filter: blur(20px) saturate(120%);
}

.header-row { min-height: 84px; gap: 30px; }
.logo { font-family: var(--serif); font-size: 20px; font-weight: 500; letter-spacing: .19em; }
.logo::before { width: 6px; height: 6px; }
.site-nav { gap: clamp(14px, 1.55vw, 25px); font-size: 12px; letter-spacing: .015em; }
.site-nav a { position: relative; padding-block: 8px; }
.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .24s ease;
}
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.button {
  min-height: 48px;
  padding: 12px 22px;
  box-shadow: none;
  letter-spacing: .01em;
}
.button:hover { transform: translateY(-1px); }
.button--pill { box-shadow: none; }
.button--rose { background: #a7646b; }
.button--sage { background: #526b61; }
.button--sand { background: #d5b981; }

.eyebrow { margin-bottom: 18px; font-size: 10px; letter-spacing: .22em; }
h1, h2, h3 { letter-spacing: -.018em; }
h2 { font-size: clamp(46px, 6vw, 78px); line-height: .95; }
.section { padding: clamp(82px, 10vw, 136px) 0; }
.section--white { background: var(--white); }
.section--tint { background: var(--paper-deep); }
.section-head { margin-bottom: clamp(38px, 5.5vw, 68px); }
.section-head--row { gap: clamp(30px, 5vw, 72px); }

.home-hero { min-height: min(880px, calc(100svh - 84px)); }
.home-hero__media::after {
  background: linear-gradient(90deg, rgba(17, 24, 23, .68), rgba(17, 24, 23, .08) 72%),
              linear-gradient(0deg, rgba(17, 24, 23, .58), transparent 56%);
}
.home-hero__content { padding-block: clamp(92px, 12vw, 144px) 32px; }
.home-hero h1 { max-width: 790px; font-size: clamp(56px, 7.4vw, 88px); line-height: .92; }
.home-hero p { max-width: 610px; font-size: clamp(16px, 1.6vw, 20px); }
.hero-choice { margin-top: clamp(54px, 7vw, 84px); }
.hero-choice a { min-height: 132px; background: rgba(14, 20, 19, .08); }

.editorial-triptych { gap: clamp(18px, 2.2vw, 30px); }
.editorial-triptych .media-surface { aspect-ratio: 4 / 4.7; }
.editorial-triptych h3 { margin: 24px 0 10px; font-size: clamp(31px, 3vw, 43px); }
.editorial-triptych p { max-width: 34em; }

.platform-card,
.story-card,
.workshop-card,
.builder-panel,
.admin-gallery__item,
.media-library-card {
  border-color: var(--line);
  border-radius: 4px;
  background: var(--white);
  box-shadow: none;
}

.product-card,
.story-card,
.workshop-card { box-shadow: none; }
.product-card:hover,
.story-card:hover,
.workshop-card:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(31, 41, 40, .07); }

[data-home-jewelry] .marketplace-card {
  border-color: var(--line);
  border-radius: 4px;
  box-shadow: none;
  outline: 0 solid transparent;
}
[data-home-jewelry] .marketplace-card:hover {
  border-color: rgba(31, 41, 40, .28);
  box-shadow: 0 14px 34px rgba(31, 41, 40, .07);
  transform: translateY(-2px);
}
.marketplace-card__body { padding: 28px clamp(26px, 2.6vw, 34px) 32px; }
.marketplace-card__availability { box-shadow: none; }
.product-review,
.review-form-wrap,
.review-notice { border-radius: 4px; }

.topic-showcase .section-head > p { max-width: 680px; }
[data-jewelry-showcase] { align-items: stretch; }
[data-jewelry-showcase] .marketplace-card {
  min-width: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  overflow: hidden;
  isolation: isolate;
}
[data-jewelry-showcase] .marketplace-card:hover {
  border-color: rgba(31, 41, 40, .28);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(31, 41, 40, .07);
}
.topic-showcase__actions { margin-top: clamp(28px, 4vw, 46px); }
.form-optional { color: var(--muted); font-size: 12px; font-weight: 400; }
.platform-form label.is-required .form-optional::after { content: " · обязательно"; color: var(--rose); }

.media-surface::after,
.gift-surface::after { border-color: rgba(31, 41, 40, .12); }
.trust-grid article { padding: 30px; }
.line-icon { border-radius: 0; }

.site-footer { padding-top: 76px; background: #172120; }
.site-footer .footer-main { gap: 42px; padding-bottom: 62px; }
.site-footer .footer-main h2 { max-width: 620px; }
.footer-nav { line-height: 1.8; }

/* Admin follows the same quiet gallery system without changing workflows. */
.admin-body { background: #f1f0ec; }
.admin-top { min-height: 64px; align-items: center; background: #172120; }
.admin-top > a { font-family: var(--serif); font-size: 18px; letter-spacing: .12em; }
.admin-sidebar { background: #f8f7f3; }
.admin-sidebar a { border-radius: 2px; }
.admin-sidebar a.active { background: #20302e; }
.admin-layout > .admin-shell { margin-top: 38px; }
.admin-page-head { padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.admin-page-head h1,
.builder-intro h1 { font-size: clamp(48px, 5vw, 72px); line-height: .92; }
.admin-tabs a,
.admin-stats a,
.builder-preview a { border-radius: 2px; }
.admin-cards .platform-card { padding: 26px; }
.platform-form input,
.platform-form textarea,
.platform-form select,
.admin-cards select,
.media-library-tools input,
.admin-search input {
  border-radius: 2px;
  background: #fffefa;
}
.platform-form input:focus,
.platform-form textarea:focus,
.platform-form select:focus,
.admin-search input:focus {
  border-color: rgba(31, 41, 40, .42);
  outline: 2px solid rgba(31, 41, 40, .08);
  outline-offset: 0;
}
.admin-savebar { border-radius: 3px; background: rgba(255, 254, 250, .95); box-shadow: 0 10px 30px rgba(31, 41, 40, .08); }
.admin-login {
  margin-top: 12vh;
  padding: clamp(30px, 5vw, 52px);
  border-top: 3px solid #a7646b;
}
.admin-login h1 { max-width: 420px; font-size: clamp(48px, 7vw, 70px); line-height: .92; }

@media (max-width: 1120px) {
  .site-nav { inset: 84px 0 auto; min-height: calc(100svh - 84px); background: rgba(255, 254, 250, .98); }
  .menu-button { flex: 0 0 44px; }
}

@media (max-width: 640px) {
  body { font-size: 14px; }
  .shell { width: min(100% - 32px, var(--max)); }
  .header-row { min-height: 72px; }
  .logo { font-size: 17px; letter-spacing: .15em; }
  .site-nav { inset: 72px 0 auto; min-height: calc(100svh - 72px); }
  .home-hero { min-height: auto; }
  .home-hero__content { padding-top: 88px; }
  .home-hero h1 { font-size: clamp(52px, 15vw, 68px); }
  .section { padding-block: 76px; }
  h2 { font-size: clamp(42px, 13vw, 58px); }
  [data-home-jewelry] .marketplace-card { border-radius: 4px; }
  .marketplace-card__body { padding: 24px; }
  [data-jewelry-showcase] { grid-template-columns: 1fr; }
  .admin-login { margin-top: 7vh; }
}

/* Control review — 2026-08-29 */
.event-hero__copy { min-width: 0; }
.event-hero__copy h1 {
  max-width: 11ch;
  font-size: clamp(50px, 5.8vw, 82px);
  line-height: .94;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.workshop-grid--archive { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.workshop-grid--archive .workshop-card h3 { font-size: clamp(32px, 3.2vw, 46px); }

@media (max-width: 760px) {
  .event-hero__copy h1 { max-width: none; font-size: clamp(44px, 13vw, 62px); }
  .workshop-grid--archive { grid-template-columns: 1fr; }
}

/* Yandex products release — dedicated product pages and clear catalog actions. */
.catalog-product h2 a { color: inherit; text-decoration: none; }
.catalog-product h2 a:hover { color: var(--clay); }
.catalog-product__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; margin-top: 26px; }
.catalog-product__actions .button { margin: 0; }
.catalog-product__actions .text-link { margin: 0; }

.product-detail { padding: clamp(36px, 5vw, 72px) 0 clamp(84px, 9vw, 140px); }
.breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; color: var(--muted); font-size: 13px; }
.breadcrumbs a { color: inherit; text-decoration: none; }
.breadcrumbs a:hover { color: var(--ink); }
.product-detail__grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); gap: clamp(42px, 7vw, 104px); align-items: start; }
.product-detail__media { padding: 0; overflow: hidden; }
.product-detail__media .product-gallery { margin: 0; }
.product-detail__media .product-gallery__stage { aspect-ratio: 4 / 5; }
.product-detail__media .product-gallery__thumbs { padding: 14px; background: var(--paper); }
.product-detail__placeholder { display: grid; place-items: center; min-height: 620px; font-family: var(--serif); font-size: 42px; letter-spacing: .12em; background: var(--sand); }
.product-detail__copy { position: sticky; top: 122px; min-width: 0; }
.product-detail__copy h1 { margin: 12px 0 18px; font-size: clamp(62px, 7vw, 104px); line-height: .86; overflow-wrap: anywhere; }
.product-detail__copy .product-rating { margin-bottom: 28px; }
.product-detail__copy .product-rating a { color: inherit; }
.product-detail__price { display: block; margin: 30px 0 12px; font-size: clamp(28px, 3vw, 38px); }
.availability-pill { display: inline-flex; margin-bottom: 28px; padding: 8px 14px; border-radius: 999px; background: rgba(113, 132, 112, .14); color: #465746; font-size: 13px; font-weight: 600; }
.product-detail__facts { margin: 0 0 30px; border-top: 1px solid var(--line); }
.product-detail__facts > div { display: grid; grid-template-columns: minmax(110px, .35fr) minmax(0, .65fr); gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.product-detail__facts dt { color: var(--muted); }
.product-detail__facts dd { margin: 0; overflow-wrap: anywhere; }
.product-detail-reviews .product-review-list { margin-bottom: 24px; }

@media (max-width: 900px) {
  .product-detail__grid { grid-template-columns: 1fr; gap: 46px; }
  .product-detail__copy { position: static; }
  .product-detail__media { max-width: 720px; }
}

@media (max-width: 640px) {
  .product-detail { padding-top: 24px; }
  .breadcrumbs { margin-bottom: 22px; }
  .product-detail__copy h1 { font-size: clamp(54px, 18vw, 78px); }
  .product-detail__facts > div { grid-template-columns: 1fr; gap: 5px; }
}

/* Search clusters — editorial landing pages and contextual discovery. */
.topic-hero { padding-block: clamp(42px, 6vw, 84px); }
.topic-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(340px, 1.08fr);
  gap: clamp(36px, 7vw, 104px);
  align-items: center;
}
.topic-hero--reverse .topic-hero__copy { order: 2; }
.topic-hero--reverse .topic-hero__visual { order: 1; }
.topic-hero__copy { min-width: 0; }
.topic-hero__copy h1 {
  max-width: 12ch;
  margin: 14px 0 24px;
  font-size: clamp(54px, 6.5vw, 92px);
  line-height: .9;
  overflow-wrap: normal;
}
.topic-hero__copy .lede { max-width: 650px; }
.topic-hero__visual {
  min-height: clamp(480px, 55vw, 720px);
  border: 1px solid var(--line);
  background: var(--sand) center / cover no-repeat;
}
.topic-hero__visual:not([style]) { display: grid; place-items: center; font-family: var(--serif); font-size: 44px; letter-spacing: .14em; }
.topic-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.topic-cards .platform-card { min-width: 0; padding: clamp(26px, 3.2vw, 42px); }
.topic-cards h3 { margin: 22px 0 12px; font-size: clamp(30px, 3vw, 42px); line-height: 1; }
.topic-cards p { margin-bottom: 0; color: var(--muted); }
.topic-number { color: var(--clay); font-size: 11px; font-weight: 700; letter-spacing: .18em; }
.topic-route { color: inherit; text-decoration: none; transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease; }
.topic-route .text-link { display: inline-block; margin-top: 24px; color: var(--ink); }
.topic-note { display: grid; grid-template-columns: minmax(120px, .25fr) minmax(0, .75fr); gap: 28px; margin-top: 38px; padding: 26px 30px; border: 1px solid var(--line); background: var(--white); }
.topic-note p { margin: 0; color: var(--muted); }
.catalog-trends { padding-block: clamp(64px, 8vw, 104px); }
.catalog-trends + .shell .review-notice { margin-top: 34px; }

@media (hover: hover) and (pointer: fine) {
  .topic-route:hover { transform: translateY(-3px); border-color: rgba(31, 41, 40, .28); box-shadow: 0 16px 36px rgba(31, 41, 40, .07); }
}

@media (max-width: 900px) {
  .topic-hero__grid { grid-template-columns: 1fr; gap: 38px; }
  .topic-hero--reverse .topic-hero__copy,
  .topic-hero--reverse .topic-hero__visual { order: initial; }
  .topic-hero__visual { min-height: min(620px, 88vw); }
  .topic-cards { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .topic-hero { padding-top: 24px; }
  .topic-hero__copy h1 { max-width: none; font-size: clamp(48px, 15vw, 68px); }
  .topic-hero__visual { min-height: 116vw; }
  .topic-note { grid-template-columns: 1fr; gap: 8px; padding: 24px; }
  .search-discovery .section-head,
  .catalog-trends .section-head { margin-bottom: 34px; }
}

/* Event utilities — calendar, route, address copy and sharing. */
.event-share-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.event-fact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.event-fact-action {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: 600 10px/1.3 var(--sans) !important;
  text-align: center;
  text-decoration: none !important;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.event-fact-action:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }
.event-fact-note { display: block; margin-top: 10px; color: var(--muted); font: 500 10px/1.45 var(--sans); }

@media (max-width: 640px) {
  .event-fact-actions { align-items: stretch; flex-direction: column; }
  .event-fact-action { width: 100%; min-height: 44px; }
}

/* Production readiness: legal information and content-health dashboard. */
.legal-page { padding-top: clamp(72px, 9vw, 128px); }
.legal-page h1 { max-width: 920px; margin: 12px 0 24px; font-size: clamp(52px, 7vw, 96px); line-height: .92; }
.legal-page__updated { margin: 28px 0 52px; color: var(--muted); font-size: 12px; }
.legal-page section { padding: 30px 0; border-top: 1px solid var(--line); }
.legal-page section h2 { margin: 0 0 12px; font-size: clamp(28px, 3vw, 38px); }
.legal-page section p,
.legal-page section li { color: var(--muted); line-height: 1.75; }
.legal-page section ul { padding-left: 20px; }
.legal-page__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 42px; }
.consent a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.admin-readiness { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.admin-readiness article { padding: 20px; border: 1px solid var(--line); background: var(--paper); }
.admin-readiness article strong { display: block; margin-bottom: 6px; }
.admin-readiness article p { margin: 0; color: var(--muted); font-size: 12px; }
.admin-readiness .is-ready { border-color: rgba(93, 123, 100, .45); background: rgba(213, 226, 215, .45); }
.admin-readiness .is-attention { border-color: rgba(173, 99, 99, .35); background: rgba(238, 218, 216, .42); }

@media (max-width: 640px) {
  .legal-page__actions { align-items: stretch; flex-direction: column; }
  .legal-page__actions .button { width: 100%; }
  .admin-readiness { grid-template-columns: 1fr; }
}
