:root {
  --ink: #1f1f1d;
  --muted: #6e6b66;
  --paper: #f7f6f1;
  --linen: #ece8df;
  --leaf: #314f41;
  --leaf-dark: #24352f;
  --sage: #e3ebe1;
  --rose: #c98086;
  --rose-soft: #f1dcdb;
  --berry: #7f2638;
  --ochre: #b69772;
  --graphite: #2b2b29;
  --surface: #fffdfa;
  --mist: #efefea;
  --blush: #f4e5e1;
  --butter: #f5e5bd;
  --sky: #dce7eb;
  --line: rgba(31, 31, 29, 0.12);
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(31, 31, 29, 0.09);
  --border: rgba(31, 31, 29, 0.12);
  --radius: 8px;
  --max: 1180px;
  --font-sans: Manrope, Inter, "Segoe UI", Arial, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

[data-theme="dark"] {
  /* Dark theme — green-graphite base, text at ~87% / ~60% opacity perceived,
     elevation through lightness (L 10 → 14 → 18), accents desaturated. */
  --ink: #e5ebe7;            /* primary text: soft off-white with subtle green undertone (~87% perceived) */
  --muted: #98a39e;          /* secondary text (~60% perceived) */
  --paper: #101815;          /* page bg, L≈10% */
  --linen: #1c2823;          /* elevated surface, L≈18% */
  --leaf: #7fb39a;           /* brand accent — desaturated for dark surfaces */
  --leaf-dark: #0e1613;      /* deeper backdrop for hero/order panels */
  --sage: #1f2c26;           /* L≈16%, green-tinted surface */
  --rose: #d29aa1;           /* slightly toned rose */
  --rose-soft: #2e2329;      /* warm dark wash */
  --berry: #c77a8a;
  --ochre: #bfa784;
  --graphite: #dfe7e3;
  --surface: #16201c;        /* card bg, L≈14% */
  --mist: #1a241f;           /* input/tab bg, L≈16% */
  --blush: #261e22;          /* warm dark accent */
  --butter: #2a251d;         /* warm dark accent */
  --sky: #1b2a2d;            /* cool dark accent (slight teal) */
  --line: rgba(229, 235, 231, 0.1);
  --white: #ffffff;
  --shadow: 0 22px 58px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 18%, rgba(244, 229, 225, 0.58), transparent 28rem),
    radial-gradient(circle at 12% 52%, rgba(220, 231, 235, 0.42), transparent 24rem),
    linear-gradient(180deg, var(--paper) 0%, #f1eee5 100%);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  transition: background 180ms ease, color 180ms ease;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

[data-theme="dark"] body {
  background:
    radial-gradient(circle at 82% 18%, rgba(210, 154, 161, 0.07), transparent 30rem),
    radial-gradient(circle at 12% 52%, rgba(127, 179, 154, 0.08), transparent 26rem),
    linear-gradient(180deg, #101815 0%, #0e1613 55%, #0c1411 100%);
}

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

section[id] {
  scroll-margin-top: 112px;
}

#delivery {
  scroll-margin-top: 96px;
}

#about {
  scroll-margin-top: 112px;
  outline: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(100% - 48px, 1280px);
  height: 76px;
  margin: 18px auto 0;
  padding: 0 18px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(22, 24, 18, 0.18);
  backdrop-filter: blur(18px);
  transition:
    width 180ms ease,
    height 180ms ease,
    margin 180ms ease,
    padding 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    border-radius 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  width: 100%;
  height: 72px;
  margin-top: 0;
  padding-left: max(18px, calc((100vw - 1280px) / 2 + 18px));
  padding-right: max(18px, calc((100vw - 1280px) / 2 + 18px));
  color: var(--ink);
  border-color: rgba(33, 29, 25, 0.12);
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background: rgba(251, 248, 241, 0.94);
  box-shadow: 0 18px 50px rgba(26, 22, 18, 0.12);
}

.inner-page .site-header {
  width: 100%;
  height: 72px;
  margin-top: 0;
  padding-left: max(18px, calc((100vw - 1280px) / 2 + 18px));
  padding-right: max(18px, calc((100vw - 1280px) / 2 + 18px));
  color: var(--ink);
  border-color: rgba(33, 29, 25, 0.12);
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background: rgba(255, 253, 250, 0.94);
  box-shadow: 0 18px 50px rgba(26, 22, 18, 0.1);
}

.brand,
.theme-toggle,
.header-action,
.site-nav a,
.button,
.icon-button,
.tab,
.nav-toggle {
  min-height: 44px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  font-weight: 700;
}

.brand-logo {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  min-width: 0;
  line-height: 1.05;
}

.brand-name {
  color: currentColor;
  font-size: 1.24rem;
  font-weight: 900;
}

.brand-tagline {
  margin-top: 3px;
  color: currentColor;
  font-size: 0.68rem;
  font-weight: 800;
  opacity: 0.72;
  text-transform: uppercase;
}

.header-tools {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: currentColor;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.88;
  transition: background 160ms ease, opacity 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  opacity: 1;
  outline: none;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible,
.site-header.is-open .site-nav a:hover,
.site-header.is-open .site-nav a:focus-visible {
  background: rgba(47, 83, 57, 0.09);
}

.site-nav a[aria-current="page"] {
  background: rgba(47, 83, 57, 0.1);
  opacity: 1;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  font-weight: 700;
}

.theme-toggle {
  display: inline-grid;
  width: 44px;
  padding: 0;
  place-items: center;
  color: currentColor;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
}

.site-header.is-scrolled .header-action,
.site-header.is-open .header-action,
.inner-page .site-header .header-action,
.site-header.is-scrolled .theme-toggle,
.site-header.is-open .theme-toggle,
.inner-page .site-header .theme-toggle {
  background: var(--leaf);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
  color: currentColor;
  background: rgba(255, 255, 255, 0.14);
}

.site-header.is-scrolled .nav-toggle,
.site-header.is-open .nav-toggle,
.inner-page .site-header .nav-toggle {
  background: rgba(47, 83, 57, 0.1);
}

.hero {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--leaf-dark);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(20, 20, 16, 0.82) 0%, rgba(25, 27, 20, 0.64) 38%, rgba(25, 27, 20, 0.22) 72%),
    linear-gradient(0deg, rgba(20, 18, 14, 0.46) 0%, rgba(20, 18, 14, 0.08) 34%);
}

.hero-content {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 138px 0 100px;
}

.eyebrow,
.section-kicker,
.product-meta {
  margin: 0;
  color: var(--ochre);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f6d2a5;
}

.hero h1,
.section h2,
.order-copy h2,
.contacts-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 620px;
  margin-top: 20px;
  font-size: 6.5rem;
  text-shadow: 0 14px 50px rgba(0, 0, 0, 0.28);
}

.hero-lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease, color 150ms ease;
}

.button {
  padding: 0 18px;
}

.button span,
.icon-button span {
  white-space: nowrap;
}

.button:hover,
.button:focus-visible,
.icon-button:hover,
.icon-button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  color: var(--white);
  background: var(--leaf);
  box-shadow: 0 18px 36px rgba(30, 56, 38, 0.28);
}

.hero .button-primary {
  color: var(--leaf-dark);
  background: #f4e3c7;
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
}

.button-vk {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(39, 117, 209, 0.22);
}

.button-vk:hover,
.button-vk:focus-visible {
  background: rgba(39, 117, 209, 0.34);
}

.button-light {
  color: var(--leaf-dark);
  border-color: rgba(47, 83, 57, 0.14);
  background: var(--sage);
}

.button-ghost-dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(780px, 100%);
  margin: 46px 0 0;
}

.hero-facts div {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.hero-facts dt {
  color: #f6d2a5;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
}

.hero-facts .work-hours {
  display: flex;
  flex-wrap: wrap;
  gap: 3px 10px;
}

.hero-facts .work-hours span {
  white-space: nowrap;
}

.scroll-cue {
  position: absolute;
  right: 28px;
  bottom: 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100% - 48px, var(--max));
  margin: -34px auto 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--border);
}

.signal-strip div {
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 24px;
  background: var(--paper);
}

.signal-strip strong {
  color: var(--leaf-dark);
  font-size: 1rem;
}

.signal-strip span {
  color: var(--muted);
}

.section,
.order-section {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 104px 0;
}

.section.studio-section {
  padding-top: 0;
  padding-bottom: 104px;
}

.section-copy {
  max-width: 760px;
}

.section-copy h2,
.order-copy h2,
.contacts-copy h2,
.studio-copy h2 {
  margin-top: 12px;
  color: var(--ink);
  font-size: 3.1rem;
}

.section-copy p:not(.section-kicker),
.order-copy p,
.contacts-copy p,
.studio-copy p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.catalog-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 36px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.tab {
  flex: 0 0 auto;
  min-width: 0;
  padding: 0 16px;
  color: var(--leaf-dark);
  border: 1px solid rgba(47, 83, 57, 0.14);
  border-radius: var(--radius);
  background: transparent;
  font-weight: 800;
}

.tab.is-active {
  color: var(--white);
  background: var(--leaf);
}

.loved-card {
  border-color: color-mix(in srgb, var(--rose) 28%, var(--line));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--surface) 86%, var(--blush)), color-mix(in srgb, var(--surface) 84%, var(--sage)));
}

.loved-card__art {
  color: var(--berry);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--blush) 62%, var(--surface)), color-mix(in srgb, var(--sage) 42%, var(--surface)));
}

.loved-card__art i,
.loved-card__art svg {
  width: 42px;
  height: 42px;
  stroke-width: 1.6;
}

.loved-mini-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.loved-mini-actions button {
  min-height: 30px;
  padding: 0 10px;
  color: var(--graphite);
  border: 1px solid color-mix(in srgb, var(--rose) 34%, var(--line));
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 850;
  cursor: pointer;
}

.loved-mini-actions button:hover,
.loved-mini-actions button:focus-visible {
  border-color: color-mix(in srgb, var(--berry) 54%, var(--line));
  outline: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.product-card {
  min-height: 472px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(33, 29, 25, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(27, 24, 19, 0.08);
}

.product-card.is-hidden {
  display: none;
}

.product-visual {
  min-height: 190px;
  border-bottom: 1px solid rgba(33, 29, 25, 0.08);
  background-color: var(--sage);
  background-repeat: no-repeat;
  background-size: cover;
}

.visual-garden {
  background-image:
    radial-gradient(circle at 44% 50%, #efaa9c 0 10%, transparent 11%),
    radial-gradient(circle at 58% 38%, #f7efe8 0 8%, transparent 9%),
    radial-gradient(circle at 63% 62%, #8f2f3a 0 9%, transparent 10%),
    radial-gradient(circle at 36% 66%, #d58b91 0 11%, transparent 12%),
    radial-gradient(circle at 70% 50%, #78a47c 0 12%, transparent 13%),
    radial-gradient(circle at 28% 42%, #9abd94 0 10%, transparent 11%),
    linear-gradient(135deg, #f5e1cf, #dce6d7 58%, #2f5339);
}

.visual-soft {
  background-image:
    radial-gradient(circle at 54% 48%, #f7ebe3 0 12%, transparent 13%),
    radial-gradient(circle at 41% 58%, #efbebd 0 10%, transparent 11%),
    radial-gradient(circle at 63% 64%, #c8797f 0 8%, transparent 9%),
    radial-gradient(circle at 33% 38%, #b1c9a4 0 10%, transparent 11%),
    linear-gradient(145deg, #fff7ee, #f1d6cf 52%, #8ba577);
}

.visual-box {
  background-image:
    radial-gradient(circle at 52% 47%, #d6d0a0 0 16%, transparent 17%),
    radial-gradient(circle at 40% 42%, #f4c5bc 0 9%, transparent 10%),
    radial-gradient(circle at 64% 38%, #f2eee5 0 9%, transparent 10%),
    radial-gradient(circle at 66% 63%, #6e2431 0 10%, transparent 11%),
    linear-gradient(160deg, #2f5339, #e7d2bf 48%, #b4874d);
}

.visual-field {
  background-image:
    radial-gradient(circle at 36% 45%, #cde1b7 0 11%, transparent 12%),
    radial-gradient(circle at 50% 56%, #f1d4a8 0 7%, transparent 8%),
    radial-gradient(circle at 60% 40%, #f2f0e8 0 8%, transparent 9%),
    radial-gradient(circle at 66% 66%, #2f5339 0 12%, transparent 13%),
    linear-gradient(135deg, #e9efe1, #c8797f 56%, #203827);
}

.visual-mono {
  background-image:
    radial-gradient(circle at 44% 40%, #933342 0 12%, transparent 13%),
    radial-gradient(circle at 58% 48%, #b7495a 0 13%, transparent 14%),
    radial-gradient(circle at 46% 64%, #6e2431 0 10%, transparent 11%),
    radial-gradient(circle at 63% 64%, #254b33 0 10%, transparent 11%),
    linear-gradient(145deg, #f1d6cf, #8b2033 55%, #1f3528);
}

.visual-wedding {
  background-image:
    radial-gradient(circle at 48% 47%, #fff9ef 0 12%, transparent 13%),
    radial-gradient(circle at 62% 53%, #efe2c7 0 11%, transparent 12%),
    radial-gradient(circle at 38% 57%, #f0c3bd 0 9%, transparent 10%),
    radial-gradient(circle at 65% 35%, #b7c8a8 0 8%, transparent 9%),
    linear-gradient(150deg, #dce6d7, #fbf8f1 50%, #c8797f);
}

.product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.product-body h3 {
  margin: 8px 0 0;
  font-family: var(--font-sans);
  font-size: 1.55rem;
  font-weight: 500;
}

.product-body p:not(.product-meta) {
  margin: 12px 0 0;
  color: var(--muted);
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
}

.product-bottom strong {
  white-space: nowrap;
}

.icon-button {
  min-width: 118px;
  padding: 0 12px;
  color: var(--leaf-dark);
  border-color: rgba(47, 83, 57, 0.14);
  background: var(--sage);
}

.studio-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  column-gap: 54px;
  row-gap: 18px;
  align-items: stretch;
  border-top: 0;
}

.studio-media {
  position: relative;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface) url("/assets/photo/stanislava.webp") 64% center / cover no-repeat;
  box-shadow: var(--shadow);
}

.studio-media img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

.studio-copy h2 {
  margin-top: 12px;
}

.studio-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0;
}

.studio-list-left {
  grid-column: 1;
  grid-template-columns: 1fr;
}

.studio-aside {
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: minmax(0, 1fr);
  grid-column: 2;
  row-gap: 14px;
  min-height: 0;
  align-content: start;
}

.studio-list-right {
  grid-row: 1;
  width: 100%;
  grid-template-columns: 1fr;
}

.studio-list-right div {
  min-height: 70px;
}

.about-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 28px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.about-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 2;
  object-fit: contain;
  background: var(--surface);
  border-radius: calc(var(--radius) - 2px);
}

.about-card strong,
.about-card span {
  display: block;
}

.about-card strong {
  color: var(--ink);
  font-size: 1.04rem;
}

.about-card span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.95rem;
}

.flowwow-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 88%, var(--butter));
}

.flowwow-score {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 98px;
  transform: translateY(2px);
}

.flowwow-score > span {
  display: grid;
  justify-items: center;
  width: 66px;
  row-gap: 5px;
}

.flowwow-score strong {
  display: block;
  width: 66px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 0.78;
  text-align: center;
}

.flowwow-score svg {
  flex: 0 0 1.02rem;
  width: 1.02rem;
  height: 1.02rem;
  color: #f4b316;
  fill: currentColor;
  stroke-width: 2;
}

.flowwow-score small,
.flowwow-copy,
.flowwow-trust em {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.flowwow-score small {
  display: block;
  width: 66px;
  margin: 0;
  line-height: 1;
  text-align: center;
}

.flowwow-copy {
  flex: 1;
  line-height: 1.35;
}

.flowwow-trust em {
  color: var(--graphite);
  font-style: normal;
}

[data-theme="dark"] .flowwow-trust {
  background: color-mix(in srgb, var(--surface) 88%, var(--butter));
}

[data-theme="dark"] .flowwow-trust em {
  color: var(--ink);
}

.button-studio-more {
  grid-row: 2;
  align-self: center;
  justify-self: start;
  width: fit-content;
  margin-top: 0;
  margin-bottom: 0;
  padding-right: 18px;
  padding-left: 18px;
  color: var(--leaf-dark);
  border-color: rgba(47, 83, 57, 0.14);
  background: var(--sage);
  box-shadow: none;
}

.button-studio-more svg {
  transition: transform 180ms ease;
}

.button-studio-more:hover,
.button-studio-more:focus-visible {
  border-color: rgba(47, 83, 57, 0.22);
  background: color-mix(in srgb, var(--sage) 82%, var(--surface));
}

.button-studio-more:hover svg,
.button-studio-more:focus-visible svg {
  transform: translateX(3px);
}

[data-theme="dark"] .button-studio-more {
  color: var(--ink);
  border-color: rgba(244, 228, 198, 0.18);
  background: color-mix(in srgb, var(--sage) 72%, var(--surface));
  box-shadow: none;
}

[data-theme="dark"] .button-studio-more:hover,
[data-theme="dark"] .button-studio-more:focus-visible {
  background: color-mix(in srgb, var(--sage) 84%, var(--surface));
}

.studio-list div {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--linen);
}

.studio-list i,
.studio-list svg {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--leaf);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.step {
  min-height: 230px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--leaf-dark);
  color: var(--white);
}

.step i,
.step svg {
  float: right;
  width: 34px;
  height: 34px;
  color: rgba(255, 255, 255, 0.78);
  stroke-width: 1.8;
}

.step:nth-child(2) {
  background: var(--berry);
}

.step:nth-child(3) {
  background: #8b6a3e;
}

.step:nth-child(4) {
  background: #394a4d;
}

.step span {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 900;
}

.step h3 {
  margin: 46px 0 0;
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 500;
}

.step p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.order-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 50px;
  align-items: start;
  padding: 52px;
  border-radius: var(--radius);
  background: var(--leaf-dark);
  color: var(--white);
}

.order-copy {
  position: relative;
  top: auto;
}

.order-copy .section-kicker {
  color: #f6d2a5;
}

.order-copy h2,
.order-copy p {
  color: var(--white);
}

.order-copy p {
  color: rgba(255, 255, 255, 0.76);
}

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

.order-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
}

.order-form label:has(input[required]) > span::after,
.order-form label:has(select[required]) > span::after,
.order-form label:has(textarea[required]) > span::after {
  margin-left: 4px;
  color: var(--rose);
  content: "*";
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  font: inherit;
  font-weight: 500;
  color: var(--ink);
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--paper);
  outline: none;
  font-synthesis-weight: none;
}

.order-form select,
.order-form option {
  font-family: var(--font-sans);
  font-weight: 500;
}

.order-form textarea {
  min-height: 132px;
  resize: vertical;
}

.order-form label.form-wide textarea[name="comment"] {
  min-height: 208px;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  border-color: #f6d2a5;
  box-shadow: 0 0 0 4px rgba(246, 210, 165, 0.18);
}

.form-wide {
  grid-column: 1 / -1;
}

.order-actions {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 12px;
}

.order-actions .button {
  width: 100%;
  min-height: 56px;
}

.order-form .button-primary {
  min-height: 56px;
  color: var(--leaf-dark);
  background: #f4e3c7;
}

.order-note {
  min-height: 24px;
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.order-note.is-success {
  color: #f6d2a5;
}

.order-note.is-warning {
  color: #f1d1ce;
}

.contacts-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
  gap: 44px;
  align-items: stretch;
}

.contacts-copy {
  align-self: center;
}

.map-panel {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: var(--white);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 72% 20%, rgba(244, 227, 199, 0.3), transparent 24%),
    linear-gradient(145deg, rgba(32, 56, 39, 0.95), rgba(110, 36, 49, 0.88)),
    var(--leaf-dark);
  box-shadow: var(--shadow);
}

.map-pin {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: auto;
  color: var(--leaf-dark);
  border-radius: 50%;
  background: #f4e3c7;
}

.map-panel strong {
  max-width: 360px;
  font-family: var(--font-display);
  font-size: 2.05rem;
  font-weight: 600;
  line-height: 1.05;
}

.map-panel span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.map-panel small {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.66);
}

.site-footer {
  position: relative;
  display: grid;
  gap: 24px;
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 28px 0 22px;
  color: var(--muted);
  border-top: 1px solid rgba(33, 29, 25, 0.1);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(280px, 0.9fr) minmax(250px, 1fr);
  align-items: start;
  gap: clamp(28px, 6vw, 86px);
}

.footer-brand {
  display: inline-grid;
  grid-template-columns: 50px auto;
  align-items: center;
  column-gap: 12px;
  max-width: min(100%, 360px);
  color: var(--ink);
  text-decoration: none;
}

.footer-brand__mark {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.footer-brand__copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.footer-brand__name {
  color: var(--ink);
  font-size: 1.62rem;
  font-weight: 900;
  line-height: 0.98;
}

.footer-brand__label,
.footer-brand__owner,
.footer-brand__years {
  line-height: 1.15;
}

.footer-brand__label {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.footer-brand__owner {
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 900;
}

.footer-brand__years {
  margin-top: 6px;
  color: color-mix(in srgb, var(--muted) 78%, var(--ink));
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
}

.footer-nav,
.footer-contacts {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-nav {
  grid-template-columns: repeat(2, minmax(0, max-content));
  column-gap: 26px;
}

.footer-legal {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-legal__title {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-legal__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  column-gap: 22px;
  row-gap: 6px;
}

.footer-legal__nav a {
  color: var(--graphite);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-legal__nav a:hover,
.footer-legal__nav a:focus-visible {
  color: var(--leaf);
  outline: none;
}

.footer-contacts {
  justify-self: end;
  max-width: 280px;
  text-align: right;
}

.footer-contacts strong {
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 1rem;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  width: 100%;
  color: var(--leaf);
  font-weight: 800;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.footer-contact-row:hover,
.footer-contact-row:focus-visible {
  opacity: 0.88;
  outline: none;
}

.footer-contact-icon {
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: var(--muted);
}

.footer-contact-icon svg {
  display: block;
  width: 16px;
  height: 16px;
}

.footer-channels {
  display: inline-flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-channel {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--graphite);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: color-mix(in srgb, var(--surface) 86%, var(--sage));
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.footer-channel:hover,
.footer-channel:focus-visible {
  border-color: color-mix(in srgb, var(--rose) 40%, var(--line));
  background: color-mix(in srgb, var(--surface) 72%, var(--blush));
  transform: translateY(-1px);
}

.footer-channel svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-channel--vk svg {
  width: 20px;
  height: 20px;
}

.footer-credit {
  display: flex;
  justify-content: center;
  min-height: 22px;
  margin-top: -8px;
}

.footer-nav a,
.footer-contacts a {
  color: var(--leaf);
  font-weight: 800;
  text-decoration: none;
}

.footer-nav a,
.footer-contacts span,
.footer-contacts a {
  font-size: 0.92rem;
  line-height: 1.35;
}

.ckromniq-credit {
  position: relative;
  display: inline-block;
  font-size: 0.72rem;
  line-height: 1.35;
}

.site-footer .ckromniq-link {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 2px 1px 3px;
  color: color-mix(in srgb, var(--muted) 64%, var(--ink));
  font-weight: 900;
  text-decoration: none;
  opacity: 0.78;
  text-shadow: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-footer .ckromniq-link::after {
  content: "";
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -55%;
  width: 42%;
  background:
    linear-gradient(105deg,
      transparent 0%,
      color-mix(in srgb, var(--surface) 0%, transparent) 18%,
      color-mix(in srgb, var(--rose) 52%, var(--surface)) 48%,
      color-mix(in srgb, var(--sage) 44%, var(--surface)) 58%,
      transparent 100%);
  opacity: 0;
  transform: skewX(-18deg);
  animation: ckromniqLinkShimmer 7.5s ease-in-out infinite;
  pointer-events: none;
}

.ckromniq-credit:hover .ckromniq-link,
.site-footer .ckromniq-link:focus-visible {
  color: var(--graphite);
  opacity: 1;
  text-shadow: none;
}

.ckromniq-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 14px);
  display: block;
  width: 128px;
  min-height: 132px;
  height: auto;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transform-origin: 50% 100%;
  opacity: 0;
  filter: drop-shadow(0 18px 28px rgba(33, 29, 25, 0.16));
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ckromniq-credit:hover .ckromniq-tooltip,
.ckromniq-link:focus-visible + .ckromniq-tooltip {
  transform: translate(-50%, 0);
  opacity: 1;
}

.ckromniq-tooltip__bob {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  width: 100%;
  min-height: 124px;
  padding-top: 2px;
  transform-origin: 50% 92%;
}

.ckromniq-credit:hover .ckromniq-tooltip__bob,
.ckromniq-link:focus-visible + .ckromniq-tooltip .ckromniq-tooltip__bob {
  animation: ckromniqFloat 5.5s ease-in-out infinite;
}

.ckromniq-tooltip__mark {
  position: relative;
  display: block;
  width: 80px;
  height: 80px;
  margin: 8px 0 0;
  transform-origin: 50% 88%;
}

.ckromniq-tooltip__face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: auto;
}

.ckromniq-tooltip__face-blink {
  clip-path: inset(8% 29% 58% 30%);
  opacity: 0;
}

.ckromniq-tooltip__label {
  position: relative;
  left: auto;
  top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  padding: 7px 12px 8px;
  border: 1px solid color-mix(in srgb, var(--rose) 28%, var(--line));
  border-radius: 10px;
  background:
    linear-gradient(135deg,
      color-mix(in srgb, var(--surface) 88%, var(--blush)),
      color-mix(in srgb, var(--surface) 88%, var(--sage)));
  color: var(--graphite);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(33, 29, 25, 0.12);
  transform: none;
}

.ckromniq-tooltip__label::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 12px;
  height: 12px;
  border-right: 1px solid color-mix(in srgb, var(--rose) 28%, var(--line));
  border-bottom: 1px solid color-mix(in srgb, var(--rose) 28%, var(--line));
  border-radius: 0 0 3px 0;
  background:
    linear-gradient(135deg,
      color-mix(in srgb, var(--surface) 88%, var(--blush)),
      color-mix(in srgb, var(--surface) 88%, var(--sage)));
  transform: translateX(-50%) rotate(45deg);
}

.ckromniq-credit:hover .ckromniq-tooltip__face-blink,
.ckromniq-link:focus-visible + .ckromniq-tooltip .ckromniq-tooltip__face-blink {
  animation: creditBlink 5.6s steps(1, end) infinite;
}

@keyframes ckromniqLinkShimmer {
  0%,
  54%,
  100% {
    left: -55%;
    opacity: 0;
  }

  59% {
    opacity: 0.42;
  }

  68% {
    left: 116%;
    opacity: 0;
  }
}

@keyframes creditBlink {
  0%,
  34%,
  39%,
  84%,
  88%,
  92%,
  100% {
    opacity: 0;
  }

  36%,
  86%,
  90% {
    opacity: 1;
  }
}

@keyframes ckromniqFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (min-width: 2200px) {
  .ckromniq-tooltip {
    width: 260px;
    min-height: 280px;
    height: auto;
  }

  .ckromniq-tooltip__bob {
    min-height: 268px;
    gap: 6px;
  }

  .ckromniq-tooltip__mark {
    width: 200px;
    height: 200px;
    margin-top: 12px;
  }

  .ckromniq-tooltip__label {
    min-width: 150px;
    padding: 9px 16px 10px;
    border-radius: 12px;
    font-size: 0.88rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  .ckromniq-credit:hover .ckromniq-tooltip__bob,
  .ckromniq-link:focus-visible + .ckromniq-tooltip .ckromniq-tooltip__bob,
  .ckromniq-tooltip__face-blink,
  .site-footer .ckromniq-link::after {
    animation: none;
  }
}

/* Fresh storefront pass: closer to the workshop's light VK branding. */
.site-header.is-scrolled .header-action,
.site-header.is-open .header-action,
.inner-page .site-header .header-action,
.site-header.is-scrolled .theme-toggle,
.site-header.is-open .theme-toggle,
.inner-page .site-header .theme-toggle,
.button-primary,
.tab.is-active {
  background: var(--graphite);
  color: var(--white);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 253, 250, 0.94);
}

[data-theme="dark"] .site-header.is-scrolled,
[data-theme="dark"] .site-header.is-open,
[data-theme="dark"] .inner-page .site-header {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(16, 24, 21, 0.86);
}

[data-theme="dark"] .site-header.is-scrolled .header-action,
[data-theme="dark"] .site-header.is-open .header-action,
[data-theme="dark"] .inner-page .site-header .header-action,
[data-theme="dark"] .site-header.is-scrolled .theme-toggle,
[data-theme="dark"] .site-header.is-open .theme-toggle,
[data-theme="dark"] .inner-page .site-header .theme-toggle,
[data-theme="dark"] .button-primary,
[data-theme="dark"] .tab.is-active {
  color: #0e1613;
  border-color: color-mix(in srgb, var(--ink) 76%, var(--leaf));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--ink) 94%, var(--leaf)), color-mix(in srgb, var(--leaf) 42%, var(--ink)));
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}

[data-theme="dark"] .button-light,
[data-theme="dark"] .button-ghost-dark,
[data-theme="dark"] .icon-button,
[data-theme="dark"] .tab {
  color: var(--ink);
  background: var(--mist);
}

[data-theme="dark"] .button-light,
[data-theme="dark"] .button-ghost-dark,
[data-theme="dark"] .icon-button,
[data-theme="dark"] .tab,
[data-theme="dark"] .landing-card,
[data-theme="dark"] .addons-card,
[data-theme="dark"] .care-card,
[data-theme="dark"] .flowwow-trust,
[data-theme="dark"] .about-card,
[data-theme="dark"] .studio-list div {
  border-color: rgba(223, 231, 235, 0.1);
}

.eyebrow,
.section-kicker,
.product-meta {
  color: #5d5a55;
}

[data-theme="dark"] .eyebrow,
[data-theme="dark"] .section-kicker,
[data-theme="dark"] .product-meta {
  color: var(--muted);
}

.hero .eyebrow,
.hero-facts dt,
.order-copy .section-kicker {
  color: #ead1ad;
}

.hero .button-primary {
  color: var(--ink);
  background: #f4e4c6;
  box-shadow: 0 18px 36px rgba(31, 31, 29, 0.2);
}

[data-theme="dark"] .hero .button-primary {
  color: #0e1613;
}

.button-light {
  color: var(--graphite);
  border-color: var(--line);
  background: var(--mist);
}

.button-vk-light {
  border-color: color-mix(in srgb, #4c8fe8 42%, var(--line));
  background: color-mix(in srgb, #eaf3ff 58%, var(--surface));
}

.button-ghost-dark {
  color: var(--graphite);
  border-color: var(--line);
  background: var(--surface);
}

.signal-strip {
  box-shadow: 0 18px 50px rgba(31, 31, 29, 0.08);
  background: var(--line);
}

.signal-strip div {
  background: var(--surface);
}

.signal-strip strong {
  color: var(--graphite);
}

.catalog-section {
  padding-top: 92px;
}

.catalog-section,
.delivery-section,
.studio-section,
.contacts-section {
  position: relative;
  isolation: isolate;
}

.catalog-tabs {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
}

.tab {
  color: var(--graphite);
  border-color: var(--line);
  background: var(--surface);
}

.product-grid {
  gap: 16px;
}

.product-card {
  min-height: 0;
  border-color: var(--line);
  background: var(--surface);
  box-shadow: none;
}

.product-card:hover {
  box-shadow: 0 18px 42px rgba(31, 31, 29, 0.1);
  transform: translateY(-2px);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-visual {
  min-height: 0;
  aspect-ratio: 1 / 1;
  background: var(--mist);
  border-bottom-color: var(--line);
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-body {
  padding: 18px 18px 20px;
}

.product-body h3,
.step h3 {
  font-family: var(--font-sans);
  font-weight: 850;
}

.product-body h3 {
  font-size: 1.2rem;
}

.product-bottom {
  padding-top: 18px;
}

.icon-button {
  min-width: 112px;
  color: var(--graphite);
  border-color: var(--line);
  background: var(--mist);
}

.studio-media {
  box-shadow: none;
  border: 1px solid var(--line);
  background-color: var(--surface);
}

.studio-list div {
  border: 1px solid var(--line);
  background: var(--surface);
}

.studio-list i,
.studio-list svg {
  color: var(--graphite);
}

.steps {
  gap: 12px;
}

.step,
.step:nth-child(2),
.step:nth-child(3),
.step:nth-child(4) {
  color: var(--ink);
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, var(--surface), var(--mist));
}

.step span {
  display: inline-grid;
  min-width: 32px;
  height: 32px;
  place-items: center;
  color: var(--graphite);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--mist);
}

.step h3 {
  margin-top: 40px;
  color: var(--ink);
  font-size: 1.28rem;
}

.step i,
.step svg {
  color: color-mix(in srgb, var(--leaf) 72%, var(--graphite));
}

.step p {
  color: var(--muted);
}

.confidence-section {
  padding-top: 88px;
  padding-bottom: 92px;
}

.confidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.confidence-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 230px;
  padding: 24px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, var(--surface), color-mix(in srgb, var(--surface) 82%, var(--mist)));
  box-shadow: 0 16px 38px rgba(31, 31, 29, 0.08);
}

.confidence-card-accent {
  background:
    radial-gradient(circle at 92% 10%, color-mix(in srgb, var(--butter) 64%, transparent), transparent 38%),
    linear-gradient(145deg, color-mix(in srgb, var(--surface) 80%, var(--butter)), color-mix(in srgb, var(--surface) 82%, var(--sage)));
}

.confidence-card i,
.confidence-card svg {
  width: 1.45rem;
  height: 1.45rem;
  color: var(--rose);
}

.confidence-card strong {
  font-size: 1.18rem;
  line-height: 1.25;
}

.confidence-card span {
  color: var(--muted);
  line-height: 1.58;
}

.confidence-card a {
  width: fit-content;
  margin-top: auto;
  color: var(--graphite);
  font-weight: 850;
  text-decoration: none;
}

.faq-block {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 20px;
  margin-top: 18px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 10px);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--surface) 90%, var(--paper)), color-mix(in srgb, var(--surface) 78%, var(--blush)));
}

.faq-copy h3 {
  max-width: 420px;
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.55rem);
  font-weight: 600;
  line-height: 0.98;
}

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

.faq-item {
  padding: 18px 18px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 92%, var(--paper));
}

.faq-item summary {
  color: var(--ink);
  font-weight: 850;
  line-height: 1.35;
  cursor: pointer;
}

.faq-item summary::marker {
  color: var(--rose);
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.order-section {
  position: relative;
  overflow: hidden;
  align-items: start;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--surface) 88%, var(--blush)), var(--surface) 58%, color-mix(in srgb, var(--surface) 82%, var(--sky)));
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(31, 31, 29, 0.08);
}

.order-section > * {
  position: relative;
  z-index: 1;
}

.order-copy .section-kicker {
  margin-top: 0;
  color: #5d5a55;
}

.order-copy h2,
.order-copy p {
  color: var(--ink);
}

.order-copy p {
  color: var(--muted);
}

.order-live-summary {
  display: grid;
  gap: 14px;
  margin-top: clamp(22px, 4vw, 40px);
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--leaf) 24%, var(--line));
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 88%, var(--sage));
  box-shadow: 0 18px 46px rgba(54, 49, 42, 0.08);
}

.order-live-summary__top {
  display: grid;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid color-mix(in srgb, var(--leaf) 22%, var(--line));
}

.order-live-summary__top span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.order-live-summary__top strong {
  display: grid;
  gap: 4px;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  overflow-wrap: normal;
}

.order-live-summary__top strong span {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.order-live-summary__top strong b {
  font-size: clamp(1.35rem, 2.35vw, 1.85rem);
  font-weight: 650;
}

.order-live-summary dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.order-live-summary dl div {
  display: grid;
  gap: 4px;
}

.order-live-summary dl div:nth-child(2) {
  margin-bottom: 2px;
  padding-bottom: 14px;
  border-bottom: 1px solid color-mix(in srgb, var(--leaf) 22%, var(--line));
}

.order-live-summary dt {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.order-live-summary dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.35;
}

.order-summary-checks {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.order-summary-checks li {
  position: relative;
  padding-left: 20px;
}

.order-summary-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 11px;
  height: 11px;
  border: 1px solid color-mix(in srgb, var(--leaf) 36%, var(--line));
  border-radius: 3px;
  background: color-mix(in srgb, var(--surface) 80%, var(--sage));
}

.order-summary-checks li::after {
  content: "";
  position: absolute;
  left: 3px;
  top: calc(0.28em + 2px);
  width: 5px;
  height: 3px;
  border-left: 2px solid var(--leaf);
  border-bottom: 2px solid var(--leaf);
  transform: rotate(-45deg);
}

.order-summary-checks li.is-muted {
  color: var(--muted);
}

.order-summary-checks li.is-muted::after {
  display: none;
}

.order-form label {
  color: var(--graphite);
}

.order-form input,
.order-form select,
.order-form textarea {
  color: var(--ink);
  border-color: var(--line);
  background: color-mix(in srgb, var(--surface) 92%, var(--paper));
}

.addon-fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.addon-fieldset legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--graphite);
  font-size: 0.92rem;
  font-weight: 850;
}

.addon-fieldset label {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 90%, var(--blush));
  cursor: pointer;
}

.addon-fieldset input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin-top: 0;
  padding: 0;
  accent-color: var(--graphite);
}

.addon-option-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  line-height: 1.35;
}

.addon-option-copy > span {
  font-weight: 850;
}

.addon-price {
  flex: 0 0 auto;
  width: fit-content;
  padding: 3px 8px;
  color: #1f6f45;
  border: 1px solid rgba(31, 111, 69, 0.2);
  border-radius: 999px;
  background: rgba(64, 190, 124, 0.12);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
}

.addon-price-gift {
  color: #7b5a12;
  border-color: rgba(207, 151, 34, 0.28);
  background: rgba(246, 206, 127, 0.2);
}

.addon-price-paid {
  color: #8b3f4f;
  border-color: rgba(139, 63, 79, 0.24);
  background: rgba(209, 119, 138, 0.14);
}

[data-theme="dark"] .addon-price {
  color: #95f0bd;
  border-color: rgba(149, 240, 189, 0.34);
  background: rgba(66, 214, 132, 0.18);
}

[data-theme="dark"] .addon-price-gift {
  color: #ffd37a;
  border-color: rgba(255, 211, 122, 0.4);
  background: rgba(255, 190, 70, 0.18);
}

[data-theme="dark"] .addon-price-paid {
  color: #ff9fb0;
  border-color: rgba(255, 159, 176, 0.38);
  background: rgba(255, 113, 138, 0.16);
}

.addon-fieldset-note {
  grid-column: 1 / -1;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  border-color: rgba(43, 43, 41, 0.42);
  box-shadow: 0 0 0 4px rgba(43, 43, 41, 0.08);
}

.field-tooltip-host {
  position: relative;
}

.field-tooltip {
  position: absolute;
  z-index: 12;
  left: 14px;
  bottom: calc(100% - 4px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: min(280px, calc(100vw - 48px));
  padding: 10px 12px;
  border: 1px solid color-mix(in srgb, var(--berry) 24%, var(--line));
  border-radius: 10px;
  background: color-mix(in srgb, var(--card) 94%, var(--rose));
  color: var(--ink);
  box-shadow: 0 16px 38px rgba(54, 49, 42, 0.16);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  animation: fieldTooltipIn 160ms ease both;
}

.field-tooltip::after {
  content: "";
  position: absolute;
  left: 18px;
  top: calc(100% - 1px);
  width: 10px;
  height: 10px;
  border-right: 1px solid color-mix(in srgb, var(--berry) 24%, var(--line));
  border-bottom: 1px solid color-mix(in srgb, var(--berry) 24%, var(--line));
  background: inherit;
  transform: rotate(45deg);
}

.field-tooltip svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: var(--berry);
}

.order-form input[aria-invalid="true"],
.order-form select[aria-invalid="true"],
.order-form textarea[aria-invalid="true"] {
  border-color: color-mix(in srgb, var(--berry) 46%, var(--line));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--berry) 12%, transparent);
}

@keyframes fieldTooltipIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.order-form .button-primary {
  color: var(--white);
  background: var(--graphite);
  box-shadow: none;
}

[data-theme="dark"] .order-form .button-primary {
  color: #0e1613;
  background: var(--ink);
}

.order-note {
  color: var(--muted);
}

.order-note.is-success {
  color: var(--leaf);
}

.order-note.is-warning {
  color: var(--berry);
}

.order-status-section {
  display: grid;
  gap: 24px;
  padding-top: clamp(120px, 16vw, 170px);
}

.order-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 20px;
  align-items: start;
}

.order-summary__main,
.order-summary__payment {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}

.order-summary__main h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1;
  font-family: var(--serif);
  font-weight: 500;
}

.order-summary dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.order-summary dl div,
.order-total-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.order-summary dt,
.order-total-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.order-summary dd {
  margin: 0;
  text-align: right;
  font-weight: 650;
}

.order-total-row--final {
  align-items: baseline;
  border-bottom: 0;
  padding-bottom: 0;
}

.order-total-row--final strong {
  font-size: 28px;
}

.order-summary__payment .button,
.order-summary__payment form {
  width: 100%;
}

.order-summary__payment .button {
  justify-content: center;
}

.admin-status {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(31, 111, 69, 0.1);
  color: #1f6f45;
  font-size: 13px;
  font-weight: 850;
}

.admin-status--off {
  background: rgba(207, 151, 34, 0.12);
  color: #8a5d11;
}

.contact-map-frame {
  position: relative;
  align-self: stretch;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 10px);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--surface) 90%, var(--blush)), color-mix(in srgb, var(--surface) 82%, var(--butter)));
  box-shadow: 0 28px 80px rgba(31, 31, 29, 0.1);
}

.map-frame-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 2px 2px 12px;
}

.map-frame-top > div > span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.map-frame-top strong {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: 1rem;
}

.map-frame-top small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.map-route-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-bottom: 12px;
  align-items: stretch;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  box-shadow: 0 14px 32px rgba(31, 31, 29, 0.08);
}

.map-provider-tabs {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr) minmax(0, 1.32fr);
  gap: 4px;
  min-width: 0;
}

.map-provider-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 0;
  min-height: 42px;
  padding: 0 11px;
  margin: 0;
  color: var(--muted);
  border: 0;
  border-radius: 12px;
  background: transparent;
  font: inherit;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 900;
  cursor: pointer;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.map-provider-tab:hover,
.map-provider-tab:focus-visible,
.map-route-action:hover,
.map-route-action:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.map-provider-tab i,
.map-provider-tab svg,
.map-route-action i,
.map-route-action svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.map-provider-tab span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.map-provider-tab.is-active {
  color: var(--graphite);
  background: var(--surface);
  box-shadow:
    0 10px 24px rgba(31, 31, 29, 0.09),
    inset 0 0 0 1px var(--line);
}

.map-provider-tab-yandex.is-active {
  box-shadow:
    0 10px 24px rgba(31, 31, 29, 0.09),
    inset 0 0 0 1px color-mix(in srgb, #f3bd3a 54%, var(--line));
}

.map-provider-tab-2gis.is-active {
  box-shadow:
    0 10px 24px rgba(31, 31, 29, 0.09),
    inset 0 0 0 1px color-mix(in srgb, #23b76f 48%, var(--line));
}

.map-provider-tab-google.is-active {
  box-shadow:
    0 10px 24px rgba(31, 31, 29, 0.09),
    inset 0 0 0 1px color-mix(in srgb, #6f9af1 50%, var(--line));
}

.map-route-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  color: var(--white);
  border: 0;
  border-radius: 12px;
  background: var(--graphite);
  box-shadow: 0 12px 26px rgba(31, 31, 29, 0.16);
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.86rem;
  font-weight: 900;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.map-route-action-yandex {
  color: #2f2514;
  background: linear-gradient(145deg, #ffe8a6, #f4bd4a);
}

.map-route-action-2gis {
  background: linear-gradient(145deg, #2cc77e, #1f9d63);
}

.map-route-action-google {
  background: linear-gradient(145deg, #7fa5f4, #4d76d7);
}

.contact-map {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--surface) 88%, var(--sky)), color-mix(in srgb, var(--surface) 78%, var(--butter)));
  box-shadow: inset 0 0 0 1px rgba(255, 252, 246, 0.5);
}

.contact-map-host {
  isolation: isolate;
}

.contact-map-pane {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.contact-map-pane.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.contact-map-embed {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
  background: var(--surface);
  filter: none;
}

.contact-map-2gis-widget {
  background: #f2f2f2;
}

.contact-map-pane.is-2gis-scaled .contact-map-2gis-widget {
  width: var(--map-2gis-width);
  height: var(--map-2gis-height);
  min-height: 0;
  transform: scale(var(--map-2gis-scale));
  transform-origin: 0 0;
}

.map-embed-fallback {
  margin: 0;
  padding: 24px 16px;
  height: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.care-page {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 132px 0 72px;
}

.care-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  gap: 34px;
  align-items: center;
  min-height: 0;
}

.care-hero-copy {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: clamp(420px, 38vw, 520px);
  padding: clamp(34px, 5vw, 64px);
  border-radius: calc(var(--radius) + 10px);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--surface) 86%, var(--blush)), color-mix(in srgb, var(--surface) 72%, var(--butter)));
  box-shadow: var(--shadow);
}

.care-hero h1,
.care-split h2,
.care-guides h2,
.care-cta h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.95;
}

.care-hero h1 {
  max-width: 760px;
  font-size: clamp(2.75rem, 4.2vw + 1.05rem, 4.45rem);
  line-height: 1.06;
  text-wrap: balance;
}

.care-hero p:not(.section-kicker),
.care-split p,
.care-cta p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.72;
}

.care-hero-copy > p:not(.section-kicker) {
  font-size: 1.12rem;
  line-height: 1.68;
}

.care-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.care-hero-photo {
  height: clamp(420px, 38vw, 520px);
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) + 10px);
  box-shadow: var(--shadow);
}

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

.care-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.care-steps article,
.care-guide-grid article,
.care-note,
.care-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 90%, var(--paper));
  box-shadow: 0 14px 34px rgba(31, 31, 29, 0.07);
}

.care-steps article {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  min-height: 0;
  padding: 20px;
}

.care-step-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--rose-soft) 48%, var(--surface));
}

.care-step-icon svg {
  width: 18px;
  height: 18px;
  color: var(--rose);
}

.care-steps h2,
.care-guide-grid h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
  line-height: 1.25;
}

.care-steps p,
.care-guide-grid p,
.care-note span {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.care-step-copy {
  min-width: 0;
}

.care-points {
  display: grid;
  gap: 6px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.care-points li,
.care-step-note {
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.42;
}

.care-points li {
  position: relative;
  padding-left: 14px;
}

.care-points .care-no-scissors-item {
  padding-left: 28px;
}

.care-points li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rose);
  content: "";
}

.care-points .care-no-scissors-item::before {
  content: none;
}

.care-no-scissors {
  position: absolute;
  top: 0.1em;
  left: 0;
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--rose);
}

.care-no-scissors svg {
  grid-area: 1 / 1;
  width: 16px;
  height: 16px;
}

.care-no-scissors svg:last-child {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.care-points strong {
  color: var(--ink);
  font-weight: 700;
}

.care-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.care-contact-links a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border: 1px solid color-mix(in srgb, var(--rose) 22%, var(--line));
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  background: color-mix(in srgb, var(--surface) 82%, var(--rose-soft));
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.care-contact-links a:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--rose) 48%, var(--line));
  background: color-mix(in srgb, var(--surface) 64%, var(--rose-soft));
}

.care-step-note {
  margin-top: 10px;
}

.care-steps p a {
  color: var(--rose);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.care-steps p a:hover {
  text-decoration-thickness: 2px;
}

.care-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 72px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: calc(var(--radius) + 10px);
  background:
    linear-gradient(120deg, color-mix(in srgb, var(--sage) 60%, var(--paper)), color-mix(in srgb, var(--rose-soft) 42%, var(--paper)));
}

.care-split h2,
.care-guides h2,
.care-cta h2 {
  font-size: clamp(2.5rem, 5vw, 4.9rem);
}

.care-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  gap: 12px;
  padding: 26px;
}

.care-note strong {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 0.98;
}

.care-recipe {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.92fr);
  gap: 20px;
  margin-top: 28px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 10px);
  background:
    radial-gradient(circle at 90% 12%, color-mix(in srgb, var(--butter) 58%, transparent), transparent 30%),
    linear-gradient(135deg, color-mix(in srgb, var(--surface) 88%, var(--sage)), color-mix(in srgb, var(--surface) 78%, var(--blush)));
  box-shadow: 0 16px 38px rgba(31, 31, 29, 0.08);
}

.care-recipe-copy h2 {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.6vw, 4.4rem);
  font-weight: 600;
  line-height: 0.95;
}

.care-recipe-copy p:not(.section-kicker) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.72;
}

.care-recipe-card {
  display: grid;
  gap: 12px;
}

.care-recipe-card div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 90%, var(--paper));
}

.care-recipe-card span,
.brand-note span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.care-recipe-card strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  line-height: 1.5;
}

.care-guides {
  margin-top: 78px;
}

.care-guides .section-heading {
  display: block;
  max-width: 820px;
  margin-bottom: 28px;
}

.care-guides .section-heading h2 {
  margin-top: 8px;
}

.care-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.care-guide-grid article {
  overflow: hidden;
}

.care-guide-grid img {
  display: block;
  width: 100%;
  height: clamp(220px, 22vw, 280px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.care-guide-grid h3,
.care-guide-grid p {
  padding-right: 18px;
  padding-left: 18px;
}

.care-guide-grid h3 {
  margin: 18px 0 8px;
}

.care-guide-grid p {
  padding-bottom: 22px;
}

.care-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 72px;
  padding: clamp(26px, 4vw, 42px);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--surface) 82%, var(--butter)), color-mix(in srgb, var(--surface) 80%, var(--sky)));
}

.popular-section {
  padding-top: 86px;
  padding-bottom: 86px;
}

.popular-grid,
.landing-card-grid,
.landing-gallery {
  display: grid;
  gap: 16px;
}

.popular-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.popular-card,
.landing-card,
.landing-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 88%, var(--paper));
  box-shadow: 0 16px 38px rgba(31, 31, 29, 0.08);
}

.popular-card {
  --popular-accent: var(--rose);
  --popular-wash: color-mix(in srgb, var(--rose-soft) 42%, var(--surface));
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 18px;
  min-height: 190px;
  padding: 14px;
  align-items: stretch;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.popular-card:hover {
  border-color: color-mix(in srgb, var(--popular-accent) 42%, var(--line));
  box-shadow: 0 20px 44px rgba(31, 31, 29, 0.12);
  transform: translateY(-2px);
}

.popular-card__art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 160px;
  overflow: hidden;
  border-radius: calc(var(--radius) - 4px);
  color: var(--popular-accent);
  background:
    radial-gradient(circle at 28% 24%, color-mix(in srgb, var(--surface) 72%, transparent), transparent 34%),
    linear-gradient(145deg, var(--popular-wash), color-mix(in srgb, var(--popular-accent) 9%, var(--surface)));
}

.popular-card__art::after {
  position: absolute;
  inset: 10px;
  border: 1px solid color-mix(in srgb, var(--popular-accent) 18%, transparent);
  border-radius: calc(var(--radius) - 8px);
  content: "";
}

.popular-card__art svg {
  position: relative;
  z-index: 1;
  width: 82px;
  height: 82px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 220ms ease;
}

.popular-card:hover .popular-card__art svg {
  transform: translateY(-2px) scale(1.04);
}

.popular-card__art-delivery {
  --popular-accent: #8e9f7a;
  --popular-wash: #f1f6ea;
}

.popular-card-delivery {
  --popular-accent: #8e9f7a;
}

.popular-card__art-birthday {
  --popular-accent: #d4889a;
  --popular-wash: #fff0f4;
}

.popular-card-birthday {
  --popular-accent: #d4889a;
}

.popular-card__art-wedding {
  --popular-accent: #b7aa8f;
  --popular-wash: #fbf7ed;
}

.popular-card-wedding {
  --popular-accent: #b7aa8f;
}

.popular-card__art-peony {
  --popular-accent: #d68aa6;
  --popular-wash: #fff0f7;
}

.popular-card-peony {
  --popular-accent: #d68aa6;
}

.popular-card__art-hydrangea {
  --popular-accent: #7f9fbd;
  --popular-wash: #edf6fb;
}

.popular-card-hydrangea {
  --popular-accent: #7f9fbd;
}

.popular-card__art-care {
  --popular-accent: #d1a33b;
  --popular-wash: #fff7dc;
}

.popular-card-care {
  --popular-accent: #d1a33b;
}

.popular-card__art-spaces {
  --popular-accent: #839b86;
  --popular-wash: #eff7f0;
}

.popular-card-spaces {
  --popular-accent: #839b86;
}

.popular-card__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 10px 10px 8px 0;
}

.popular-card > i,
.landing-card i {
  color: var(--rose);
}

.popular-card__copy strong,
.landing-card strong {
  margin-top: 0;
  font-size: 1.1rem;
}

.popular-card__copy span,
.landing-card span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.62;
}

.popular-card__copy em {
  align-self: end;
  justify-self: end;
  margin-top: auto;
  color: var(--graphite);
  font-style: normal;
  font-weight: 900;
}

.landing-page {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 108px 0 72px;
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 28px;
  align-items: stretch;
}

.landing-hero-copy {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: clamp(500px, 41vw, 560px);
  padding: clamp(36px, 4.4vw, 54px);
  border-radius: calc(var(--radius) + 10px);
  background:
    radial-gradient(circle at 90% 8%, color-mix(in srgb, var(--blush) 60%, transparent), transparent 28%),
    linear-gradient(135deg, color-mix(in srgb, var(--surface) 88%, var(--butter)), color-mix(in srgb, var(--surface) 78%, var(--sage)));
  box-shadow: var(--shadow);
}

.landing-hero h1,
.landing-section h2,
.landing-cta h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.95;
}

.landing-hero h1 {
  max-width: 780px;
  font-size: clamp(2.75rem, 4.2vw + 1.05rem, 4.45rem);
  line-height: 1.06;
  text-wrap: balance;
}

.landing-hero p:not(.section-kicker),
.landing-section p,
.landing-cta p {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.72;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.landing-hero-photo,
.landing-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) + 10px);
  box-shadow: var(--shadow);
}

.landing-hero-photo {
  height: clamp(500px, 41vw, 560px);
}

.landing-hero-photo img,
.landing-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-section {
  margin-top: 56px;
}

.landing-section h2,
.landing-cta h2 {
  max-width: 820px;
  font-size: clamp(2rem, 2.8vw, 3.25rem);
  line-height: 1.08;
}

.landing-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.landing-card {
  display: flex;
  flex-direction: column;
  min-height: 190px;
  padding: 24px;
}

.landing-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

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

.landing-gallery figure {
  min-height: 360px;
}

.landing-gallery figcaption {
  padding: 16px 18px;
  color: var(--muted);
  background: var(--surface);
}

.landing-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
  padding: clamp(26px, 4vw, 42px);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--surface) 82%, var(--blush)), color-mix(in srgb, var(--surface) 78%, var(--butter)));
}

.landing-cta .button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.landing-note-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.landing-note-list li {
  padding: 16px 18px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 88%, var(--paper));
}

.brand-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.brand-section h2 {
  max-width: 760px;
  font-size: clamp(2rem, 2.4vw, 2.75rem);
  line-height: 1.12;
}

.brand-note {
  min-height: 156px;
  padding: clamp(20px, 2.4vw, 26px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 10px);
  background:
    radial-gradient(circle at 88% 12%, color-mix(in srgb, var(--rose-soft) 52%, transparent), transparent 32%),
    linear-gradient(135deg, color-mix(in srgb, var(--surface) 88%, var(--butter)), color-mix(in srgb, var(--surface) 82%, var(--sage)));
  box-shadow: 0 16px 38px rgba(31, 31, 29, 0.08);
}

.brand-note strong {
  display: block;
  max-width: 560px;
  margin-top: 12px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.22;
}

.call-dialog {
  width: min(100% - 32px, 620px);
  max-height: calc(100dvh - 36px);
  padding: 0;
  color: var(--ink);
  border: 0;
  border-radius: calc(var(--radius) + 8px);
  background: transparent;
  outline: none;
  overflow: visible;
}

.call-dialog::backdrop {
  background: rgba(31, 31, 29, 0.46);
  backdrop-filter: blur(10px);
}

.call-dialog__panel {
  position: relative;
  max-height: calc(100dvh - 36px);
  padding: clamp(24px, 4vw, 34px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: inherit;
  background:
    radial-gradient(circle at 82% 12%, color-mix(in srgb, var(--blush) 58%, transparent), transparent 32%),
    linear-gradient(140deg, color-mix(in srgb, var(--surface) 94%, var(--butter)), color-mix(in srgb, var(--surface) 90%, var(--sage)));
  box-shadow: 0 32px 90px rgba(31, 31, 29, 0.26);
  outline: none;
}

.call-dialog__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--graphite);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: color-mix(in srgb, var(--surface) 86%, transparent);
}

.call-dialog__copy {
  max-width: 500px;
  padding-right: 36px;
}

.call-dialog h2 {
  margin: 6px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 0.95;
}

.call-dialog p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.call-dialog__direct {
  width: 100%;
  min-height: 54px;
  margin-top: 22px;
}

.callback-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.callback-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.callback-form label:has(input[required]) > span::after,
.callback-form label:has(select[required]) > span::after,
.callback-form label:has(textarea[required]) > span::after {
  margin-left: 4px;
  color: var(--rose);
  content: "*";
}

.callback-form input,
.callback-form select,
.callback-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 88%, var(--paper));
  outline: none;
  font: inherit;
  font-weight: 600;
}

.callback-form textarea {
  resize: vertical;
}

.callback-form input:focus,
.callback-form select:focus,
.callback-form textarea:focus {
  border-color: color-mix(in srgb, var(--rose) 58%, var(--line));
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--rose-soft) 55%, transparent);
}

.callback-form .button {
  min-height: 54px;
}

.callback-note {
  min-height: 22px;
  font-size: 0.88rem;
}

.callback-note.is-success {
  color: var(--leaf);
}

.callback-note.is-warning {
  color: var(--berry);
}

.page-progress-control {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  padding: 0;
  color: var(--ink);
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.92);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.page-progress-control__ring {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  filter: drop-shadow(0 16px 26px rgba(31, 31, 29, 0.24));
}

.page-progress-control__ring svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.page-progress-control__ring-bg {
  fill: color-mix(in srgb, var(--surface) 88%, var(--blush));
  stroke: color-mix(in srgb, var(--line) 88%, var(--graphite));
  stroke-width: 1;
}

.page-progress-control__ring-track,
.page-progress-control__ring-value {
  fill: none;
  stroke-width: 6;
}

.page-progress-control__ring-track {
  stroke: color-mix(in srgb, var(--rose-soft) 48%, var(--surface));
}

.page-progress-control__ring-value {
  stroke: var(--rose);
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 32px 32px;
  transition: stroke-dashoffset 90ms linear;
}

.page-progress-control.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.page-progress-control:hover,
.page-progress-control:focus-visible {
  outline: none;
  transform: translateY(-2px) scale(1);
}

.page-progress-control__content {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  align-self: center;
  justify-self: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.page-progress-control__content svg {
  width: 20px;
  height: 20px;
  color: var(--graphite);
}

.page-progress-control__percent {
  margin-top: -5px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 1;
}

.site-footer {
  border-top-color: var(--line);
}

.footer-nav a,
.footer-contacts a {
  color: var(--graphite);
}

[data-theme="dark"] .site-footer .ckromniq-link {
  color: color-mix(in srgb, var(--muted) 78%, var(--ink));
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.36);
}

[data-theme="dark"] .ckromniq-tooltip__label {
  border-color: color-mix(in srgb, var(--rose) 34%, var(--line));
  background:
    linear-gradient(135deg,
      color-mix(in srgb, var(--surface) 86%, var(--blush)),
      color-mix(in srgb, var(--surface) 82%, var(--sage)));
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .ckromniq-tooltip__label::after {
  border-color: color-mix(in srgb, var(--rose) 34%, var(--line));
  background:
    linear-gradient(135deg,
      color-mix(in srgb, var(--surface) 86%, var(--blush)),
      color-mix(in srgb, var(--surface) 82%, var(--sage)));
}

.signal-strip div:nth-child(1) {
  background: color-mix(in srgb, var(--sage) 62%, var(--surface));
}

.signal-strip div:nth-child(2) {
  background: color-mix(in srgb, var(--blush) 62%, var(--surface));
}

.signal-strip div:nth-child(3) {
  background: color-mix(in srgb, var(--butter) 58%, var(--surface));
}

.catalog-section {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--blush) 54%, var(--paper)) 0%, color-mix(in srgb, var(--paper) 72%, var(--butter)) 48%, color-mix(in srgb, var(--sky) 42%, var(--paper)) 100%);
  box-shadow: 0 0 0 100vmax color-mix(in srgb, var(--paper) 78%, var(--blush));
  clip-path: inset(0 -100vmax);
}

.studio-section {
  background:
    linear-gradient(110deg, color-mix(in srgb, var(--paper) 86%, var(--sage)) 0%, color-mix(in srgb, var(--paper) 74%, var(--blush)) 100%);
  box-shadow: 0 0 0 100vmax color-mix(in srgb, var(--paper) 84%, var(--sage));
  clip-path: inset(0 -100vmax);
}

.delivery-section {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--butter) 46%, var(--paper)) 0%, color-mix(in srgb, var(--rose-soft) 38%, var(--paper)) 52%, color-mix(in srgb, var(--sage) 46%, var(--paper)) 100%);
  box-shadow: 0 0 0 100vmax color-mix(in srgb, var(--paper) 78%, var(--butter));
  clip-path: inset(0 -100vmax);
}

.delivery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 18px;
  margin-top: 18px;
}

.delivery-map-card {
  display: grid;
  min-height: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--surface) 84%, var(--sky)), color-mix(in srgb, var(--surface) 78%, var(--blush)));
}

.delivery-map {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 82%, var(--sky));
}

.delivery-zones-card {
  display: grid;
  grid-template-areas:
    "kicker"
    "title"
    "control"
    "map"
    "points";
  align-items: start;
  align-content: start;
  gap: 16px;
  padding: 22px;
  overflow: visible;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 96%, transparent), color-mix(in srgb, var(--sky) 14%, var(--surface))),
    linear-gradient(135deg, color-mix(in srgb, var(--blush) 24%, transparent), color-mix(in srgb, var(--butter) 18%, transparent));
}

.delivery-zones-card .section-kicker {
  grid-area: kicker;
}

.delivery-zones-card h3 {
  grid-area: title;
  margin: -4px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.7vw, 4rem);
  font-weight: 600;
  line-height: 0.95;
}

.delivery-zone-control {
  grid-area: control;
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(320px, 0.62fr) minmax(240px, 0.38fr);
  gap: 12px 16px;
  align-items: start;
  margin-top: 2px;
}

.delivery-address-field {
  position: relative;
  display: grid;
  gap: 7px;
}

.delivery-address-field label {
  color: var(--graphite);
  font-size: 0.86rem;
  font-weight: 900;
}

.delivery-address-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.delivery-address-row input {
  min-height: 44px;
  width: 100%;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: 0 12px 26px rgba(31, 31, 29, 0.08);
  font-weight: 750;
}

.delivery-address-row button {
  min-height: 44px;
  padding: 0 16px;
  color: var(--white);
  border: 0;
  border-radius: var(--radius);
  background: var(--leaf);
  box-shadow: 0 12px 26px rgba(47, 83, 57, 0.2);
  font-weight: 900;
}

.delivery-address-suggestions {
  position: absolute;
  z-index: 60;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  display: grid;
  max-height: 230px;
  overflow: auto;
  padding: 6px;
  border: 1px solid color-mix(in srgb, var(--leaf) 18%, var(--line));
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  box-shadow: 0 18px 42px rgba(31, 31, 29, 0.14);
  backdrop-filter: blur(16px);
}

.delivery-address-suggestions[hidden] {
  display: none;
}

.delivery-address-suggestions__item {
  min-height: 38px;
  padding: 9px 10px;
  color: var(--ink);
  border: 0;
  border-radius: calc(var(--radius) - 4px);
  background: transparent;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.delivery-address-suggestions__item:hover,
.delivery-address-suggestions__item:focus-visible {
  outline: 0;
  background: color-mix(in srgb, var(--sage) 34%, transparent);
}

.delivery-zone-summary {
  display: grid;
  gap: 7px;
  align-self: end;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
  white-space: pre-line;
}

.delivery-zone-result {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  padding: 7px 10px;
  color: var(--leaf-dark);
  border: 1px solid color-mix(in srgb, var(--leaf) 24%, var(--line));
  border-radius: 999px;
  background: color-mix(in srgb, var(--sage) 42%, var(--surface));
  box-shadow: 0 10px 24px rgba(47, 83, 57, 0.12);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.25;
}

[data-theme="dark"] .delivery-zone-result {
  color: var(--ink);
  border-color: color-mix(in srgb, var(--leaf) 44%, var(--line));
  background: color-mix(in srgb, var(--leaf) 22%, var(--surface));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
}

.delivery-zone-summary span {
  line-height: 1.45;
}

.delivery-zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.delivery-zone-list span {
  display: inline-grid;
  min-height: 34px;
  place-items: center;
  padding: 7px 12px;
  color: var(--graphite);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  box-shadow: 0 14px 34px rgba(31, 31, 29, 0.08);
  font-size: 0.82rem;
  font-weight: 900;
}

.delivery-zone-points {
  grid-area: points;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 12px;
}

.delivery-zone-points div {
  display: grid;
  gap: 4px;
  align-content: start;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 90%, transparent);
}

.delivery-zone-points strong {
  font-size: 0.95rem;
}

.delivery-zone-points span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.delivery-map-note {
  position: absolute;
  z-index: 2;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 93%, transparent);
  box-shadow: 0 18px 50px rgba(31, 31, 29, 0.1);
  backdrop-filter: blur(14px);
}

.delivery-map-note strong {
  font-size: 0.92rem;
}

.delivery-map-note span {
  color: var(--muted);
  font-size: 0.84rem;
}

.delivery-zone-map {
  grid-area: map;
  position: relative;
  z-index: 1;
  min-height: 0;
  aspect-ratio: 1.32 / 1;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 10px);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, transparent 0 48%, color-mix(in srgb, var(--leaf) 12%, transparent) 49% 51%, transparent 52%),
    linear-gradient(0deg, transparent 0 48%, color-mix(in srgb, var(--leaf) 12%, transparent) 49% 51%, transparent 52%),
    color-mix(in srgb, var(--surface) 88%, var(--sky));
}

.delivery-zone-map__fallback,
.delivery-zone-map__canvas {
  position: absolute;
  inset: 0;
}

.delivery-zone-map__fallback {
  z-index: 1;
  transition: opacity 220ms ease;
}

.delivery-zone-map__canvas {
  z-index: 2;
  opacity: 0;
  background: color-mix(in srgb, var(--surface) 88%, var(--sky));
  transition: opacity 240ms ease;
}

.delivery-zone-map.is-loaded .delivery-zone-map__canvas {
  opacity: 1;
}

.delivery-zone-map.is-loaded .delivery-zone-map__fallback {
  opacity: 0;
  pointer-events: none;
}

.delivery-zone-map__status {
  position: absolute;
  z-index: 4;
  left: 14px;
  top: 12px;
  bottom: auto;
  max-width: min(360px, calc(100% - 28px));
  margin: 0;
  padding: 8px 11px;
  color: var(--leaf-dark);
  border: 1px solid color-mix(in srgb, var(--leaf) 18%, var(--line));
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  box-shadow: 0 16px 34px rgba(31, 31, 29, 0.12);
  backdrop-filter: blur(14px);
  font-size: 0.78rem;
  font-weight: 850;
}

[data-theme="dark"] .delivery-zone-map__status {
  color: var(--ink);
  background: color-mix(in srgb, var(--surface) 86%, transparent);
}

.delivery-zone-map.is-loaded .delivery-zone-map__status {
  color: var(--ink);
  background: color-mix(in srgb, var(--surface) 78%, transparent);
}

.delivery-zone-map__pin {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-grid;
  place-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--white);
  border-radius: 999px;
  background: var(--leaf);
  box-shadow: 0 12px 28px rgba(47, 83, 57, 0.22);
  font-size: 0.78rem;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.delivery-route-row {
  grid-area: points;
  margin-top: 0;
}

.delivery-route-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--leaf);
  font-weight: 900;
  text-decoration: none;
}

.delivery-route-link svg {
  color: var(--rose);
}

.addons-copy {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: end;
  padding-bottom: 6px;
}

.addons-copy h2 {
  max-width: 760px;
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4vw, 4.1rem);
  font-weight: 600;
  line-height: 1.02;
}

.addons-copy p:not(.section-kicker) {
  max-width: 520px;
  margin: 16px 0 0;
  color: var(--muted);
}

.addons-copy-aside {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 520px;
  justify-self: end;
}

.addons-copy .addons-copy-aside p {
  margin: 0;
  color: var(--muted);
}

.addons-highlight {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 86%, var(--sage));
}

.addons-highlight svg {
  width: 28px;
  height: 28px;
  color: var(--rose);
}

.addons-highlight span {
  color: var(--muted);
  line-height: 1.55;
}

.addons-layout {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: stretch;
}

.addons-photo {
  box-sizing: border-box;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(31, 31, 29, 0.08);
}

.addons-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.delivery-options,
.addons-grid {
  display: grid;
  gap: 14px;
}

.delivery-options article,
.addons-grid article {
  display: grid;
  gap: 12px;
  min-height: 132px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.delivery-options i,
.delivery-options svg,
.addons-grid i,
.addons-grid svg {
  width: 30px;
  height: 30px;
  color: var(--rose);
}

.delivery-options strong,
.addons-grid strong {
  font-size: 1.05rem;
}

.delivery-options span,
.addons-grid span {
  color: var(--muted);
}

.addons-section {
  display: grid;
  gap: 28px;
  align-items: start;
  background:
    linear-gradient(120deg, color-mix(in srgb, var(--sky) 45%, var(--paper)), color-mix(in srgb, var(--blush) 42%, var(--paper)) 58%, color-mix(in srgb, var(--butter) 34%, var(--paper)));
  box-shadow: 0 0 0 100vmax color-mix(in srgb, var(--paper) 82%, var(--sky));
  clip-path: inset(0 -100vmax);
}

.addons-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
}

.addons-grid article:nth-child(1) {
  background: color-mix(in srgb, var(--blush) 48%, var(--surface));
}

.addons-grid article:nth-child(2) {
  background: color-mix(in srgb, var(--sage) 48%, var(--surface));
}

.addons-grid article:nth-child(3) {
  background: color-mix(in srgb, var(--butter) 44%, var(--surface));
}

.addons-grid article:nth-child(4) {
  background: color-mix(in srgb, var(--sky) 48%, var(--surface));
}

.product-card {
  --card-accent: var(--rose);
  --card-wash: color-mix(in srgb, var(--rose-soft) 34%, var(--surface));
  border-top: 4px solid var(--card-accent);
  background: linear-gradient(180deg, var(--surface), var(--card-wash));
}

.product-card:nth-child(1) {
  --card-accent: #d88a9a;
  --card-wash: #fff1f4;
}

.product-card:nth-child(2) {
  --card-accent: #93abc7;
  --card-wash: #eef6fb;
}

.product-card:nth-child(3) {
  --card-accent: #ef7d6f;
  --card-wash: #fff0ec;
}

.product-card:nth-child(4) {
  --card-accent: #d8a4bf;
  --card-wash: #fff2fa;
}

.product-card:nth-child(5) {
  --card-accent: #d5a921;
  --card-wash: #fff8dc;
}

.product-card:nth-child(6) {
  --card-accent: #9bbde3;
  --card-wash: #edf6ff;
}

.product-card:nth-child(7) {
  --card-accent: #e38fa3;
  --card-wash: #fff1f6;
}

.product-card:nth-child(8) {
  --card-accent: #8fb192;
  --card-wash: #eff8ed;
}

.product-card:nth-child(9) {
  --card-accent: #d89bae;
  --card-wash: #fff1f6;
}

.product-card:nth-child(10) {
  --card-accent: #e2b43f;
  --card-wash: #fff6d8;
}

.product-card:nth-child(11) {
  --card-accent: #d89bae;
  --card-wash: #fff1f6;
}

.product-card:nth-child(12) {
  --card-accent: #a9c37b;
  --card-wash: #f3f8e9;
}

.product-card:nth-child(13) {
  --card-accent: #d9c27a;
  --card-wash: #fff8df;
}

.product-card:nth-child(14) {
  --card-accent: #d49aa9;
  --card-wash: #fff2f5;
}

.product-card:nth-child(15) {
  --card-accent: #c9c3b7;
  --card-wash: #fbf8f1;
}

.product-card:nth-child(16) {
  --card-accent: #e1b64a;
  --card-wash: #fff6dc;
}

.product-meta {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 9px;
  border-radius: 999px;
  color: color-mix(in srgb, var(--ink) 86%, var(--card-accent));
  background: color-mix(in srgb, var(--card-accent) 18%, var(--surface));
}

.icon-button {
  color: var(--ink);
  border-color: color-mix(in srgb, var(--card-accent) 45%, var(--line));
  background: color-mix(in srgb, var(--card-accent) 18%, var(--surface));
}

.icon-button:hover,
.icon-button:focus-visible {
  background: color-mix(in srgb, var(--card-accent) 28%, var(--surface));
}

.tab.is-active {
  color: #ffffff;
  border-color: color-mix(in srgb, var(--leaf-dark) 72%, var(--berry));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--leaf-dark) 90%, var(--berry)), color-mix(in srgb, var(--berry) 72%, var(--leaf-dark)));
  box-shadow:
    0 10px 22px color-mix(in srgb, var(--leaf-dark) 18%, transparent),
    inset 0 0 0 1px color-mix(in srgb, #ffffff 16%, transparent);
}

.tab:not(.is-active):nth-child(2):hover,
.tab:not(.is-active):nth-child(2):focus-visible {
  background: color-mix(in srgb, var(--blush) 68%, var(--surface));
}

.tab:not(.is-active):nth-child(3):hover,
.tab:not(.is-active):nth-child(3):focus-visible {
  background: color-mix(in srgb, var(--butter) 66%, var(--surface));
}

.tab:not(.is-active):nth-child(4):hover,
.tab:not(.is-active):nth-child(4):focus-visible {
  background: color-mix(in srgb, var(--sky) 64%, var(--surface));
}

.step:nth-child(1) {
  background: linear-gradient(160deg, var(--surface), color-mix(in srgb, var(--blush) 44%, var(--surface)));
}

.step:nth-child(2) {
  background: linear-gradient(160deg, var(--surface), color-mix(in srgb, var(--butter) 44%, var(--surface)));
}

.step:nth-child(3) {
  background: linear-gradient(160deg, var(--surface), color-mix(in srgb, var(--sky) 48%, var(--surface)));
}

.step:nth-child(4) {
  background: linear-gradient(160deg, var(--surface), color-mix(in srgb, var(--sage) 52%, var(--surface)));
}

[data-theme="dark"] .catalog-section,
[data-theme="dark"] .studio-section,
[data-theme="dark"] .delivery-section,
[data-theme="dark"] .addons-section {
  background: transparent;
  box-shadow: 0 0 0 100vmax var(--paper);
}

[data-theme="dark"] .product-card {
  background: linear-gradient(180deg, var(--surface), color-mix(in srgb, var(--card-accent) 12%, var(--surface)));
}

[data-theme="dark"] .product-card:nth-child(n) {
  --card-wash: var(--surface);
}

[data-theme="dark"] .product-meta,
[data-theme="dark"] .icon-button {
  color: var(--ink);
  background: color-mix(in srgb, var(--card-accent) 18%, var(--surface));
}

[data-theme="dark"] .page-progress-control {
  color: var(--ink);
}

[data-theme="dark"] .page-progress-control__ring-bg {
  fill: color-mix(in srgb, var(--surface) 92%, var(--rose-soft));
  stroke: color-mix(in srgb, var(--line) 78%, var(--surface));
}

[data-theme="dark"] .page-progress-control__ring-track {
  stroke: color-mix(in srgb, var(--rose-soft) 42%, var(--surface));
}

[data-theme="dark"] .tab.is-active {
  color: #0e1613;
  background: var(--ink);
}

svg {
  width: 1.1em;
  height: 1.1em;
  stroke-width: 2.2;
}

@media (max-width: 1020px) {
  .footer-main {
    grid-template-columns: minmax(220px, 1fr) minmax(240px, 1fr);
  }

  .footer-nav {
    justify-self: end;
  }

  .footer-contacts {
    grid-column: 1 / -1;
    justify-self: start;
    max-width: none;
    text-align: left;
  }

  .footer-contact-row {
    justify-content: flex-start;
  }

  .footer-channels {
    justify-content: flex-start;
  }

  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    width: min(100% - 28px, 1280px);
  }

  .brand {
    grid-column: 1;
  }

  .nav-toggle {
    display: grid;
    grid-column: 4;
    order: 4;
    justify-self: end;
  }

  .header-tools {
    grid-column: 3;
    order: 3;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(33, 29, 25, 0.12);
    border-radius: var(--radius);
    background: rgba(251, 248, 241, 0.98);
    color: var(--ink);
    box-shadow: 0 18px 50px rgba(26, 22, 18, 0.12);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
  }

  .header-action {
    justify-self: end;
  }

  .hero h1 {
    font-size: 5.1rem;
  }

  .product-grid,
  .studio-section,
  .delivery-grid,
  .delivery-map-card,
  .addons-section,
  .addons-copy,
  .addons-layout,
  .contacts-section,
  .order-section,
  .care-hero,
  .care-split,
  .care-recipe,
  .care-guides .section-heading,
  .landing-hero,
  .landing-cta,
  .brand-split {
    grid-template-columns: 1fr;
  }

  .delivery-zones-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "kicker"
      "title"
      "control"
      "map"
      "points";
  }

  .delivery-zone-map {
    aspect-ratio: 1.55 / 1;
  }

  .delivery-zone-control {
    grid-template-columns: 1fr;
  }

  .delivery-zone-summary {
    grid-column: 1 / -1;
  }

  .delivery-zone-points {
    grid-template-columns: 1fr;
  }

  .steps,
  .confidence-grid,
  .care-steps,
  .care-guide-grid,
  .popular-grid,
  .landing-card-grid,
  .landing-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .studio-media,
  .studio-media img {
    min-height: 420px;
  }

  .studio-list-left,
  .studio-aside {
    grid-column: 1;
  }

  .order-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .order-summary {
    grid-template-columns: 1fr;
  }

  .order-summary dl div,
  .order-total-row {
    display: grid;
    gap: 4px;
  }

  .order-summary dd {
    text-align: left;
  }

  section[id] {
    scroll-margin-top: 86px;
  }

  #delivery {
    scroll-margin-top: 76px;
  }

  .site-header {
    height: 66px;
    margin-top: 10px;
    padding: 0 12px;
    gap: 8px;
  }

  .inner-page .site-header,
  .site-header.is-scrolled,
  .site-header.is-open {
    width: 100%;
    height: 64px;
    margin-top: 0;
    padding-right: 14px;
    padding-left: 14px;
    border-radius: 0;
  }

  .care-page {
    width: min(100% - 28px, var(--max));
    padding-top: 92px;
    padding-bottom: 52px;
  }

  .landing-page {
    width: min(100% - 28px, var(--max));
    padding-top: 92px;
    padding-bottom: 52px;
  }

  .care-hero,
  .landing-hero {
    min-height: 0;
    gap: 16px;
  }

  .care-hero-copy,
  .landing-hero-copy {
    height: auto;
    padding: 28px 22px;
  }

  .care-hero h1 {
    font-size: 2.9rem;
  }

  .landing-hero h1 {
    font-size: 3.2rem;
  }

  .care-hero p:not(.section-kicker),
  .care-split p,
  .care-cta p,
  .landing-hero p:not(.section-kicker),
  .landing-section p,
  .landing-cta p {
    font-size: 0.98rem;
  }

  .care-hero-copy > p:not(.section-kicker) {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .care-hero-photo,
  .landing-hero-photo {
    height: 360px;
    min-height: 360px;
  }

  .care-split,
  .care-guides,
  .care-cta,
  .landing-section,
  .landing-cta {
    margin-top: 44px;
  }

  .care-split h2,
  .care-guides h2,
  .care-cta h2 {
    font-size: 2.7rem;
  }

  .landing-section h2,
  .landing-cta h2 {
    font-size: 2.35rem;
    line-height: 1.1;
  }

  .care-cta,
  .landing-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .popular-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .popular-card {
    grid-template-columns: 1fr;
  }

  .popular-card__art {
    min-height: 148px;
    aspect-ratio: 16 / 9;
  }

  .popular-card__copy {
    padding: 4px 8px 8px;
  }

  .call-dialog {
    width: min(100% - 20px, 620px);
  }

  .call-dialog__panel {
    padding: 24px 20px 22px;
  }

  .callback-form {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .brand-tagline {
    display: none;
  }

  .header-tools {
    gap: 6px;
  }

  .header-action span {
    display: none;
  }

  .header-action {
    width: 44px;
    padding: 0;
  }

  .theme-toggle,
  .nav-toggle {
    width: 44px;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(20, 20, 16, 0.86) 0%, rgba(25, 27, 20, 0.62) 70%, rgba(25, 27, 20, 0.38) 100%),
      linear-gradient(0deg, rgba(20, 18, 14, 0.54) 0%, rgba(20, 18, 14, 0.08) 42%);
  }

  .hero-content,
  .signal-strip,
  .section,
  .order-section,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-contacts {
    justify-self: start;
    text-align: left;
  }

  .footer-channels {
    justify-content: flex-start;
  }

  .hero-content {
    padding: 118px 0 88px;
  }

  .hero h1 {
    font-size: 4.1rem;
  }

  .hero-lead {
    font-size: 1.08rem;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-facts,
  .signal-strip,
  .steps,
  .confidence-grid,
  .faq-block,
  .faq-grid,
  .order-form,
  .order-actions,
  .addon-fieldset,
  .addons-grid,
  .addons-copy,
  .addons-layout,
  .care-recipe,
  .brand-split {
    grid-template-columns: 1fr;
  }

  .signal-strip {
    margin-top: -18px;
  }

  .order-form label.form-wide textarea[name="comment"] {
    min-height: 150px;
  }

  .section,
  .order-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section.studio-section {
    padding-top: 0;
    padding-bottom: 72px;
  }

  #about {
    scroll-margin-top: 86px;
  }

  .section-copy h2,
  .order-copy h2,
  .contacts-copy h2,
  .studio-copy h2 {
    font-size: 2.28rem;
  }

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

  .product-card {
    min-height: 440px;
  }

  .studio-media,
  .studio-media img {
    height: 330px;
  }

  .studio-section {
    gap: 32px;
  }

  .about-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .studio-list {
    grid-template-columns: 1fr;
  }

  .studio-list div {
    min-height: 74px;
    align-items: center;
  }

  .order-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .contact-map-frame {
    padding: 10px;
  }

  .map-frame-top {
    align-items: flex-start;
    padding-bottom: 10px;
  }

  .map-frame-top strong {
    font-size: 0.95rem;
  }

  .map-route-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .map-provider-tab {
    min-height: 40px;
    padding: 0 8px;
    font-size: 0.76rem;
    gap: 5px;
  }

  .map-provider-tab i,
  .map-provider-tab svg,
  .map-route-action i,
  .map-route-action svg {
    width: 15px;
    height: 15px;
  }

  .map-route-action {
    min-height: 40px;
    width: 100%;
  }

  .contact-map-pane,
  .contact-map-embed {
    min-height: 320px;
  }

  .contact-map {
    min-height: 320px;
  }

  .delivery-map-card {
    min-height: 0;
    padding: 16px;
  }

  .delivery-map {
    min-height: 310px;
  }

  .scroll-cue {
    left: 14px;
    right: auto;
    bottom: 18px;
  }

  .page-progress-control {
    right: 14px;
    bottom: 14px;
    width: 58px;
    height: 58px;
  }

  .page-progress-control__content {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 3.45rem;
  }

  .button,
  .icon-button {
    width: 100%;
  }

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

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

  .care-steps,
  .care-guide-grid,
  .popular-grid,
  .landing-card-grid,
  .landing-gallery,
  .landing-note-list {
    grid-template-columns: 1fr;
  }

  .care-hero h1 {
    font-size: 2.58rem;
  }

  .landing-hero h1 {
    font-size: 2.75rem;
  }

  .care-hero-copy > p:not(.section-kicker) {
    font-size: 1.06rem;
  }

  .care-note strong {
    font-size: 1.75rem;
  }

  .call-dialog__panel {
    padding: 20px;
  }

  .call-dialog h2 {
    font-size: 2.35rem;
  }

  .call-dialog__direct,
  .callback-form .button {
    min-height: 50px;
  }

  .callback-form {
    gap: 10px;
    margin-top: 12px;
  }

  .callback-form input,
  .callback-form select,
  .callback-form textarea {
    min-height: 48px;
  }

  .tab {
    min-width: 0;
  }
}

.legal-page {
  width: min(100% - 48px, 980px);
  margin: 0 auto;
  padding: 116px 0 76px;
}

.legal-hero {
  display: grid;
  gap: 12px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 12px);
  background:
    radial-gradient(circle at 92% 10%, color-mix(in srgb, var(--blush) 54%, transparent), transparent 30%),
    linear-gradient(135deg, color-mix(in srgb, var(--surface) 90%, var(--butter)), color-mix(in srgb, var(--surface) 78%, var(--sage)));
  box-shadow: var(--shadow);
}

.legal-hero h1 {
  max-width: 680px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 4.7vw, 4.55rem);
  font-weight: 600;
  line-height: 1.02;
  text-wrap: balance;
}

.legal-hero p:not(.section-kicker) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.legal-panel {
  margin-top: 18px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background: color-mix(in srgb, var(--surface) 92%, var(--paper));
  box-shadow: 0 18px 48px rgba(31, 31, 29, 0.08);
}

.legal-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.legal-details div {
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 88%, var(--mist));
}

.legal-details dt,
.legal-text h2 {
  color: color-mix(in srgb, var(--muted) 78%, var(--ink));
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.legal-details dd {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.45;
}

.legal-details a,
.legal-text a {
  color: var(--leaf);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.legal-text {
  display: grid;
  gap: 18px;
  max-width: 880px;
}

.legal-text h2 {
  margin: 16px 0 0;
  color: var(--ink);
}

.legal-text h2:first-child {
  margin-top: 0;
}

.legal-text p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.cookie-consent {
  position: fixed;
  z-index: 95;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent__panel {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 560px;
  padding: 10px 12px 10px 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 96%, var(--paper));
  box-shadow: 0 12px 32px rgba(31, 31, 29, 0.12);
  backdrop-filter: blur(12px);
  pointer-events: auto;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.cookie-consent.is-visible .cookie-consent__panel {
  opacity: 1;
  transform: translateY(0);
}

.cookie-consent__icon {
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--leaf);
}

.cookie-consent__icon svg {
  width: 20px;
  height: 20px;
}

.cookie-consent__copy {
  flex: 1 1 auto;
  margin: 0;
  min-width: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.cookie-consent__copy a {
  color: var(--leaf);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.cookie-consent__actions {
  display: inline-flex;
  flex-shrink: 0;
  gap: 6px;
}

.cookie-consent__btn {
  min-height: 32px;
  padding: 0 12px;
  border-radius: 6px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.cookie-consent__btn:hover,
.cookie-consent__btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.cookie-consent__btn--primary {
  color: var(--white);
  background: var(--leaf);
}

.cookie-consent__btn--primary:hover,
.cookie-consent__btn--primary:focus-visible {
  background: color-mix(in srgb, var(--leaf) 86%, var(--ink));
}

.cookie-consent__btn--ghost {
  color: var(--graphite);
  border-color: var(--line);
  background: transparent;
}

.cookie-consent__btn--ghost:hover,
.cookie-consent__btn--ghost:focus-visible {
  background: color-mix(in srgb, var(--surface) 86%, var(--mist));
}

[data-theme="dark"] .cookie-consent__panel {
  background: color-mix(in srgb, var(--surface) 92%, var(--paper));
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.38);
}

[data-theme="dark"] .cookie-consent__btn--primary {
  color: #0e1613;
  background: var(--ink);
}

[data-theme="dark"] .cookie-consent__btn--primary:hover,
[data-theme="dark"] .cookie-consent__btn--primary:focus-visible {
  background: color-mix(in srgb, var(--ink) 88%, var(--leaf));
}

@media (max-width: 600px) {
  .legal-page {
    width: min(100% - 28px, 1060px);
    padding-top: 104px;
  }

  .legal-hero {
    padding: 26px;
  }

  .legal-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .legal-details {
    grid-template-columns: 1fr;
  }

  .cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .cookie-consent__panel {
    align-items: stretch;
    flex-direction: column;
    max-width: none;
    border-radius: calc(var(--radius) + 6px);
    padding: 12px;
  }

  .cookie-consent__actions {
    justify-content: flex-end;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-consent__panel {
    transition: none;
    transform: none;
  }
}

.map-v3-pin {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: translate(-18px, -38px);
  pointer-events: auto;
}

.map-v3-pin__dot {
  position: relative;
  width: 32px;
  height: 32px;
  border: 4px solid #ffffff;
  border-radius: 50% 50% 50% 0;
  background: #1ea436;
  box-shadow: 0 10px 24px rgba(31, 31, 29, 0.28);
  transform: rotate(-45deg);
}

.map-v3-pin__dot::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: #ffffff;
}

.map-v3-pin__label {
  padding: 7px 11px;
  border: 1px solid rgba(47, 83, 57, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #1f1f1d;
  box-shadow: 0 10px 24px rgba(31, 31, 29, 0.16);
  font-weight: 800;
  font-size: 13px;
  line-height: 1.1;
  white-space: nowrap;
}

.map-v3-pin--hub {
  pointer-events: none;
}

.map-v3-pin--hub .map-v3-pin__dot {
  width: 28px;
  height: 28px;
  background: var(--leaf);
}
