/* =========================================================
   VARIABLES
   ========================================================= */
:root {
  --font-primary: 'Tenor Sans', serif;
  --font-secondary: 'Montserrat', sans-serif;

  --color-primary-1: #47546b;
  --color-primary-2: #122251;
  --color-secondary-3: #f4f0ea;

  --color-white: #ffffff;
  --color-badge: #c9a76a;
}

/* =========================================================
   BASE / RESET
   ========================================================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-secondary);
  background: var(--color-white);
}

body.menu-open {
  overflow: hidden;
}

/* =========================================================
   BACKGROUND LOGO
   ========================================================= */
.bg-logo {
  position: fixed;
  inset: 0;
  z-index: 5;
  background: url("../assets/images/logo/aminika-logo.svg") center center no-repeat;
  background-size: contain;
  opacity: 0.06;
  pointer-events: none;
}

/* =========================================================
   LAYOUT HELPERS
   ========================================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 30;
	padding-top:12px;
	padding-bottom:12px;

  background: var(--color-white);
  overflow-x: clip;
}

.header .container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
}

.nav {
  display: flex;
  align-items: center;
  min-width: 0;
}

.nav__group--left,
.nav__group--right {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  min-width: 0;
}

.nav__group--left {
  justify-content: flex-end;
  gap: clamp(4px, calc(5vw - 24px), 120px);
}

.nav__right-menu {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 48px);
  flex: 0 1 auto;
  min-width: 0;
}

.nav__right-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.nav__link {
  position: relative;
  display: inline-flex;

  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-primary-1);
  text-decoration: none;
  white-space: nowrap;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: var(--color-badge);

  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out;
}

.nav__link:hover::after,
.nav__link:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

.nav__link--phone {
  font-size: 14px;
}

/* Logo */
.nav__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;

  margin-inline: clamp(16px, 6vw, 70px);
  text-decoration: none;
  color: var(--color-primary-1);
}

.nav__logo-text {
  font-family: var(--font-primary);
  font-size: 42px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
}

.nav__logo svg {
  width: 64px;
  height: auto;
}

/* Cart */
.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--color-primary-1);
  text-decoration: none;
  margin: 0;
}

.cart-icon {
  width: 20px;
  height: 20px;
  display: block;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -12px;

  width: 18px;
  height: 18px;
  border-radius: 50%;

  background: var(--color-primary-1);
  color: var(--color-white);

  font-size: 11px;
  font-weight: 600;
  line-height: 18px;

  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* =========================================================
   BURGER / MOBILE MENU
   ========================================================= */
.burger {
  display: none;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
}

.burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-primary-1);
  transition: 0.25s;
}

.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 10px; }
.burger span:nth-child(3) { top: 20px; }

.burger.open span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.mobile-menu.open {
  display: flex;
}

.mobile-link {
  display: block;
  width: 100%;

  font-family: var(--font-primary);
  color: var(--color-primary-1);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 18px;
}

.mobile-link.phone {
  font-size: 16px;
}

/* =========================================================
   MAIN
   ========================================================= */
.main {
  padding: 0;
}

.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 40px;
padding-right: 0;
padding-left: 0;
padding-bottom: 50px;
}


/* =========================================================
   FOOTER (NEW DESIGN) — FULL CSS
   ========================================================= */

/* FOOTER WRAP */
.footer{
  background: var(--color-white);
  padding: 90px 0 42px;
  border-top: 0;
}

/* MAIN GRID */
.footer-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;

  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  column-gap: clamp(24px, 6vw, 60px);
}

/* =========================================================
   LEFT: LOGO
   ========================================================= */
.footer-col--logo{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: end;
}

/* .footer-logo{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;

  text-decoration: none;
  color: var(--color-primary-1);
}

*/

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;

  text-decoration: none;
  color: var(--color-primary-1);
}

.footer-logo-text {
  font-family: var(--font-primary);
  font-size: 44px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1;
}

.footer-logo svg {
  width: 64px;
  height: auto;
}







/* =========================================================
   CENTER: NAV (2 ROWS)
   ========================================================= */
.footer-col--nav{
  display: flex;
  justify-content: center;
  align-self: end;
}

.footer-nav{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.footer-nav__row{
  display: flex;
  justify-content: center;
  gap: clamp(26px, 5vw, 90px);
}

.footer-link{
  font-family: var(--font-secondary);
  font-size: 18px;
/*  letter-spacing: 0.12em;    */
font-weight: 500;
  text-transform: uppercase;
  color: var(--color-primary-1);
  text-decoration: none;
  white-space: nowrap;
}

.footer-link:hover{
  opacity: 0.85;
}

/* =========================================================
   RIGHT: CONTACTS (BLOCK RIGHT, TEXT LEFT)
   Requires wrapper: .footer-contacts inside .footer-col--contacts
   ========================================================= */
.footer-col--contacts{
  display: flex;
  justify-content: flex-end; /* block to the right */
align-self: end;
}

.footer-contacts{
  display: flex;
  flex-direction: column;
  align-items: flex-end;   /* text left aligned */
  text-align: right;
}

.footer-title{
  margin: 0 0 12px;
  font-family: var(--font-secondary);
  font-size: 18px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--color-primary-1);
}

.footer-contact-link{
  display: inline-block;
  margin: 0 0 14px;

  font-family: var(--font-secondary);
  font-size: 18px;
  letter-spacing: 0.08em;
  font-weight: 400;

  color: var(--color-primary-1);
  text-decoration: none;
}

.footer-contact-link:hover{
  opacity: 0.85;
}

.footer-address{
  margin: 0;

  font-family: var(--font-secondary);
  font-size: 13px;
/*  letter-spacing: 0.1em;  */
  text-transform: uppercase;
  line-height: 1.6;
font-weight: 500;

color: var(--color-primary-1);
}

/* =========================================================
   BOTTOM LINE
   ========================================================= */
.footer-bottom{
  max-width: 1200px;
  margin: 0 auto;
  padding: 46px 24px 0;
  text-align: center;
}

.footer-bottom__text{
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 12px;
font-weight: 500;
/*  letter-spacing: 0.1em;  */
  text-transform: uppercase;
color: var(--color-primary-1);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px){
  .footer{
    padding: 54px 0 34px;
  }

  .footer-container{
    grid-template-columns: 1fr;
    row-gap: 34px;
    padding: 0 16px;
  }

  /* center blocks */
  .footer-col--logo,
  .footer-col--nav{
    justify-content: center;
  }

  /* contacts: center on mobile */
  .footer-col--contacts{
    justify-content: center;
  }

  .footer-contacts{
    align-items: center;
    text-align: center;
  }

  .footer-logo__text{
    font-size: 32px;
  }

  .footer-logo__mark{
    width: 48px;
  }

  .footer-nav__row{
    flex-wrap: wrap;
    gap: 18px 28px;
  }

  .footer-link{
    font-size: 14px;
  }

  .footer-title{
    font-size: 16px;
  }

  .footer-contact-link{
    font-size: 18px;
  }

  .footer-address{
    font-size: 12px;
  }

  .footer-bottom{
    padding-top: 30px;
  }
}


@media (max-width: 900px) {

/* меню в столбик по центру */
  .footer-nav {
    align-items: center;
    gap: 0;              /* убираем gap между строками */
  }

  /* превращаем 2 строки в “одну колонку” ссылок */
  .footer-nav__row {
    display: contents;
  }

  /* ссылки становятся вертикальными */
  .footer-link {
    display: block;
    text-align: center;
    padding: 12px 0;     /* расстояние между пунктами */
    font-size: 16px;
    letter-spacing: 0.14em;
  }

}






/* =========================================================
   RESPONSIVE
   ========================================================= */

/* <= 1200px */
@media (max-width: 1200px) {
  .nav__logo svg { width: 56px; }
  .nav__logo-text { font-size: 38px; }
  .nav__logo { gap: 8px; }
  .nav__link { font-size: 20px; }

  .footer-logo svg { width: 56px; }
  .footer-logo-text { font-size: 38px; }
  .footer-logo { gap: 8px; }






}

/* <= 1024px */
@media (max-width: 1024px) {
  .nav__logo svg { width: 48px; }
  .nav__logo-text { font-size: 34px; }
  .nav__logo { gap: 4px; }
  .nav__link { font-size: 18px; }

.footer-logo svg { width: 48px; }
  .footer-logo-text { font-size: 34px; }
  .footer-logo { gap: 4px; }



}

/* <= 900px (mobile header/menu) */
@media (max-width: 900px) {
  .header {
   padding-top:6px;
/*    padding: 16px 0 18px;  */
  }

  .header .container {
   padding: 0 16px;  
  }

.nav__logo svg{ width: 40px; }
.nav__logo-text{ font-size: 30px; }
.nav__logo{ gap:4px; }


.footer-logo svg { width: 40px; }
  .footer-logo-text { font-size: 30px; }
  .footer-logo { gap: 4px; }





  .nav {
    position: relative;
    min-height: 78px;
  }

  .nav__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
  }

  .nav__logo-img {
    display: none;
  }

  .nav__group--left,
  .nav__right-menu,
  .nav__link--phone {
    display: none;
  }

  .burger {
    display: block;
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    z-index: 21;
  }

  .cart-link {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    z-index: 21;
  }

  .nav__group--right {
    flex: none;
  }

  .mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;

    padding: 24px 20px 40px;
    background: var(--color-white);

    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;

    z-index: 25;
  }
}



/* =========================================================
   SECTION 1
   ========================================================= */
.section-1 {
  padding: 0px 0 40px;
}

.section-1__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-left:0;
  padding-right:0;


display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);




}

/* ===== TEXT ===== */
.section-1__text {
  max-width: 560px;
}

.section-1__title {
  margin-top: 0px;
margin-bottom: 30px;
  font-family: var(--font-primary);
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.2;
  font-weight:400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary-2);
}

.section-1__subtitle {
  margin-top: 40px;
  margin-bottom: 56px;
  max-width: 500px;

  font-size: clamp(16px, 1.6vw, 26px);
  line-height: 1.2;
  color: var(--color-primary-1);
}

.section-1__btn {
  display: inline-flex;
  padding: 14px 26px;
  border-radius: 999px;

  font-family: var(--font-secondary);
	font-size: clamp(14px, 2vw, 22px);
  text-transform: uppercase;
  letter-spacing: 0.1em;

  background: var(--color-primary-2);
  color: #fff;
  text-decoration: none;

 position: relative;
z-index: 20;


}

/* ===== VISUAL ===== */



.section-1__visual {
  flex: 0 0 auto;
  min-width: 0;
}

.section-1__capsule {
  width: 577px;        /* полный размер */
  max-width: 100%;     /* но можно сжиматься */
  height: auto;
  display: block;

  aspect-ratio: 577 / 481;
  object-fit: cover;
 object-position: right center;

}



/* =========================================================
   ADAPTIVE
   ========================================================= */
@media (max-width: 900px) {

.main-container{
padding-top:0px;
}
 
.section-1 {
 padding-top: 0;
 padding-bottom: 28px; }


  .section-1__inner {
    grid-template-columns: 1fr;
    gap: 22px;
justify-items:center;
  }

  .section-1__visual {
    justify-content: center;
 padding: 0 16px;
  }

  .section-1__capsule {
    max-width: 100%;
  }

.section-1__text {
  text-align: center;
}

.section-1__title {
  margin-bottom:20px;
}

.section-1__subtitle {
  margin-bottom:30px;
margin-top:0;
}




}

/* =========================================================
   SECTION 2
   ========================================================= */
.section-2 {
  padding: 40px 0 150px;
}

.section-2__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-top:80px;
padding-bottom:0;



  display: grid;
  grid-template-columns: minmax(0, 579px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 72px);
}

/* ===== VISUAL ===== */
.section-2__visual {
display: flex;
  justify-content: center;
  min-width: 0;
}

.section-2__img {

width: clamp(320px, 40vw, 579px);
 
  height: auto;
  display: block;

  aspect-ratio: 579 / 640;  
  object-fit: contain;

}

/* ===== TEXT ===== */
.section-2__text {
  text-align: right;
}

.section-2__title {
  margin: 0 0 28px;

  font-family: var(--font-primary);
  font-size: clamp(30px, 5vw, 60px); /* в стиле твоей section-1 */
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.045em; 
  text-transform: uppercase;
  color: var(--color-primary-2);
}

.section-2__subtitle {

margin-top: 40px;
  margin-bottom: 56px;

  font-family: var(--font-secondary);
  font-size: clamp(16px, 1.6vw, 26px);
  line-height: 1.2;
  color: var(--color-primary-1);
}

/* кнопка-обводка как в макете */
.section-2__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 26px;
  border-radius: 999px;

  font-family: var(--font-secondary);
  font-size: clamp(14px, 2vw, 22px);
  letter-spacing: 0.1em;
  text-transform: uppercase;

  color: var(--color-primary-2);
  text-decoration: none;

  background: var(--color-white);
  border: 2px solid var(--color-primary-2);

  transition: transform 0.2s ease, opacity 0.2s ease;

 position: relative;
z-index: 20;
}

.section-2__btn:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

/* =========================================================
   SECTION 2 — ADAPTIVE
   ========================================================= */
@media (max-width: 900px) {
  .section-2 {
    padding: 28px 0 36px;
  }

  .section-2__inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 16px;
  }

  .section-2__img {
    max-width: 100%;
  }

  .section-2__text {
    text-align: center;
  }

  .section-2__title {
    margin-bottom: 18px;
  }

  .section-2__subtitle {
    margin-bottom: 22px;
  }

.section-2__visual {
    order: 2;
  }

  .section-2__text {
    order: 1;
  }


}


/* =========================================================
   SECTION 3 — COLLECTIONS
   ========================================================= */
.section-3 {
  background: var(--color-primary-2);
padding: 56px 0 90px;
}

.section-3__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-top:0;
padding-bottom:0;
padding-right:0;
padding-left:0;
}

.section-3__title {
  margin-top: 40px;
margin-bottom: 56px;
margin-right:0;
margin-left:0;
  text-align: center;

  font-family: var(--font-primary);
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-white);

  font-size: 48px;
  line-height: 1.2;
}

/* ===== GRID (desktop) =====
   3 колонки:
   - слева высокая карточка
   - по центру две (верх/низ)
   - справа две (верх/низ)
*/
.section-3__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
column-gap: clamp(18px, 3vw, 86px);
  row-gap: clamp(26px, 3vw, 44px); 
  align-items: start;
font-size: clamp(14px, 2vw, 28px);
}




/* карточка */
.section-3__card {
  position: relative;
  display: block;
  text-decoration: none;

  border-radius: 18px;
  overflow: hidden;

  /* чтобы карточки сжимались вместе с контейнером */
  width: min(368px, 100%);          /* реальная ширина фото */
  justify-self: center;             /* ровно по колонкам */
}

/* высокая карточка слева */
.section-3__card--tall {
  grid-row: span 2;                 /* занимает две строки */

}

/* изображение */
.section-3__img {
  width: 100%;
  height: auto;
  display: block;

  /* сохраняем “плитку” как в макете */
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* для “высокой” карточки — другой ratio */
.section-3__card--tall .section-3__img {
  aspect-ratio: 368 / 614;  

          /* визуально вытянутая */
}

/* подпись на фото */
.section-3__label {
  position: absolute;
  left: 20px;
  bottom: 18px;

  font-family: var(--font-primary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);

  /* шрифт уменьшается при сужении страницы */
 font-size: 1em;
  
  line-height: 1.1;
 z-index: 20;
}


/* лёгкий hover, чтобы было “живое”, но аккуратно */
.section-3__card:hover .section-3__img {
  transform: scale(1.05);
  transition: transform 0.6s ease;
}




/* =========================================================
   RESPONSIVE
   ========================================================= */



/* MOBILE: 2 колонки */
@media (max-width: 900px) {
}



/* <= 1200px */
@media (max-width: 1200px) {
.section-3__title {
font-size: 48px;

}
}

/* <= 1024px */
@media (max-width: 1024px) {
.section-3__title {
font-size: 40px;

}
}

/* <= 900px (mobile header/menu) */
@media (max-width: 900px) {
.section-3__title {
    margin-bottom: 36px;
margin-top: 32px;
font-size: 32px;

}

  .section-3 {
    padding: 10px 0 44px;
  }


  .section-3__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
        margin-left: 14px;
        margin-right: 14px;

/*
.section-3__grid{
    column-count: 2;
    column-gap: 14px;
  }
*/



  }

  /* высокая карточка на мобиле становится обычной */
  .section-3__card--tall {
    grid-row: auto;
  }

  .section-3__card--tall .section-3__img {
    aspect-ratio: 1 / 1;
  }


  .section-3__card {
    width: 100%;
    justify-self: stretch;




  }

  .section-3__label {
    left: 14px;
    bottom: 12px;
/*    font-size: 11px;   */
  }






}




/* ============================================
   SECTION 4 — БРИЛЛИАНТЫ НОВОГО ПОКОЛЕНИЯ
   ============================================ */

.section-4 {
  width: 100%;
  background: var(--color-secondary-3);   
  padding: 90px 0 90px;
}

.section-4__container {
  max-width: 1200px;      
  margin: 0 auto;
  padding:0;
  text-align: center;
}

.section-4__title {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 36px;
  text-transform: uppercase;
  color: var(--color-primary-2);
  font-weight:500;
}


.section-4__grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 0px;
  row-gap: 32px;
  align-items: flex-start;
}


.section-4__item {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.section-4__icon {
  width: 110px;
  height: 110px;
margin-top: 50px;
  margin-bottom: 24px;
}


.section-4__icon4 {
  width: 100px;
  height: 100px;
  margin-bottom: 24px;
margin-top: 60px;
}

.section-4__text {
  font-family: var(--font-secondary);
  font-size: 20px;
  line-height: 1.2;
font-weight:600;
  text-transform: uppercase;
  color: var(--color-primary-2);
}




@media (max-width: 900px) {
  .section-4 {
    padding: 40px 0 48px;
  }

  .section-4__title {
    font-size: 28px;
    margin-left: 16px;
    margin-right: 16px;
  }


 .section-4__grid {
    grid-template-columns: 1fr;
    row-gap: 0px;
margin-top:0;
  }

/*

  .section-4__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 32px;
    row-gap: 24px;
margin-top:0;
  }

*/

  .section-4__item {
    grid-column: auto;
  }

  .section-4__text {
    font-size: 14px;
  }


}

img,
picture,
video {
  position: relative;
  z-index: 20;
}

button,
.btn {
  position: relative;
  z-index: 20;
}



.catalog_section-2 {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;

  font-family: var(--font-secondary);
  color: var(--color-primary-2);
  line-height: 1.35;

  flex: 1 1 100%;
  align-self: stretch;
  align-items: center;
}

.catalog_section-2 * {
  box-sizing: border-box;
}

.catalog_section-2 .title {
  font-family: var(--font-primary);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-primary-2);
  font-size: 48px;
  line-height: 1.24;
  margin: 8px 0 40px;
}

.catalog_section-2 .subtitle {
  font-family: var(--font-secondary);
  text-align: center;
  color: var(--color-primary-2);
  max-width: 740px;
  margin: 0 auto 68px;
  font-size: 26px;
}

.catalog_section-2 .subtitle strong {
  font-weight: 600;
  color: var(--color-primary-2);
}

.catalog_section-2 .main {
  display: flex;
  gap: 26px;
  align-items: stretch;
  margin-bottom: 36px;
  margin-right: 44px;
  margin-left: 44px;
}

.catalog_section-2 .photo {
  flex: 0 0 auto;
}

.catalog_section-2 .photo img {
  width: 620px;
  max-width: 100%;
  height: auto;
  display: block;
}

.catalog_section-2 .side {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.catalog_section-2 .lead {
  font-family: var(--font-secondary);
  text-align: center;
  color: var(--color-primary-2);
  font-size: 32px;
  margin: 0 0 74px;
  line-height: 1;
}

.catalog_section-2 .steps {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.catalog_section-2 .step {
  text-align: center;
  color: var(--color-primary-2);
  max-width: 340px;
}

.catalog_section-2 .step .h {
  font-family: var(--font-secondary);
  font-size: 38px;
  font-weight: 400;
  margin: 0;
}

.catalog_section-2 .step .d {
  font-family: var(--font-secondary);
  font-size: 20px;
  color: var(--color-primary-2);
  margin-top: 2px;
}


/* .catalog_section-2 .divider {
  width: 22px;
  height: 22px;
  background: url("../assets/images/icons/divider.png") center center no-repeat;
  background-size: contain;
  border: none;
  transform: none;
}  */


.catalog_section-2 .step:not(:last-child)::after {
  content: "";
  width: 22px;
  height: 22px;
  margin-top: 22px;
  margin-bottom:8px;
  margin-left:auto;
  margin-right:auto;

  background: url("../assets/images/icons/divider.png") center/contain no-repeat;
  display: block;
}

.catalog_section-2 .cta {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.catalog_section-2 .btn {
  display: inline-flex;
  padding: 14px 26px;
  border-radius: 999px;

  font-family: var(--font-secondary);
  font-size: clamp(14px, 2vw, 22px);
  text-transform: uppercase;
  letter-spacing: 0.1em;

  background: var(--color-primary-2);
  color: #fff;
  text-decoration: none;

  align-items: center;
  justify-content: center;
}

.catalog_section-2 .btn:hover {
  opacity: 0.9;
}

.catalog_section-2 .contacts-section {
  margin-top: 100px;
}

.catalog_section-2 .contacts-title {
  font-family: var(--font-primary);
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-primary-1);
  font-size: 30px;
  margin-bottom: 38px;
}

.catalog_section-2 .contacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  padding-left: 100px;
  padding-right: 100px;
}

.catalog_section-2 .contacts > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  text-decoration: none;
  color: inherit;
}

.contact-item__title {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-family: var(--font-primary);
  font-size: 24px;
  text-transform: uppercase;
  color: var(--color-primary-1);
}

.contact-item__icon {
  width: 26px;
  height: auto;
  display: block;
}

.contact-item__value {
  margin-top: 6px;
  font-size: 24px;
  color: var(--color-primary-1);
}

.contact-item:hover {
  opacity: 0.85;
}

@media (max-width: 1024px) {
  .catalog_section-2 .title {
    font-size: 40px;
  }
}

@media (max-width: 900px) {
  .catalog_section-2 {
    padding: 0 16px 0;
  }

  .catalog_section-2 .main {
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
    margin-right: 0;
    margin-left: 0;
  }

  .catalog_section-2 .subtitle {
    font-size: 16px;
  }

  .catalog_section-2 .lead {
    font-size: 20px;
    margin-top: 36px;
    margin-bottom: 20px;
  }

  .catalog_section-2 .step .h {
    font-size: 26px;
  }

  .catalog_section-2 .step .d {
    font-size: 16px;
  }

  .catalog_section-2 .btn {
    width: 100%;
    max-width: 360px;
  }

  .catalog_section-2 .title {
    font-size: 32px;
  }

  .catalog_section-2 .cta {
    margin-top: 0;
  }

  .catalog_section-2 .contacts-section {
    margin-top: 10px;
  }

  .catalog_section-2 .contacts-title {
    font-size: 24px;
  }

  .contact-item__title {
    font-size: 20px;
  }

  .catalog_section-2 .contacts {
    grid-template-columns: 1fr;
    row-gap: 30px;

    width: 100%;
    max-width: 360px;
    padding-left: 0;
    padding-right: 0;

    margin: 0 auto;
    justify-self: unset;
  }

  .catalog_section-2 .contact-item {
    justify-self: center;
    width: 100%;
    max-width: 360px;
  }
}



/* =========================================================
   BRAND SECTION 1 — ABOUT
   ========================================================= */

.brand_section-1 {
  background: none;
  padding: 0;
}

.brand_section-1__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* title */
.brand_section-1__title {
  margin: 12px 0 66px;
  text-align: center;

  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.2;

  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary-2);

  position: static;
  transform: none;
}

/* grid: content + image */
.brand_section-1__grid {
  display: grid;
grid-template-columns: minmax(0, 780px) 1fr;
/*  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);  */
  column-gap: clamp(24px, 5vw, 90px);
  align-items: center;
}

/* content */
.brand_section-1__content {
  max-width: 760px;
align-self: start;
}

.brand_section-1__lead {
  margin: 0;

  font-family: var(--font-secondary);
  font-size: 20px;
  line-height: 1.35;
  color: var(--color-primary-1);
}

/* benefits */
.brand_section-1 .aminika-benefits {
  margin-top: 42px;

  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand_section-1 .aminika-benefit {
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 40px;
  align-items: start;
}

.brand_section-1 .aminika-benefit img {
  width: 60px;
  height: auto;
  display: block;
}

.brand_section-1 .aminika-benefit p {
  margin: 0;

  font-family: var(--font-secondary);
  font-size: 22px;
font-weight:600;
  line-height: 1.3;
  color: var(--color-primary-2);
  letter-spacing: 0.09em;
}

/* visual */
.brand_section-1__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}


.brand_section-1__visual img {
  width: clamp(260px, 34vw, 331px);
  height: auto;
  display: block;
}


.brand_section-1__bottom {
  grid-column: 1 / -1;
}


/* нижний заголовок */
.brand_section-1__bottom-title {
  margin: 0;
  max-width: 1000px;          /* чтобы строки не были слишком длинные */
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary-2);
}



/* =========================================================
   MOBILE 900px
   ========================================================= */

@media (max-width: 900px) {
  .brand_section-1__inner {
    padding: 0 16px;
  }

  .brand_section-1__title {
    font-size: 32px;
    margin: 0 0 32px;
  }

  .brand_section-1__grid {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }

  .brand_section-1__content {
    max-width: none;
    text-align: center;
  }

  .brand_section-1__lead {
    font-size: 16px;
  }

  .brand_section-1 .aminika-benefits {
    margin-top: 28px;
    gap: 22px;
  }

  .brand_section-1 .aminika-benefit {
    grid-template-columns: 32px 1fr;
    column-gap: 14px;
  }

  .brand_section-1__bottom-title{
font-size:28px;
text-align:center;
  }


  .brand_section-1 .aminika-benefit img {
    width: 30px;
align-self: center;
  }

  .brand_section-1 .aminika-benefit p {
    font-size: 15px;
    text-align: left;
  }
}






/* =========================================================
   BRAND SECTION 2 — TEXT BLOCK
   ========================================================= */                                   

.brand_section-2 {
  background: none;
  padding: 0;
}

.brand_section-2__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
margin-top:30px;
margin-bottom:78px;

}

/* верхние 2 абзаца */
.brand_section-2__top {
  max-width: 980px; /* чтобы строки не растягивались */
  margin: 0;
}

.brand_section-2__top p {
  margin: 0 0 26px;

  font-family: var(--font-secondary);
  font-size: 20px;
  line-height: 1.35;
  color: var(--color-primary-1);
}

.brand_section-2__top p:last-child {
  margin-bottom: 0;
}

.brand_section-2__top strong {
  font-weight: 700;
  color: var(--color-primary-2);
}

/* большой заголовок */
.brand_section-2__title {
  margin: 64px 0 26px;

  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.15;

  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary-2);
}

/* нижний текст */
.brand_section-2__body {
  max-width: 980px;
}

.brand_section-2__body p {
  margin: 0;

  font-family: var(--font-secondary);
  font-size: 20px;
  line-height: 1.35;
  color: var(--color-primary-1);
}

/* =========================================================
   MOBILE 900px
   ========================================================= */

@media (max-width: 900px) {
  .brand_section-2__inner {
    padding: 0 16px;
  }

  .brand_section-2__top p,
  .brand_section-2__body p {
    font-size: 16px;
  }

  .brand_section-2__title {
    margin-top: 40px;
    font-size: 26px;
    letter-spacing: 0.08em;
text-align:center;
  }
}


/* =========================================================
   BRAND SECTION 3 — TOP
   ========================================================= */
.brand_section-3 {
  position: relative;
  background: var(--color-primary-2);
  padding: 56px 0 42px;
  color: #fff;
  overflow: visible;
}

.brand_section-3__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.brand_section-3 p {
  margin: 0 auto 22px;
  max-width: 900px;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0.05em;
}

/* камни */
.brand-gem {
  position: absolute;
  z-index: 10;
  pointer-events: none;
  user-select: none;
}

.brand-gem--right {
  width: 170px;
  right: 340px;
  bottom: -100px;
}

@media (max-width: 1400px) {
  .brand-gem--right {
    right: 90px;
    bottom: -90px;
    width: 150px;
  }
}

@media (max-width: 1024px) {
  .brand-gem--right {
    right: 24px;
    bottom: -80px;
    width: 130px;
  }
}

@media (max-width: 900px) {
  .brand_section-3 {
    padding: 40px 0 30px;
  }

  .brand_section-3__inner {
    padding: 0 20px; 
  }

  .brand_section-3 p {
    font-size: 16px;
  }

  .brand-gem--right {
    right: 16px;
    bottom: -70px;
    width: 110px;
  }
}


/* =========================================================
   BRAND SECTION 4 — BOTTOM
   ========================================================= */
.brand_section-4 {
  background: var(--color-secondary-3);
  padding: 60px 0 70px;
  color: var(--color-primary-2);
}

.brand_section-4__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.brand_section-4 .brand-title {
  margin: 0 0 18px;
  font-family: var(--font-primary);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 40px;
}

.brand_section-4 .brand-text {
  margin: 0 auto;
  max-width: 1100px;
  font-size: 20px;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .brand_section-4 {
    padding: 44px 0 48px;
  }

  .brand_section-4__inner {
    padding: 0 20px;
  }

  .brand_section-4 .brand-title {
    font-size: 28px;
    margin-top: 30px;
  }

  .brand_section-4 .brand-text {
    font-size: 16px;
  }
}


/* =========================================================
   BRAND SECTION 5 — VALUES 
   ========================================================= */
.brand_section-5 {
  background: var(--color-white);
  padding: 116px 0 90px;
}

.brand_section-5__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.brand_section-5 .values__title {
  margin: 0 0 50px;
  font-family: var(--font-primary);
  font-weight: 400;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: var(--color-primary-2);
  font-size: 40px;
}

/* shared */
.brand_section-5 .values__grid {
  display: grid;
  justify-items: center;
}

.brand_section-5 .values__item {
  max-width: 420px;
}

.brand_section-5 .values__h {
  margin: 0 0 10px;
  font-family: var(--font-secondary);
  font-weight: 700;
  color: var(--color-primary-2);
  font-size: 24px;
  letter-spacing: 0.015em;
}

.brand_section-5 .values__p {
  margin: 0;
  font-family: var(--font-secondary);
  font-weight: 400;
  color: var(--color-primary-1);
  font-size: 16px;
  line-height: 1.35;
}

/* TOP: 3 columns */
.brand_section-5 .values__grid--top {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px 64px;
}

/* BOTTOM: 2 columns */
.brand_section-5 .values__grid--bottom {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px 64px;

  max-width: 840px;
  margin: 40px auto 0; 
}

/* mobile */
@media (max-width: 900px) {
  .brand_section-5 {
    padding: 44px 0 48px;
  }

  .brand_section-5__inner {
    padding: 0 16px;
  }

  .brand_section-5 .values__title {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .brand_section-5 .values__grid--top,
  .brand_section-5 .values__grid--bottom {
    grid-template-columns: 1fr;
    gap: 26px;
    max-width: none;
    margin: 0;
  }

  .brand_section-5 .values__grid--top {
    margin-bottom: 26px; 
  }

  .brand_section-5 .values__h {
    font-size: 20px;
  }

  .brand_section-5 .values__p {
    font-size: 15px;
  }
}

/* ================================
   CONTACT SECTION 1 (4 contacts)
   Desktop: 4 in a row
   Mobile: 1 in a column
================================ */

.contact_section-1 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  font-family: var(--font-secondary);
  color: var(--color-primary-1);
}

.contact_section-1 .contacts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 44px 32px;
  align-items: start;
}

.contact_section-1 .contact {
  display: flex;
  justify-content: center;
}

/* item */
.contact_section-1 .contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  text-decoration: none;
  color: inherit;
}

.contact_section-1 .contact-item__title {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-family: var(--font-primary);
  font-size: 24px;
  text-transform: uppercase;
  color: var(--color-primary-1);
}

.contact_section-1 .contact-item__icon {
  width: 26px;
  height: 26px;
  display: block;
  flex: 0 0 auto;
}

.contact_section-1 .contact-item__value {
  margin-top: 6px;
  font-size: 24px;
  color: var(--color-primary-1);
}

.contact_section-1 .contact-item:hover {
  opacity: 0.85;
}

/* MOBILE */
@media (max-width: 900px) {
  .contact_section-1 {
    padding: 0 16px;
  }

  .contact_section-1 .contacts {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 360px;
    margin: 0 auto;
  }

  .contact_section-1 .contact-item__title {
    font-size: 20px;
  }

  .contact_section-1 .contact-item__value {
    font-size: 20px;
  }
}

/* ================================
   MAP + FORM LAYOUT
================================ */

.contact_section-1__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(18px, 3vw, 44px);
  align-items: start;
  padding: 60px 0 20px;
}

/* карта — просто контейнер; скрипт внутри сам отрисует */
.contact-map {
  border-radius: 18px;
  overflow: hidden;
  background: #eee;
  min-height: 444px; /* чтобы колонка держала высоту, пока карта грузится */
}

/* форма */
.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 18px 0 0;
}

.contact-form__title {
  margin: 0 0 22px;
  font-family: var(--font-primary);
  font-size: 40px;
  font-weight: 400;
/*  letter-spacing: 0.08em; */
  text-transform: uppercase;
  color: var(--color-primary-2);
  text-align: center;
}

.contact-form__field {
  width: 100%;
  margin-bottom: 18px;
}

.contact-form input {
  width: 100%;
  height: 56px;
  padding: 0 22px;

  border-radius: 999px;
  border: 2px solid rgba(71, 84, 107, 0.35);
  background: transparent;

  font-family: var(--font-secondary);
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary-2);
  outline: none;
}

.contact-form input::placeholder {
  color: rgba(71, 84, 107, 0.7);
}

.contact-form input:focus {
  border-color: rgba(71, 84, 107, 0.65);
}

.contact-form__btn {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 44px;
  padding: 0 32px;
  border-radius: 999px;
  border: none;

  font-family: var(--font-secondary);
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  background: var(--color-primary-2);
  color: #fff;
  cursor: pointer;
}

.contact-form__btn:hover {
  opacity: 0.9;
}

/* скрытый текст для доступности */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ================================
   MOBILE
================================ */
@media (max-width: 900px) {
  .contact_section-1__inner {
    padding: 0 16px;
  }

  .contact_section-1 .contacts {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 0 26px;
  }

  .contact_section-1__layout {
    grid-template-columns: 1fr; /* форма под картой */
    gap: 22px;
    padding-bottom: 40px;
  }

  .contact-form__title {
    font-size: 28px;
  }

  .contact-map {
    min-height: 320px;
  }
}






