:root{
  --ink:#111315;
  --muted:#6f7682;
  --panel:#f1f3f5;
  --shade:#e6e8eb;
  --brand:#111315;
  --accent:#7b8e7a; /* спокойный «домашний» акцент — шалфейный */
}

*{box-sizing:border-box}
html,body{height:100%; scroll-behavior:smoot;
  scroll-padding-top: 72px; /* отступ сверху при прокрутке к якорям */
 
}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
}

.container{width:min(1200px,92%); margin-inline:auto}



/* Promo */
.promo{padding:56px 0}
.promo-grid{display:grid; grid-template-columns:1fr 2fr; gap:28px; align-items:start}
.promo-head h3{margin:.2rem 0 8px 0; font-size:28px}
.promo-head p{color:var(--muted); margin:0 0 14px}
.promo .accent{color:var(--ink)}
.cards{display:grid; grid-template-columns:repeat(3,1fr); gap:16px}
.card{
  background:#fff; border:1px solid #eee; border-radius:14px; overflow:hidden;
  transition:transform .2s ease, box-shadow .2s ease; padding:16px;
}
.card:hover{transform:translateY(-4px); box-shadow:0 10px 30px rgba(0,0,0,.06)}
.card img{width:100%; height:230px; object-fit:cover; display:block}
.card h4{margin:12px 12px 4px; font-size:16px}
.card .price{ color:#374151; font-weight:700;}

/* Collection banner */
.collection{background:linear-gradient(180deg,#eef2ee,#e4ebe4); padding:52px 0}
.collection-inner{display:flex; align-items:center; justify-content:center; min-height:280px}
.collection-copy{text-align:center; max-width:760px}
.collection-copy h3{letter-spacing:.08em; font-size:18px; margin:0 0 10px; color:#223024}
.collection-copy p{margin:0 0 16px; color:#5a665c}

.collection h2{
  text-transform: uppercase;
}

/* Latest */
.latest{padding:56px 0}
.latest-title{margin:0 0 16px; font-size:24px}

/* CTA Wide */
.cta-wide{ padding:64px 0}
.cta-inner{text-align:center}
.cta-inner h3{margin:0 0 8px; font-size: clamp(24px,3.4vw,36px)}
.cta-inner p{margin:0 0 18px; color:#5b665d}



/* Responsive */
@media (max-width: 1024px){
  .hero-inner{grid-template-columns:1fr; gap:24px; min-height:68svh}
  .hero-copy{order:2; padding-right:0}
  .hero-figure{order:1}
  .promo-grid{grid-template-columns:1fr}
}
@media (max-width:720px){
  .cards{grid-template-columns:1fr 1fr}
  .foot-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:480px){
  .cards{grid-template-columns:1fr}
  .hero-word{font-size:24vw}
}
/* ===== HERO ===== */
:root{
  --hero-bg: linear-gradient(180deg,#f6f7fb 0%, #f2f4f8 100%);
  --text: #1a1a1a;
  --muted:#6b7280;
  --btn-bg:#0b0b0f;
  --btn-text:#fff;
  --radius:14px;
}

.hero{
  /* background: var(--hero-bg); */
  padding: clamp(32px,7vw,80px) 20px;
  position: relative;
  overflow: hidden;
   padding-top: 72px !important;
}

.hero__inner{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px,5vw,64px);
}

.hero__text{
  display: flex;
  flex-direction: column;       /* весь текст — в колонку */
  align-items: flex-start;      /* выравнивание по левому краю */
  max-width: 620px;
  color: var(--text);
  gap: 14px;
}

.hero__eyebrow{
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--muted);
  margin: 0 ;
}

.hero__title{
  font-size: clamp(28px,4.2vw,56px);
  line-height: 1.05;
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
}

.hero__desc{
  margin: 0;
  font-size: clamp(14px,1.2vw,16px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 56ch;
}

.hero__btn{
  display: inline-block;
  background: var(--btn-bg);
  color: var(--btn-text);
  text-decoration: none;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: transform .15s ease, opacity .15s ease;
}
.hero__btn:hover{ transform: translateY(-1px); opacity:.95; }

.hero__media{
            /* картинка займёт правую колонку */
  display: flex;
  justify-content: flex-end;
}
.hero__media img{
  width: min(520px, 42vw);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.08));
}

 .hero {
  padding-bottom: 0 !important;
}

/* Адаптив */
@media (max-width: 900px){
  .hero__inner{ flex-direction: column-reverse; align-items: stretch; }
  .hero__media{ justify-content: center; }
  .hero__media img{ display: none;}

  .link-underline{
    display:none;
  }
}



/* Layout/Colors only — без font-size / font-style */
:root{
  --bg-soft:#f6f7fb;
  --bg-card:#ffffff;
  --ink:#0b0b0f;
  --muted:#6b7280;
  --line:#e6e8ef;
  --accent:#0b0b0f;
  --radius:14px;
  --shadow:0 10px 30px rgba(0,0,0,.06);
}

.section{ padding: 56px 20px;  }
.section + .section{ border-top: 1px solid var(--line); }
.container{ max-width: 1200px; margin: 0 auto; }

.section__head{
  display:flex; align-items:baseline; justify-content:space-between;
  gap: 16px; 
}

.link-underline{
  text-decoration: none; position: relative; color: #494949ff;  margin-bottom: 30px;

}
.link-underline::after{
  content:""; position:absolute; left:0; right:0; bottom:-2px; height:1px; background: currentColor; opacity:.25;
}
.muted{ color: var(--muted); }

/* Collections */
/* .collections{ background: var(--bg-soft); } */
.collections__grid{
  display:grid; grid-template-columns: repeat(4,1fr); gap: 16px;
}
.collections__tile{
  background: var(--bg-card); border:1px solid var(--line); border-radius: var(--radius);
  overflow:hidden; text-decoration:none; color: inherit; display:flex; flex-direction:column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.collections__tile:hover{ transform: translateY(-2px); box-shadow: var(--shadow); }
.collections__tile img{ width:100%; height: 350px; object-fit: cover; display:block; }
.collections__tile-body{ padding: 16px; display:flex; flex-direction:column;  }

/* Products */
.products__grid{
  display:grid; grid-template-columns: repeat(4,1fr); gap: 16px;
}
.product-card{
  background: var(--bg-card); border:1px solid var(--line); border-radius: var(--radius);
  text-decoration:none; color:inherit; display:flex; flex-direction:column; overflow:hidden;
  transition: box-shadow .15s ease, transform .15s ease; padding:18px;
}
.product-card:hover{ box-shadow: var(--shadow); transform: translateY(-2px); }
.product-card__media{ margin:0; background:#fafbff; display:block; }
.product-card__media img{ width:100%; height: 260px; object-fit: cover; display:block; }
.product-card__body{ padding: 14px; display:flex; flex-direction:column; }
.product-card__foot{ display:flex; align-items:center; justify-content:space-between; gap:12px; }
.price{ color: var(--ink); }
.badge{
  background:#e8f7ed; border:1px solid #d6f0df; padding: 4px 8px; border-radius: 999px;
}
.badge--neutral{ background:#f1f3f7; border-color:#e4e7ee; }

/* Craft split */
.craft{ background: var(--bg-soft); }
.craft__wrap{ display:grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items:center; }
.craft__media img{ width:100%; height:auto; display:block; border-radius: var(--radius); box-shadow: var(--shadow); }
.craft__text{ display:flex; flex-direction:column; gap: 14px; }
.list-check{ display:grid; grid-template-columns: repeat(3,1fr); gap:10px; }
.list-check > div{
  background:#fff; border:1px solid var(--line); padding:10px 12px; border-radius:10px;
}
.btn{
  display:inline-block; background: #111111; color:#fff; text-decoration:none;
  padding: 12px 18px; border-radius: 12px;
}


/* Journal + Newsletter */
.journal__grid{ display:grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.journal-card{
  text-decoration:none; color:inherit; background:#fff;border-radius: var(--radius);
  overflow:hidden; transition: transform .15s ease, box-shadow .15s ease;
}
.journal-card:hover{ transform: translateY(-2px); box-shadow: var(--shadow); }
.journal-card img{ width:100%; height: 630px; object-fit: cover; display:block; }
.journal-card__body{ padding: 18px; display:flex; flex-direction:column; gap:0px; }

.newsletter{ margin-top: 28px; }
.newsletter__box{
  background: var(--bg-soft); border:1px solid var(--line); border-radius: var(--radius); padding: 18px;
  display:grid; gap: 10px;
}
.newsletter__form{ display:flex; gap:10px; flex-wrap: wrap; }
.input{
  flex:1 1 260px; padding: 12px 14px; border:1px solid var(--line); border-radius: 10px; background:#fff;
}

/* Responsive */
@media (max-width: 1100px){
  .collections__grid{ grid-template-columns: repeat(3,1fr); }
  .products__grid{ grid-template-columns: repeat(3,1fr); }
  .craft__wrap{ grid-template-columns: 1fr; }
  .journal-card img{ height: 380px; }
  .collections__tile img{
    height: 380px;
  }
}
@media (max-width: 760px){
  .collections__grid{ grid-template-columns: repeat(2,1fr); }
  .products__grid{ grid-template-columns: repeat(2,1fr); }
  .values__grid{ grid-template-columns: repeat(2,1fr); }
  .journal__grid{ grid-template-columns: 1fr; }
  .list-check{ grid-template-columns: 1fr; }
}
@media (max-width: 460px){
  .collections__grid, .products__grid{ grid-template-columns: 1fr; }
  .values__grid{ grid-template-columns: 1fr; }
}



/* ==== Brighter Value Cards with Hover ==== */
:root{
  --val-bg: #ffffff;
  --val-line: #e6e8ef;
  --val-shadow: 0 8px 18px rgba(16,24,40,.06);
  --val-shadow-hover: 0 18px 40px rgba(16,24,40,.12);
  --g1: #9ec5ff;   /* blue */
  --g2: #adc27cff;   /* pink */
  --g3: #bff0d1;   /* mint */
  --ink: #0b0b0f;
  --muted:#6b7280;
}



.values__grid{
  display:grid; grid-template-columns: repeat(4,1fr); gap:16px;
  list-style:none; padding:0; margin:0;
}

.value{
  position: relative;
  /* градиентная рамка */
  background:
    linear-gradient(var(--val-bg), var(--val-bg)) padding-box,
    linear-gradient(135deg, rgba(158,197,255,.7), rgba(255,209,230,.7), rgba(191,240,209,.7)) border-box;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 18px;
  display:flex; flex-direction:column; align-items:flex-start;
  box-shadow: var(--val-shadow);
  transition: transform .25s cubic-bezier(.22,.61,.36,1), box-shadow .25s ease, background .25s ease, filter .25s ease;
  isolation: isolate; /* для свечения и блика */
}

/* мягкий блик внутри карточки */
.value::before{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(80% 60% at 20% 0%, rgba(255,255,255,.9) 0%, rgba(255,255,255,0) 60%),
              radial-gradient(70% 50% at 100% 100%, rgba(191,240,209,.18) 0%, rgba(191,240,209,0) 60%);
  border-radius: inherit;
  pointer-events:none;
  z-index:-1;
}

/* иконка — яркий «чип» */
.value__icon{
  width:44px; height:44px; display:grid; place-items:center;
  border-radius:12px;
  background: radial-gradient(120% 120% at 20% 20%, #ffffff 0%, rgba(255,255,255,.6) 40%, transparent 60%),
              linear-gradient(135deg, var(--g1), var(--g2), var(--g3));
  box-shadow: 0 6px 16px rgba(0,0,0,.08), inset 0 0 0 1px rgba(255,255,255,.45);
  transform: translateZ(0);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  color:#111; margin-bottom:16px
}

/* текстовые цвета (без размеров) */
.value h3{ color: var(--ink);}
.value .muted{ color: var(--muted); }

/* Hover эффекты */
.value:hover{
  transform: translateY(-6px);
  box-shadow: var(--val-shadow-hover);
  filter: saturate(1.06);
}
.value:hover .value__icon{
  transform: scale(1.06);
  box-shadow: 0 10px 24px rgba(0,0,0,.12), inset 0 0 0 1px rgba(255,255,255,.55);
}

/* Фокус клавиатурой */
.value:focus-within{
  outline: none;
  box-shadow: 0 0 0 3px rgba(158,197,255,.5), var(--val-shadow-hover);
}

/* Адаптив */
@media (max-width: 760px){
  .values__grid{ grid-template-columns: repeat(2,1fr); }

  .hero__inner{
   display: flex;
   flex-direction:column;
flex-direction: column-reverse;
  }
}
@media (max-width: 460px){
  .values__grid{ grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce){
  .value, .value__icon{ transition: none; }
}



/* ===== Experts — Martini SEO Power style ===== */
.expertreview{
  padding: 80px 0;
}

/* заголовок как в hero: тонкий, с трекингом */
.expertreview h2{
  text-align: center;
  margin-bottom: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* сетка */
.expertReview{
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

/* ссылки — аккуратный премиум hover */
.expertReview a{
  color: rgba(11,11,12,.78);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .18s ease, opacity .18s ease;
}
.expertReview a:hover{
  color: #0b0b0c;
  opacity: .9;
}

/* цитата: левый штрих — бежевый “paper” акцент */
.expertReview p{
  margin: 0 0 14px;
  padding-left: 18px;
  border-left: 3px solid rgba(11,11,12,.10);
  position: relative;
  line-height: 1.7;
}

/* маленький “блик” на штрихе (очень нежно) */
.expertReview p::before{
  content:"";
  position: absolute;
  left: -3px;
  top: 10px;
  bottom: 10px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(172,170,137,.85), rgba(172,170,137,.18));
  opacity: .9;
}

/* автор */
.expertReview span{
  display: block;
  margin-top: 10px;
  text-align: right;
  font-style: normal;
  letter-spacing: .01em;
  color: rgba(11,11,12,.55);
}

/* карточки */
.review-card{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(11,11,12,.12);
  border-radius: 20px;
  padding: 26px 26px;

  box-shadow:
    0 14px 34px rgba(11,11,12,.06),
    inset 0 1px 0 rgba(255,255,255,.65);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

/* hover в духе “чёрной кнопки”, но карточка остаётся светлой */
.review-card:hover{
  transform: translateY(-5px);
  border-color: rgba(11,11,12,.18);
  background: rgba(255,255,255,.92);
  box-shadow:
    0 22px 50px rgba(11,11,12,.10),
    inset 0 1px 0 rgba(255,255,255,.72);
}

/* лёгкая “рамка-блик” при фокусе внутри */
.review-card:focus-within{
  border-color: rgba(11,11,12,.22);
  box-shadow:
    0 22px 50px rgba(11,11,12,.10),
    0 0 0 4px rgba(172,170,137,.20);
}

/* 2 колонки на десктопе */
@media (min-width: 900px){
  .expertReview{
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
}

/* mobile padding чуть компактнее */
@media (max-width: 520px){
  .review-card{ padding: 22px 20px; }
  .expertReview p{ padding-left: 16px; }
}

.up .defaultH2{
  text-transform: uppercase !important;
}
/* ------------------------------
   1) BACKGROUND GLOWS (add in HTML after <body>)
   Вставь сразу после <body>:

   <div class="bg-glow" aria-hidden="true">
     <span class="g g1"></span>
     <span class="g g2"></span>
     <span class="g g3"></span>
     <span class="g g4"></span>
     <span class="g grid"></span>
   </div>
-------------------------------- */
.bg-glow{
  position: fixed;
  inset: -20%;
  z-index: -1;
  pointer-events: none;
  filter: saturate(1.08);
}

.bg-glow .g{
  position: absolute;
  width: 58vmax;
  height: 58vmax;
  border-radius: 50%;
  opacity: .22;
  filter: blur(44px);
  transform: translate3d(0,0,0);
}

.bg-glow .g1{
  left: -10%;
  top: -8%;
  background: radial-gradient(circle at 30% 30%, rgba(41,242,198,.85), rgba(41,242,198,0) 62%);
}
.bg-glow .g2{
  right: -12%;
  top: 4%;
  background: radial-gradient(circle at 70% 35%, rgba(155,102,255,.85), rgba(155,102,255,0) 62%);
}
.bg-glow .g3{
  left: 6%;
  bottom: -12%;
  background: radial-gradient(circle at 35% 70%, rgba(255,45,125,.78), rgba(255,45,125,0) 62%);
}
.bg-glow .g4{
  right: 8%;
  bottom: -16%;
  background: radial-gradient(circle at 65% 70%, rgba(255,176,32,.74), rgba(255,176,32,0) 62%);
}

/* очень лёгкая “сеточка” */
.bg-glow .grid{
  inset: 0;
  width: 120%;
  height: 120%;
  opacity: .25;
  filter: blur(.2px);
  background:
    linear-gradient(rgba(20,21,26,.06) 1px, transparent 1px) 0 0 / 54px 54px,
    linear-gradient(90deg, rgba(20,21,26,.06) 1px, transparent 1px) 0 0 / 54px 54px;
  mask-image: radial-gradient(circle at 50% 40%, #000 0 55%, transparent 78%);
}

/* /* ========= Vars & base ========= */
:root {
  --bg: #ffffff;
  --bg-soft: #F6F3EE;
  --text: #111213;
  --muted: #6b7280;
  --chip: #111213; /* тёмная пилюля */
--accent: #b10000ce;/* жёлтая кнопка */
  --stroke: #e6e8eb;
  --radius: 14px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  color: var(--text);
  background: var(--bg-soft);
  line-height: 1.25;
}

/* блокировка скролла для оверлея (JS уже меняет top) */
body.no-scroll {
  position: fixed;
  inset: 0;
  overflow: hidden;
  width: 100%;
}