:root {
  --bg: #f8f4ef;
  --bg-light: #efe9e0;
  --bg-dark: #1a1614;
  --text: #2c2420;
  --text-muted: #7a6f68;
  --primary: #7d4e69;
  --primary-dk: #5e3a4f;
  --secondary: #4e7a6e;
  --accent: #bc8a5f;
  --white: #ffffff;
  --border: #d4c9be;
  --font-display: 'Cormorant Garant', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2.5rem;
  --sp-xl: 4rem;
  --sp-2xl: 6.5rem;
  --r-sm: 3px;
  --r-md: 8px;
  --r-lg: 18px;
  --sh-sm: 0 2px 10px rgba(26,22,20,0.07);
  --sh-md: 0 6px 28px rgba(26,22,20,0.11);
  --sh-lg: 0 16px 56px rgba(26,22,20,0.18);
  --wrap: 1220px;
  --hh: 70px;
  --ease: 0.26s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.68;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  line-height: 1.2;
  font-weight: 600;
}

h4 {
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

p { max-width: 60ch; }

.tag {
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--sp-xs);
}

.btn-primary {
  display: inline-block;
  padding: 0.72rem 1.8rem;
  background: var(--primary);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: var(--r-sm);
  transition: background var(--ease), transform var(--ease);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--primary-dk);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  padding: 0.72rem 1.8rem;
  background: transparent;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  transition: border-color var(--ease), background var(--ease);
  white-space: nowrap;
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(125,78,105,0.04);
}

.btn-ghost {
  display: inline-block;
  padding: 0.55rem 1.3rem;
  background: rgba(255,255,255,0.14);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.38);
  border-radius: var(--r-sm);
  backdrop-filter: blur(4px);
  transition: background var(--ease);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.24);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--primary);
  transition: gap var(--ease);
}

.link-arrow:hover { gap: 0.55rem; }

.link-arrow .material-icons-round {
  font-size: 1rem;
  transition: transform var(--ease);
}

.sv-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--hh);
  background: rgba(248,244,239,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.sv-header--scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--sh-sm);
}

.sv-header__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--sp-md);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-sm);
}

.sv-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  text-decoration: none;
}

.sv-logo__mark {
  width: 34px;
  height: 34px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 7px;
  flex-shrink: 0;
}

.sv-logo__text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--bg-dark);
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.sv-logo__text em {
  font-style: italic;
  font-size: 0.67rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.09em;
  font-family: var(--font-body);
}

.sv-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
}

.sv-nav__link {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--ease);
  position: relative;
  padding-bottom: 2px;
}

.sv-nav__link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.sv-nav__link:hover { color: var(--primary); }
.sv-nav__link:hover::after { transform: scaleX(1); }

.sv-nav__link--cta {
  padding: 0.5rem 1.2rem;
  border: 1.5px solid var(--primary);
  border-radius: var(--r-sm);
  color: var(--primary);
}

.sv-nav__link--cta::after { display: none; }

.sv-nav__link--cta:hover {
  background: var(--primary);
  color: var(--white);
}

.sv-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.3rem;
  color: var(--bg-dark);
  transition: color var(--ease);
}

.sv-hamburger:hover { color: var(--primary); }

.hero {
  min-height: 100vh;
  background: var(--bg-dark);
  padding-top: var(--hh);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(125,78,105,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero__grid {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: var(--sp-xl) var(--sp-md);
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: var(--sp-md) var(--sp-sm);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  grid-column: 1 / 3;
  grid-row: 1;
  padding-right: var(--sp-sm);
}

.hero__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-sm);
  display: block;
}

.hero__headline {
  color: var(--white);
  margin-bottom: var(--sp-md);
}

.hero__headline em {
  font-style: italic;
  color: var(--accent);
}

.hero__sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.68);
  margin-bottom: var(--sp-lg);
  max-width: 45ch;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  align-items: center;
}

.hero__stats {
  grid-column: 1 / 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  padding-top: var(--sp-md);
}

.hero__stat {
  display: flex;
  flex-direction: column;
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.hero__stat-lbl {
  font-size: 0.74rem;
  font-weight: 300;
  color: rgba(255,255,255,0.44);
  margin-top: 0.2rem;
  letter-spacing: 0.03em;
}

.hero__visual {
  grid-column: 3 / 5;
  grid-row: 1 / 3;
}

.hero__img-wrap {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 5 / 4;
}

.hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}

.hero__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom left, transparent 55%, rgba(26,22,20,0.35) 100%);
  pointer-events: none;
}

.hero__img-badge {
  position: absolute;
  bottom: var(--sp-md);
  left: var(--sp-md);
  background: rgba(26,22,20,0.7);
  color: rgba(255,255,255,0.78);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: var(--r-sm);
  backdrop-filter: blur(5px);
  z-index: 2;
}

.hero__accent-col {
  grid-column: 2 / 3;
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  padding-top: var(--sp-md);
}

.hero__accent-line {
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.hero__accent-txt {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
}

.categories {
  background: var(--primary);
  padding: var(--sp-2xl) 0;
}

.categories__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

.categories__head {
  text-align: center;
  margin-bottom: var(--sp-xl);
}

.categories__head .tag {
  color: rgba(255,255,255,0.6);
}

.categories__head h2 {
  color: var(--white);
  margin-bottom: var(--sp-xs);
}

.categories__head p {
  color: rgba(255,255,255,0.68);
  max-width: 50ch;
  margin: 0 auto;
  font-size: 0.95rem;
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.cat-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.18);
  transition: transform var(--ease), box-shadow var(--ease);
}

.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
}

.cat-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.cat-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.cat-card:hover .cat-card__img-wrap img {
  transform: scale(1.05);
}

.cat-card__overlay {
  position: absolute;
  bottom: var(--sp-xs);
  right: var(--sp-xs);
  background: rgba(26,22,20,0.65);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-sm);
  letter-spacing: 0.04em;
}

.cat-card__body {
  padding: var(--sp-md);
}

.cat-card__body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: var(--bg-dark);
}

.cat-card__body p {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: var(--sp-sm);
  line-height: 1.6;
}

.cat-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap var(--ease);
}

.cat-card__link:hover { gap: 0.48rem; }

.cat-card__link .material-icons-round {
  font-size: 0.96rem;
}

.features {
  padding: var(--sp-2xl) 0;
}

.features__split {
  background: linear-gradient(to bottom, var(--bg-dark) 50%, var(--bg) 50%);
}

.features__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
}

.feat {
  background: var(--white);
  border-radius: var(--r-md);
  padding: var(--sp-lg) var(--sp-md);
  box-shadow: var(--sh-md);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  transition: box-shadow var(--ease), transform var(--ease);
}

.feat:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-3px);
}

.feat__icon {
  font-size: 1.9rem;
  color: var(--primary);
  margin-bottom: var(--sp-sm);
}

.feat h4 {
  margin-bottom: 0.35rem;
  color: var(--bg-dark);
}

.feat p {
  font-size: 0.86rem;
  color: var(--text-muted);
  text-align: right;
  line-height: 1.6;
}

.about {
  background: var(--bg-light);
  padding: var(--sp-2xl) 0;
}

.about__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: var(--sp-xl);
}

.about__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

.about__row--rev .about__visual {
  order: -1;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.about__text h2 { color: var(--bg-dark); }

.about__text p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.72;
}

.about__img-frame {
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
}

.about__img-frame img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about__img-frame:hover img {
  transform: scale(1.03);
}

.highlight {
  background: linear-gradient(135deg, var(--bg) 50%, var(--bg-light) 50%);
  padding: var(--sp-2xl) 0;
}

.highlight__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: flex;
  justify-content: center;
}

.highlight__card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  overflow: hidden;
  max-width: 920px;
  width: 100%;
  position: relative;
}

.highlight__badge {
  position: absolute;
  top: var(--sp-md);
  left: var(--sp-md);
  background: var(--accent);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.24rem 0.7rem;
  border-radius: var(--r-sm);
  z-index: 3;
}

.highlight__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
}

.highlight__img {
  overflow: hidden;
}

.highlight__img img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.highlight__text {
  padding: var(--sp-xl) var(--sp-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-sm);
  text-align: right;
}

.highlight__text h2 { color: var(--bg-dark); }

.highlight__text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.72;
  text-align: right;
}

.promo {
  background: linear-gradient(to right, var(--bg-light) 32%, var(--bg-dark) 32%);
  padding: var(--sp-2xl) 0;
  overflow: hidden;
}

.promo__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: grid;
  grid-template-columns: 30fr 70fr;
  gap: var(--sp-xl);
  align-items: center;
}

.promo__text {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  text-align: right;
  padding-right: var(--sp-md);
}

.promo__text h2 { color: var(--bg-dark); }

.promo__text p {
  font-size: 0.92rem;
  color: var(--text-muted);
  text-align: right;
  line-height: 1.7;
}

.promo__frame {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 4px solid rgba(255,255,255,0.07);
  position: relative;
}

.promo__frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,22,20,0.28) 0%, transparent 45%);
  z-index: 1;
  pointer-events: none;
}

.promo__frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.showcase {
  padding: var(--sp-2xl) 0;
  background: var(--bg);
}

.showcase__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: grid;
  grid-template-columns: 66fr 34fr;
  gap: var(--sp-xl);
  align-items: start;
}

.showcase__main {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}

.showcase__main h2 { color: var(--bg-dark); }

.showcase__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.showcase__item {
  display: grid;
  grid-template-columns: 116px 1fr;
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: box-shadow var(--ease);
}

.showcase__item:hover {
  box-shadow: var(--sh-md);
}

.showcase__thumb img {
  width: 116px;
  height: 88px;
  object-fit: cover;
}

.showcase__desc {
  padding: var(--sp-sm) var(--sp-sm) var(--sp-sm) var(--sp-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.22rem;
  text-align: right;
}

.showcase__desc h4 { color: var(--bg-dark); }

.showcase__desc p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.price-tag {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
}

.showcase__aside {
  position: sticky;
  top: calc(var(--hh) + var(--sp-md));
}

.showcase__big-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-dark);
  position: relative;
  box-shadow: var(--sh-lg);
}

.showcase__big-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  opacity: 0.72;
  transition: opacity var(--ease);
  display: block;
}

.showcase__big-card:hover img {
  opacity: 0.85;
}

.showcase__big-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-md);
  background: linear-gradient(to top, rgba(26,22,20,0.82) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  align-items: flex-end;
}

.showcase__big-caption p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  text-align: right;
}

.contact {
  background: var(--bg-light);
  padding: var(--sp-2xl) 0;
}

.contact__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.contact__info h2 { color: var(--bg-dark); }

.contact__info > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  margin-top: 4px;
}

.contact__row {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.875rem;
  color: var(--text);
}

.contact__row .material-icons-round {
  font-size: 1.05rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.contact__row address {
  line-height: 1.6;
}

.contact__row--link {
  cursor: pointer;
  text-decoration: none;
  border-radius: var(--r-sm);
  padding: 0.4rem 0.5rem;
  margin: -0.4rem -0.5rem;
  transition: background var(--ease), color var(--ease);
  color: var(--primary);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.contact__row--link:hover {
  background: rgba(125,78,105,0.07);
  color: var(--primary-dk);
}

.contact__row--link span:last-child {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.contact__row--link .material-icons-round {
  color: var(--primary);
}

.contact__cta-card {
  background: var(--primary);
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
}

.contact__cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255,255,255,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.contact__cta-inner {
  padding: var(--sp-xl) var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  position: relative;
  z-index: 1;
}

.contact__cta-icon {
  font-size: 2.2rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--sp-xs);
}

.contact__cta-inner h3 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.4rem;
}

.contact__cta-inner p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.68;
}

.contact__cta-inner .btn-primary {
  background: var(--white);
  color: var(--primary);
  align-self: flex-start;
  margin-top: var(--sp-xs);
}

.contact__cta-inner .btn-primary:hover {
  background: rgba(255,255,255,0.88);
  transform: translateY(-1px);
}

.contact__links h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: var(--sp-sm);
}

.quick-links {
  display: flex;
  flex-direction: column;
  gap: 0.48rem;
}

.quick-links li a {
  font-size: 0.875rem;
  color: var(--text);
  transition: color var(--ease);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.3rem;
}

.quick-links li a:hover { color: var(--primary); }

.sv-footer {
  background: var(--bg-dark);
  padding: var(--sp-lg) 0;
}

.sv-footer__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-md);
}

.sv-logo--light .sv-logo__mark--light {
  background: rgba(255,255,255,0.1);
}

.sv-logo__text--light {
  color: rgba(255,255,255,0.88);
}

.sv-logo__text--light em {
  color: rgba(255,255,255,0.38);
}

.sv-footer__brand p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.36);
  margin-top: 0.5rem;
  line-height: 1.6;
}

.sv-footer__links {
  display: flex;
  gap: var(--sp-lg);
  flex-wrap: wrap;
}

.sv-footer__links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.48);
  transition: color var(--ease);
}

.sv-footer__links a:hover {
  color: rgba(255,255,255,0.86);
}

.sv-footer__copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
}

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-bar--visible {
  transform: translateY(0);
}

.cookie-bar__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: var(--sp-md);
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
  flex-wrap: wrap;
  justify-content: space-between;
}

.cookie-bar__text {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.68);
  max-width: 56ch;
  line-height: 1.6;
}

.cookie-bar__actions {
  display: flex;
  gap: 0.55rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cbtn {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.52rem 1.15rem;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all var(--ease);
  border: none;
}

.cbtn--accept {
  background: var(--primary);
  color: var(--white);
}

.cbtn--accept:hover {
  background: var(--primary-dk);
}

.cbtn--reject {
  background: transparent;
  color: rgba(255,255,255,0.58);
  border: 1px solid rgba(255,255,255,0.22);
}

.cbtn--reject:hover {
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}

.cbtn--settings {
  background: transparent;
  color: rgba(255,255,255,0.4);
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 0.52rem 0.6rem;
}

.cbtn--settings:hover {
  color: rgba(255,255,255,0.75);
}

.cookie-panel {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 210;
  width: 390px;
  max-width: 100vw;
  background: var(--white);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  box-shadow: var(--sh-lg);
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-panel--visible {
  transform: translateY(0);
}

.cookie-panel__box {
  padding: var(--sp-lg);
}

.cookie-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-md);
}

.cookie-panel__head h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--bg-dark);
}

.cookie-panel__close {
  color: var(--text-muted);
  padding: 0.2rem;
  transition: color var(--ease);
  display: flex;
  align-items: center;
}

.cookie-panel__close:hover { color: var(--bg-dark); }

.cookie-cat {
  padding: var(--sp-sm) 0;
  border-bottom: 1px solid var(--border);
}

.cookie-cat:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.cookie-cat__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.28rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bg-dark);
}

.cookie-cat__always {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.04em;
}

.cookie-cat p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.c-toggle {
  position: relative;
  width: 42px;
  height: 23px;
  cursor: pointer;
  flex-shrink: 0;
}

.c-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.c-toggle__slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 23px;
  transition: background var(--ease);
}

.c-toggle__slider::before {
  content: '';
  position: absolute;
  width: 17px;
  height: 17px;
  background: var(--white);
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform var(--ease);
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
}

.c-toggle input:checked + .c-toggle__slider {
  background: var(--primary);
}

.c-toggle input:checked + .c-toggle__slider::before {
  transform: translateX(19px);
}

.cookie-panel__actions {
  display: flex;
  gap: 0.55rem;
  padding-top: var(--sp-md);
  margin-top: var(--sp-sm);
  border-top: 1px solid var(--border);
}

.cookie-panel__actions .cbtn--reject {
  color: var(--text-muted);
  border-color: var(--border);
}

.cookie-panel__actions .cbtn--reject:hover {
  color: var(--text);
  border-color: var(--text-muted);
}

.popup {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(26,22,20,0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.popup--active {
  opacity: 1;
  pointer-events: all;
}

.popup__box {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-xl) var(--sp-lg);
  max-width: 420px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: var(--sh-lg);
}

.popup__close {
  position: absolute;
  top: var(--sp-sm);
  right: var(--sp-sm);
  color: var(--text-muted);
  padding: 0.3rem;
  transition: color var(--ease);
  display: flex;
  align-items: center;
}

.popup__close:hover { color: var(--bg-dark); }

.popup__icon {
  font-size: 3.2rem;
  color: var(--secondary);
  margin-bottom: var(--sp-sm);
  display: block;
}

.popup__box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--bg-dark);
  margin-bottom: var(--sp-xs);
}

.popup__box p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0 auto var(--sp-lg);
  line-height: 1.65;
}

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

  .hero__content {
    grid-column: 1 / 2;
    grid-row: 1;
    padding-right: 0;
  }

  .hero__visual {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
  }

  .hero__stats {
    grid-column: 1 / 2;
    grid-row: 2;
    flex-direction: row;
    gap: var(--sp-lg);
  }

  .hero__accent-col { display: none; }

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

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

  .showcase__aside {
    position: static;
    max-width: 480px;
  }

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

  .contact__links {
    grid-column: 1 / -1;
  }

  .quick-links li a {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  :root {
    --sp-xl: 3rem;
    --sp-2xl: 5rem;
  }

  .sv-hamburger {
    display: flex;
  }

  .sv-nav {
    position: fixed;
    top: var(--hh);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 0 var(--sp-md) var(--sp-md);
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--sh-md);
    transform: translateY(-105%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.22s ease;
    z-index: 99;
  }

  .sv-nav--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .sv-nav__link {
    padding: 0.82rem 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
    font-size: 1.02rem;
  }

  .sv-nav__link:last-child {
    border-bottom: none;
    border: none;
    margin-top: var(--sp-xs);
    display: inline-block;
    width: auto;
    padding: 0.6rem 1.2rem;
  }

  .sv-nav__link::after { display: none; }

  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: var(--sp-xl);
  }

  .hero__content {
    grid-column: 1;
    grid-row: 1;
  }

  .hero__sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__visual {
    grid-column: 1;
    grid-row: 2;
  }

  .hero__stats {
    grid-column: 1;
    grid-row: 3;
    justify-content: center;
  }

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

  .features__split {
    background: var(--bg);
  }

  .about__row {
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
  }

  .about__row--rev .about__visual {
    order: 0;
  }

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

  .highlight__img img {
    min-height: 220px;
  }

  .highlight__text {
    text-align: left;
    padding: var(--sp-lg) var(--sp-md);
  }

  .highlight__text p {
    text-align: left;
  }

  .promo {
    background: var(--bg);
  }

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

  .promo__text {
    text-align: left;
    padding-right: 0;
  }

  .promo__text p {
    text-align: left;
  }

  .promo__frame img {
    height: 300px;
  }

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

  .feat {
    align-items: flex-start;
    text-align: left;
  }

  .feat p {
    text-align: left;
  }

  .sv-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-md);
  }

  .cookie-bar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-sm);
  }

  .cookie-panel {
    width: 100%;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
  }
}

@media (max-width: 540px) {
  :root {
    --sp-2xl: 4rem;
  }

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

  .hero__ctas {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero__ctas .btn-primary,
  .hero__ctas .btn-outline {
    width: 100%;
    text-align: center;
    display: block;
  }

  .showcase__item {
    grid-template-columns: 88px 1fr;
  }

  .showcase__thumb img {
    width: 88px;
    height: 66px;
  }

  .cookie-bar__actions {
    flex-direction: column;
    width: 100%;
  }

  .cbtn--accept,
  .cbtn--reject {
    width: 100%;
    text-align: center;
  }

  .popup__box {
    padding: var(--sp-lg) var(--sp-md);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
.sv-nav__link--current {
  color: var(--primary);
}

.sv-nav__link--current::after {
  transform: scaleX(1);
}

.tag--light {
  color: rgba(255,255,255,0.6);
}

.prose-link {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-weight: 500;
  transition: color var(--ease);
}

.prose-link:hover {
  color: var(--primary-dk);
}

.page-hero {
  padding-top: var(--hh);
  background: var(--bg-dark);
  overflow: hidden;
}

.page-hero--split {
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: stretch;
  min-height: 52vh;
}

.page-hero__content {
  padding: var(--sp-2xl) var(--sp-xl) var(--sp-2xl) calc((100vw - var(--wrap)) / 2 + var(--sp-md));
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-sm);
}

.page-hero__content h1 {
  color: var(--white);
}

.page-hero__content h1 em {
  font-style: italic;
  color: var(--accent);
}

.page-hero__content p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  font-weight: 300;
  max-width: 48ch;
}

.page-hero__img-side {
  overflow: hidden;
  position: relative;
}

.page-hero__img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  display: block;
}

.page-hero__img-side::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,22,20,0.55) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.page-hero--centered {
  min-height: 38vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.page-hero--centered::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(125,78,105,0.22) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__center {
  position: relative;
  z-index: 1;
  padding: var(--sp-2xl) var(--sp-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-sm);
}

.page-hero__center h1 {
  color: var(--white);
}

.page-hero__center h1 em {
  font-style: italic;
  color: var(--accent);
}

.page-hero__center p {
  color: rgba(255,255,255,0.62);
  font-weight: 300;
  font-size: 1rem;
  text-align: center;
  max-width: 50ch;
}

.bst-filter {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--hh);
  z-index: 50;
}

.bst-filter__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  height: 56px;
}

.bst-filter__inner::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.42rem 1rem;
  border-radius: 99px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn--active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.filter-count {
  font-size: 0.72rem;
  opacity: 0.72;
}

.bst-products {
  padding: var(--sp-xl) 0 var(--sp-2xl);
  background: var(--bg);
}

.bst-products__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
}

.prod-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: box-shadow var(--ease), transform var(--ease);
  display: flex;
  flex-direction: column;
}

.prod-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}

.prod-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
}

.prod-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.prod-card:hover .prod-card__img img {
  transform: scale(1.04);
}

.prod-badge {
  position: absolute;
  top: var(--sp-xs);
  left: var(--sp-xs);
  background: var(--accent);
  color: var(--white);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.18rem 0.55rem;
  border-radius: var(--r-sm);
  z-index: 2;
}

.prod-badge--new {
  background: var(--secondary);
}

.prod-card__body {
  padding: var(--sp-sm);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.prod-cat {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.prod-card__body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--bg-dark);
  line-height: 1.25;
  margin-top: 0.1rem;
}

.prod-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.prod-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--sp-sm);
}

.prod-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-display);
}

.btn--sm {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
}

.bst-bottom {
  background: var(--bg-dark);
  padding: var(--sp-xl) 0;
}

.bst-bottom__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-lg);
  flex-wrap: wrap;
}

.bst-bottom__text h2 {
  color: var(--white);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  margin-bottom: 0.4rem;
}

.bst-bottom__text p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}

.bst-bottom__actions {
  display: flex;
  gap: var(--sp-sm);
  flex-shrink: 0;
  flex-wrap: wrap;
}

.bst-bottom__actions .btn-outline {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.25);
}

.bst-bottom__actions .btn-outline:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  color: var(--white);
}

.steps-section {
  background: var(--bg);
  padding: var(--sp-2xl) 0;
}

.steps-section__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: var(--sp-xl);
  align-items: center;
}

.steps-grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}

.step-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--sp-md);
  align-items: flex-start;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  padding-top: 0.15rem;
}

.step-body h3 {
  font-size: 1.05rem;
  color: var(--bg-dark);
  margin-bottom: 0.4rem;
}

.step-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.68;
}

.steps-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}

.steps-img img {
  width: 100%;
  height: auto;
  display: block;
}

.formats-section {
  background: var(--bg-light);
  padding: var(--sp-2xl) 0;
}

.formats-section__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

.formats-header {
  margin-bottom: var(--sp-xl);
}

.formats-header h2 {
  color: var(--bg-dark);
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
}

.format-box {
  background: var(--white);
  border-radius: var(--r-md);
  padding: var(--sp-lg) var(--sp-md);
  box-shadow: var(--sh-sm);
}

.format-icon {
  font-size: 1.7rem;
  color: var(--primary);
  margin-bottom: var(--sp-sm);
  display: block;
}

.format-box h4 {
  color: var(--bg-dark);
  margin-bottom: 0.35rem;
}

.format-box p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.pob-faq {
  background: var(--bg);
  padding: var(--sp-2xl) 0;
}

.pob-faq__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-xl);
  align-items: start;
}

.pob-faq__left {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  position: sticky;
  top: calc(var(--hh) + var(--sp-md));
}

.pob-faq__left h2 {
  color: var(--bg-dark);
}

.pob-faq__right {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}

.faq-item {
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-item h4 {
  font-size: 0.96rem;
  color: var(--bg-dark);
  margin-bottom: 0.5rem;
}

.faq-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: none;
}

.lic-intro {
  background: var(--bg-dark);
  padding-top: var(--hh);
  overflow: hidden;
}

.lic-intro__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: var(--sp-2xl) var(--sp-md);
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: var(--sp-xl);
  align-items: center;
}

.lic-intro__text {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.lic-intro__text h1 {
  color: var(--white);
}

.lic-intro__text h1 em {
  font-style: italic;
  color: var(--accent);
}

.lic-intro__text p {
  color: rgba(255,255,255,0.62);
  font-weight: 300;
  font-size: 0.96rem;
  line-height: 1.72;
}

.lic-intro__img {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}

.lic-intro__img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  opacity: 0.88;
}

.lic-rules {
  background: var(--bg-light);
  padding: var(--sp-2xl) 0;
}

.lic-rules__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
}

.lic-col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.lic-col__head {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.lic-col__head h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: var(--bg-dark);
}

.lic-icon {
  font-size: 1.8rem;
}

.lic-icon--yes {
  color: var(--secondary);
}

.lic-icon--no {
  color: #b83030;
}

.lic-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
}

.lic-list li {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
  padding-left: 1.1rem;
  position: relative;
}

.lic-col--yes .lic-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 600;
}

.lic-col--no .lic-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #b83030;
  font-weight: 600;
}

.lic-commercial {
  background: var(--bg-dark);
  padding: var(--sp-xl) 0;
}

.lic-commercial__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: var(--sp-lg) var(--sp-md);
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  flex-wrap: wrap;
}

.lic-comm-icon {
  font-size: 3rem;
  color: var(--accent);
  flex-shrink: 0;
}

.lic-commercial__text {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.lic-commercial__text h2 {
  color: var(--white);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}

.lic-commercial__text p {
  color: rgba(255,255,255,0.58);
  font-size: 0.92rem;
  line-height: 1.7;
}

.ktk-section {
  background: var(--bg);
  padding-top: var(--hh);
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

.ktk-section__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: var(--sp-2xl) var(--sp-md);
  display: grid;
  grid-template-columns: 42fr 58fr;
  gap: var(--sp-xl);
  align-items: start;
  width: 100%;
}

.ktk-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  position: sticky;
  top: calc(var(--hh) + var(--sp-xl));
}

.ktk-info h1 {
  color: var(--bg-dark);
}

.ktk-info h1 em {
  font-style: italic;
  color: var(--primary);
}

.ktk-info > p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.72;
}

.ktk-details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  padding: var(--sp-md) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ktk-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

.ktk-links__label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.ktk-form-wrap {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  box-shadow: var(--sh-md);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  margin-bottom: var(--sp-sm);
}

.form-row label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bg-dark);
  letter-spacing: 0.02em;
}

.form-row input,
.form-row textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.62rem 0.88rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--bg);
  color: var(--text);
  transition: border-color var(--ease), background var(--ease);
  width: 100%;
  outline: none;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--primary);
  background: var(--white);
}

.form-row input.field-invalid,
.form-row textarea.field-invalid {
  border-color: #b83030;
}

.field-err {
  font-size: 0.75rem;
  color: #b83030;
  min-height: 1em;
  line-height: 1.3;
}

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.6rem;
  font-size: 0.9rem;
  margin-top: var(--sp-xs);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.submit-loading {
  display: none;
  font-style: italic;
  opacity: 0.85;
}

.prose-page {
  padding-top: var(--hh);
  background: var(--bg);
  min-height: 80vh;
}

.prose-page__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--sp-2xl) var(--sp-md);
}

.prose-page__header {
  margin-bottom: var(--sp-xl);
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid var(--border);
}

.prose-page__header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--bg-dark);
  margin-top: var(--sp-xs);
}

.prose-page__body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}

.prose-page__body h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bg-dark);
  margin-bottom: -0.5rem;
  padding-top: var(--sp-sm);
}

.prose-page__body p {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.78;
  max-width: none;
}

.prose-page__body ul {
  list-style: disc;
  padding-left: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.prose-page__body ul li {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.68;
}

@media (max-width: 1080px) {
  .prod-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-hero--split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .page-hero__img-side {
    height: 280px;
  }

  .page-hero__content {
    padding: var(--sp-xl) var(--sp-md);
  }

  .steps-section__inner {
    grid-template-columns: 1fr;
  }

  .steps-img {
    max-width: 540px;
  }

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

  .pob-faq__inner {
    grid-template-columns: 1fr;
  }

  .pob-faq__left {
    position: static;
  }

  .lic-intro__inner {
    grid-template-columns: 1fr;
  }

  .ktk-section__inner {
    grid-template-columns: 1fr;
  }

  .ktk-info {
    position: static;
  }
}

@media (max-width: 860px) {
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lic-rules__inner {
    grid-template-columns: 1fr;
  }

  .lic-intro__img img {
    height: 240px;
  }

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

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

@media (max-width: 540px) {
  .prod-grid {
    grid-template-columns: 1fr;
  }

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

  .step-item {
    grid-template-columns: 44px 1fr;
    gap: var(--sp-sm);
  }

  .ktk-form-wrap {
    padding: var(--sp-md);
  }

  .bst-bottom__actions {
    flex-direction: column;
    width: 100%;
  }
}