.eterno_tt{
    padding-top: 120px;
}

:root{
  --dark-eterno:#191818;
  --terracota:#D86954;
  --beige:#F6F4F0;
  --wrap-w:1280px;
}



:root{
  --dark-eterno: #191818;
  --terracota-eterno: #D86954;

  --dark: #191818;
  --terra: #D86954;
  --beige: #F6F4F0;

  --font-onest: "Onest", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-santello: "Santello", "Onest", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  --hero-w: 1274px;
  --hero-h: 688px;
  --hero-radius: 30px;


  --card-radius: 34px;


  --radius-xl: 34px;


  --kompakt-left-w: 620px;
  --kompakt-right-w: 600px;
  --kompakt-gap: 60px;


  --mdf-left-w: 600px;
  --mdf-right-w: 530px;
  --mdf-gap: 150px;


  --acc-h: 195px;
  --acc-open-w: 672px;
  --acc-closed-w: 262px;
  --acc-img-open-w: 230px;
  --acc-gap: 42px;
}



.kompakt-hero{
  width: 100%;
  padding: 40px 0;
}

.kompakt-hero__wrap{
  width: min(var(--wrap-w), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 597px;
  gap: 48px;
  align-items: start;
}

/* ===== LEFT ===== */

.kompakt-hero__left{
  padding-top: 8px;
}

/* thumbs */
.kompakt-hero__thumbs{
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 54px;
  min-height: 158px;
}

.kh-thumb{
  overflow: hidden;
  border-radius: 32px;
  flex: 0 0 auto;
}

.kh-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kh-thumb--1{
  width: 118px;
  height: 118px;
  margin-top: 22px;
  position: relative;
}

.kh-thumb--1::before{
  content: "";
  position: absolute;
  left: 0;
  top: -18px;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--terracota) 0 48px, rgba(25,24,24,0.18) 48px 100%);
}

.kh-thumb--2{
  width: 139px;
  height: 139px;
  margin-top: 14px;
}

.kh-thumb--3{
  width: 158px;
  height: 158px;
  position: relative;
}

/* glass arrow */
.kh-thumbs__next{
  position: absolute;
  left: calc(118px + 20px + 139px + 20px + 158px - 31px);
  top: 48px;

  width: 62px;
  height: 62px;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 999px;
  background: rgba(255,255,255,0.42);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  backdrop-filter: blur(18px) saturate(180%);
  box-shadow: 0 10px 24px rgba(0,0,0,0.14);

  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}

/* title */
.kompakt-hero__title{
  margin-bottom: 26px;
}

.kh-title{
  font-family: "Santello", "Onest", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: 60px;
  line-height: 1.02;
}

.kh-title + .kh-title{
  margin-top: 6px;
}

.kh-title--dark{
  color: var(--dark-eterno);
}

.kh-title--terra{
  color: var(--terracota);
}

.kh-title--with-icon{
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.kh-title--with-icon img{
  width: 64px;
  height: 64px;
  display: block;
  flex: 0 0 auto;
}

/* description */
.kompakt-hero__desc{
  max-width: 430px;
  font-family: "Onest", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.22;
  color: var(--dark-eterno);
  margin-top: 40px;
}

/* ===== RIGHT ===== */

.kompakt-hero__right{
  position: relative;
  width: 597px;
  height: 746px;
}

/* image with cutout mask */
.kompakt-hero__img{
  width: 597px;
  height: 746px;
  object-fit: cover;
  display: block;

  -webkit-mask-image: url("/wp-content/uploads/2026/03/Frame-1948759872.png");
  mask-image: url("/wp-content/uploads/2026/03/Frame-1948759872.png");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

/* icon in cutout */
.kompakt-hero__top-icon{
  position: absolute;
  top: 14px;
  left: 46px; /* подгонка под вырез */
  width: 104px;
  height: 104px;
  z-index: 2;

  display: grid;
  place-items: center;
}

.kompakt-hero__top-icon img{
  width: 104px;
  height: 104px;
  display: block;
}

/* ===== responsive ===== */

@media (max-width: 1280px){
  .kompakt-hero__wrap{
    grid-template-columns: 1fr;
  }

  .kompakt-hero__right{
    width: min(597px, 100%);
    height: auto;
    aspect-ratio: 597 / 746;
  }

  .kompakt-hero__img{
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 768px){
  .kh-title{
    font-size: 40px;
  }

  .kompakt-hero__desc{
    font-size: 18px;
    max-width: 100%;
  }

  .kompakt-hero__thumbs{
    gap: 12px;
    min-height: 120px;
  }

  .kh-thumb--1{
    width: 84px;
    height: 84px;
    margin-top: 18px;
  }

  .kh-thumb--2{
    width: 96px;
    height: 96px;
    margin-top: 10px;
  }

  .kh-thumb--3{
    width: 110px;
    height: 110px;
  }

  .kh-thumbs__next{
    width: 52px;
    height: 52px;
    left: auto;
    right: 0;
    top: 30px;
  }

  .kh-title--with-icon img{
    width: 48px;
    height: 48px;
  }
}




.et-kompakt__cards{
  width: 1280px;
  display: flex;
  gap: var(--acc-gap);
  align-items: stretch;
}

.et-aCard{
  height: var(--acc-h);
  width: var(--acc-closed-w);
  border: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  transition:
    width 520ms cubic-bezier(.22,.85,.22,1),
    transform 520ms cubic-bezier(.22,.85,.22,1);
  transform: translateZ(0);
}

.et-aCard.is-open{ width: var(--acc-open-w); }

.et-aCard__open{
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
}

.et-aCard__imgWrap{
  width: var(--acc-img-open-w);
  height: var(--acc-h);
  flex: 0 0 var(--acc-img-open-w);
  overflow: hidden;
  position: relative;
}

.et-aCard__imgWrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.et-aCard:not(.is-open) .et-aCard__imgWrap{
  width: 100%;
  flex: 0 0 100%;
}

.et-aCard:not(.is-open) .et-aCard__text{ display: none; }

.et-aCard.is-open .et-aCard__imgWrap{
  width: var(--acc-img-open-w);
  flex: 0 0 var(--acc-img-open-w);
}

.et-aCard.is-open .et-aCard__text{ display: flex; }

.et-aCard__closedTitle{
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;

  font-family: var(--font-santello);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.05;
  color: #fff;

  text-align: left;
  z-index: 3;

  transition: opacity 220ms ease;
}

.et-aCard::before{
  content:"";
  position:absolute;
  inset:0;
  opacity: 1;
  transition: opacity 260ms ease;
  z-index: 2;
}

.et-aCard__text{
  width: calc(var(--acc-open-w) - var(--acc-img-open-w));
  height: 100%;
  padding: 24px 26px;
  box-sizing: border-box;

  flex-direction: column;
  justify-content: center;
  gap: 10px;

  background: var(--beige);
  color: var(--dark-eterno);

  text-align: left;
  align-items: flex-start;

  opacity: 0;
  transform: translateX(18px);
  transition:
    opacity 320ms ease,
    transform 520ms cubic-bezier(.22,.85,.22,1);
}

.et-aCard__title{
  font-family: var(--font-santello);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.05;
  color: var(--dark-eterno);
}

.et-aCard__desc{
  font-family: var(--font-onest);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.35;
  color: var(--dark-eterno);
}

.et-aCard.is-open::before{ opacity: 0; }
.et-aCard.is-open .et-aCard__closedTitle{ opacity: 0; }
.et-aCard.is-open .et-aCard__text{
  opacity: 1;
  transform: translateX(0);
}

.et-aCard:hover{ transform: translateY(-2px); }
.et-aCard:focus-visible{
  outline: 2px solid rgba(216,105,84,.6);
  outline-offset: 3px;
}




:root{
  --dark-eterno: #191818;
  --terracota: #D86954;
  --beige: #F6F4F0;
  --wrap-w: 1280px;

  --font-santello: "Santello", "Onest", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-onest: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* секция */
.et-kompakt-advantages{
  width: 100%;
  padding: 60px 0;
}

.et-kompakt-advantages__wrap{
  width: min(var(--wrap-w), 100%);
  margin: 0 auto;
}





:root{
  --dark-eterno:#191818;
  --terracota:#D86954;
  --wrap-w:1280px;

  --font-santello:"Santello", "Onest", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-onest:"Onest", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}



.et-tabletop-title{
  padding:110px 0 80px;
}

.et-tabletop-title__wrap{
  width:min(var(--wrap-w), 100%);
  margin:0 auto;
}

.et-tabletop-title__inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:20px;
}

/* строки */

.et-tabletop-title__row{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:20px;
}

/* santello */

.et-tabletop-title__row--santello{
  font-family:var(--font-santello);
  font-weight:400;
  font-size:48px;
  line-height:1.05;
  color:var(--dark-eterno);
}

/* onest */

.et-tabletop-title__row--onest{
  font-family:var(--font-onest);
  font-weight:200;
  font-size:48px;
  line-height:1.15;
  color:var(--dark-eterno);
}

/* иконка сердце */

.et-tabletop-title__icon{
  width:64px;
  height:64px;
  display:block;
}

/* картинка столешницы */

.et-tabletop-title__photo{
  width:179px;
  height:78px;
  border-radius:40px;
  object-fit:cover;
  display:block;
}

/* tablet */

@media (max-width:1024px){

  .et-tabletop-title__row--santello,
  .et-tabletop-title__row--onest{
    font-size:38px;
  }

}

/* mobile */

@media (max-width:768px){

  .et-tabletop-title{
    padding:70px 0 50px;
  }

  .et-tabletop-title__row--santello,
  .et-tabletop-title__row--onest{
    font-size:28px;
  }

  .et-tabletop-title__icon{
    width:44px;
    height:44px;
  }

  .et-tabletop-title__photo{
    width:140px;
    height:64px;
  }

}



.et-tabletop-features{
  width:100%;
  padding:80px 0;
}

.et-tabletop-features__wrap{
  width:min(var(--wrap-w), 100%);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:80px;
}

.et-tabletop-feature{
  display:grid;
  grid-template-columns:638px 1fr;
  gap:52px;
  align-items:center;
}

.et-tabletop-feature--reverse{
  grid-template-columns:1fr 638px;
}

/* media */
.et-tabletop-feature__media{
  width:638px;
  height:492px;
  border-radius:56px;
  overflow:hidden;
}

.et-tabletop-feature__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* content */
.et-tabletop-feature__content{
  max-width:520px;
}

.et-tabletop-feature__title{
  margin:0 0 26px;
  font-family:var(--font-onest);
  font-weight:500;
  font-size:32px;
  line-height:1.18;
  color:var(--dark-eterno);
}

.et-tabletop-feature__text p{
  margin:0;
  font-family:var(--font-onest);
  font-weight:400;
  font-size:20px;
  line-height:1.35;
  color:var(--dark-eterno);
}

.et-tabletop-feature__text p + p{
  margin-top:24px;
}

/* responsive */
@media (max-width:1280px){
  .et-tabletop-features{
    padding:60px 0;
  }

  .et-tabletop-features__wrap{
    width:calc(100% - 32px);
    gap:56px;
  }

  .et-tabletop-feature,
  .et-tabletop-feature--reverse{
    grid-template-columns:1fr;
    gap:28px;
  }

  .et-tabletop-feature__media{
    width:100%;
    height:auto;
    aspect-ratio:638 / 492;
  }

  .et-tabletop-feature__content{
    max-width:100%;
  }
}

@media (max-width:768px){
  .et-tabletop-features{
    padding:40px 0;
  }

  .et-tabletop-features__wrap{
    width:calc(100% - 24px);
    gap:40px;
  }

  .et-tabletop-feature__media{
    border-radius:28px;
  }

  .et-tabletop-feature__title{
    font-size:26px;
    margin-bottom:18px;
  }

  .et-tabletop-feature__text p{
    font-size:17px;
    line-height:1.35;
  }

  .et-tabletop-feature__text p + p{
    margin-top:18px;
  }
}


.et-marquee{
  width:100%;
  overflow:hidden;
  background:#F6F4F0;
  padding:14px 0;
}

.et-marquee__track{
  display:flex;
  width:max-content;
  animation:etMarqueeMove 28s linear infinite;
}

.et-marquee__group{
  display:flex;
  align-items:center;
  flex-shrink:0;
}

.et-marquee__item{
  display:flex;
  align-items:center;
  gap:12px;
  padding-right:48px;
  white-space:nowrap;
}

.et-marquee__icon{
  width:52px;
  height:25px;
  display:block;
  flex:0 0 auto;
}

.et-marquee__text{
  font-family:var(--font-santello);
  font-weight:400;
  font-size:17px;
  line-height:1;
  color:var(--dark-eterno);
  white-space:nowrap;
}

@keyframes etMarqueeMove{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-50%);
  }
}

@media (max-width:768px){
  .et-marquee{
    padding:10px 0;
  }

  .et-marquee__item{
    gap:10px;
    padding-right:32px;
  }

  .et-marquee__icon{
    width:44px;
    height:auto;
  }

  .et-marquee__text{
    font-size:14px;
  }
}


.et-tabletop-formats{
  width:100%;
  height:287px;
  background:var(--beige);
  margin-top: 60px;
}

.et-tabletop-formats__wrap{
  width:min(var(--wrap-w), 100%);
  height:100%;
  margin:0 auto;
  padding:0 20px;
  box-sizing:border-box;

  display:flex;
  align-items:center;
  justify-content:center;
}

.et-tabletop-formats__inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:10px;
}

.et-tabletop-formats__row{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:16px;
}

.et-tabletop-formats__title{
  font-family:var(--font-santello);
  font-weight:400;
  font-size:48px;
  line-height:1.05;
  color:var(--dark-eterno);
}

.et-tabletop-formats__subtitle{
  font-family:var(--font-onest);
  font-weight:200;
  font-size:48px;
  line-height:1.1;
}

.et-tabletop-formats__subtitle--dark{
  color:var(--dark-eterno);
}

.et-tabletop-formats__subtitle--terra{
  color:var(--terracota);
}

.et-tabletop-formats__icon{
  width:64px;
  height:64px;
  display:block;
  flex:0 0 auto;
}

@media (max-width:1024px){
  .et-tabletop-formats{
    height:240px;
  }

  .et-tabletop-formats__title,
  .et-tabletop-formats__subtitle{
    font-size:38px;
  }

  .et-tabletop-formats__icon{
    width:54px;
    height:54px;
  }
}

@media (max-width:768px){
  .et-tabletop-formats{
    height:auto;
    padding:48px 0;
  }

  .et-tabletop-formats__wrap{
    height:auto;
    padding:0 16px;
  }

  .et-tabletop-formats__row{
    gap:12px;
  }

  .et-tabletop-formats__title,
  .et-tabletop-formats__subtitle{
    font-size:28px;
    line-height:1.15;
  }

  .et-tabletop-formats__icon{
    width:40px;
    height:40px;
  }
}




.et-tabletop-specs{
  width:100%;
  padding:80px 0;
}

.et-tabletop-specs__wrap{
  width:min(var(--wrap-w), 100%);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:52px;
}

.et-tabletop-specs__row{
  display:grid;
  grid-template-columns:496px 694px;
  justify-content:space-between;
  align-items:start;
}

.et-tabletop-specs__row--reverse{
  grid-template-columns:694px 496px;
}

/* image */
.et-tabletop-specs__media{
  width:496px;
  height:455px;
  border-radius:32px;
  overflow:hidden;
}

.et-tabletop-specs__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* right/left content */
.et-tabletop-specs__content{
  display:flex;
  flex-direction:column;
  gap:18px;
}

/* top plaque */
.et-tabletop-specs__head{
  width:694px;
  min-height:104px;
  border-radius:32px;
  background:var(--beige);
  box-sizing:border-box;
  padding:30px 28px;

  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;

  font-family:var(--font-onest);
  font-weight:500;
  font-size:32px;
  line-height:1.15;
  color:var(--dark-eterno);
}

/* big card */
.et-tabletop-specs__card{
  width:694px;
  min-height:308px;
  border-radius:32px;
  background:var(--beige);
  box-sizing:border-box;
  padding:36px 28px 36px;
}

.et-tabletop-specs__group + .et-tabletop-specs__group{
  margin-top:28px;
}

.et-tabletop-specs__label{
  font-family:var(--font-onest);
  font-weight:500;
  font-size:26px;
  line-height:1.2;
  color:var(--dark-eterno);
}

.et-tabletop-specs__value{
  margin-top:10px;
  font-family:var(--font-onest);
  font-weight:400;
  font-size:20px;
  line-height:1.35;
  color:var(--dark-eterno);
}

/* responsive */
@media (max-width:1280px){
  .et-tabletop-specs{
    padding:60px 0;
  }

  .et-tabletop-specs__wrap{
    width:calc(100% - 32px);
  }

  .et-tabletop-specs__row,
  .et-tabletop-specs__row--reverse{
    grid-template-columns:1fr;
    gap:24px;
  }

  .et-tabletop-specs__row--reverse .et-tabletop-specs__content{
    order:1;
  }

  .et-tabletop-specs__row--reverse .et-tabletop-specs__media{
    order:2;
  }

  .et-tabletop-specs__media{
    width:100%;
    max-width:496px;
    height:auto;
    aspect-ratio:496 / 455;
  }

  .et-tabletop-specs__head,
  .et-tabletop-specs__card{
    width:100%;
  }
}

@media (max-width:768px){
  .et-tabletop-specs{
    padding:40px 0;
  }

  .et-tabletop-specs__wrap{
    width:calc(100% - 24px);
    gap:36px;
  }

  .et-tabletop-specs__content{
    gap:14px;
  }

  .et-tabletop-specs__head{
    min-height:88px;
    padding:22px 18px;
    border-radius:24px;
    font-size:26px;
  }

  .et-tabletop-specs__card{
    min-height:auto;
    padding:24px 18px;
    border-radius:24px;
  }

  .et-tabletop-specs__media{
    border-radius:24px;
  }

  .et-tabletop-specs__label{
    font-size:22px;
  }

  .et-tabletop-specs__value{
    font-size:18px;
    margin-top:8px;
  }

  .et-tabletop-specs__group + .et-tabletop-specs__group{
    margin-top:20px;
  }
}




.et-faq{
  width: 100%;
  padding: 70px 0;
  background: #fff;
}

.et-faq *{ box-sizing: border-box; }

.et-faq__inner{
  width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 710px;
  gap: 60px;
  align-items: start;
}

.et-faq__head{
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 74px;
  position: relative;
}

.et-faq__title{
  margin: 0;
  font-family: var(--font-onest);
  font-weight: 500;
  font-size: 48px;
  line-height: 1.5;
  color: var(--dark);
}

.et-faq__title-ico{
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  left: 230px;
  top: 90px;
}

.et-faq__ask{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.et-faq__ask-text{
  width: 278px;
  height: 60px;
  border-radius: 999px;
  background: var(--beige);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-onest);
  font-weight: 500;
  font-size: 22px;
}

.et-faq__ask-ico{
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -14px;
}

.et-faq__right{ width: 710px; }

.et-faq__item{
  background: var(--beige);
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 18px;
}

.et-faq__q{
  width: 100%;
  border: 0;
  background: transparent;
  padding: 22px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
}

.et-faq__qtext{
  font-family: var(--font-onest);
  font-weight: 400;
  font-size: 25px;
  line-height: 1.2;
  color: var(--dark);
  text-align: left;
}

.et-faq__arr{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
  transition: transform .25s ease;
}

.et-faq__a{
  height: 0;
  overflow: hidden;
  transition: height .28s cubic-bezier(.2,.8,.2,1);
}

.et-faq__a-inner{
  padding: 0 22px 22px;
  font-family: var(--font-onest);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.45;
  color: var(--dark);
}

.et-faq__item.is-open .et-faq__arr{ transform: rotate(180deg); }

.et-faq__all{
  display: block;
  margin-top: 14px;
  text-align: right;
  font-family: var(--font-onest);
  font-size: 14px;
  color: var(--dark);
  text-decoration: none;
}

.et-faq__all:hover{ text-decoration: underline; }

@media (max-width: 1320px){
  .et-faq__inner{
    width: calc(100% - 32px);
    margin: 0 16px;
    grid-template-columns: 1fr;
  }
  .et-faq__right{ width: 100%; }
}