/* ==========================================
   LA PIAZZETTA – HOME PAGE
   Scope:
   - hero
   - hero load gate
   - scroll indicator
   - home paper background
   - home section spacing
   - announcements
   - about section
   - reveal animations
   - special preview
========================================== */

/* ==========================================
   01. HERO
========================================== */

body.lp-theme .hero-full{
  min-height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: clamp(70px, 14vh, 140px);
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 768px){
  body.lp-theme .hero-full{
    padding-top: 9vh;
  }
}

@media (max-width: 390px){
  body.lp-theme .hero-full{
    padding-top: 7vh;
  }
}

body.lp-theme .hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.80),
    rgba(0,0,0,0.40),
    rgba(0,0,0,0.80)
  );
  z-index: 1;
}

body.lp-theme .hero-inner{
  position: relative;
  z-index: 3;
  padding: 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}

body.lp-theme .hero-kicker,
body.lp-theme .hero-title,
body.lp-theme .hero-tagline{
  opacity: 0;
  transform: translateY(34px);
  will-change: opacity, transform;
}

body.lp-theme .hero-kicker{
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: 10px;
  text-transform: uppercase;
  font-size: clamp(22px, 2.2vw, 34px);
  color: var(--lp-cream);
  margin-bottom: clamp(30px, 5vh, 48px);
}

body.lp-theme .hero-kicker::before,
body.lp-theme .hero-kicker::after{
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: var(--lp-cream);
  margin: 12px auto;
  opacity: .5;
}

body.lp-theme .hero-title{
  font-family: "Great Vibes", cursive;
  font-size: clamp(90px, 12vw, 180px);
  font-weight: 400;
  color: var(--lp-cream);
  line-height: 1.05;
  margin: 0;
  text-shadow:
    0 2px 4px rgba(0,0,0,0.4),
    0 8px 30px rgba(0,0,0,0.55);
}

body.lp-theme .hero-tagline{
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: 6px;
  font-size: clamp(22px, 2vw, 32px);
  color: var(--lp-cream);
  margin-top: 28px;
}

@keyframes heroRevealLuxury{
  0%   { opacity: 0; transform: translateY(34px); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: translateY(0); }
}

.page-home.lp-hero-ready .hero-kicker{
  animation: heroRevealLuxury 2.0s cubic-bezier(.19,1,.22,1) 0.15s forwards;
}

.page-home.lp-hero-ready .hero-title{
  animation: heroRevealLuxury 2.3s cubic-bezier(.19,1,.22,1) 0.45s forwards;
}

.page-home.lp-hero-ready .hero-tagline{
  animation: heroRevealLuxury 2.0s cubic-bezier(.19,1,.22,1) 0.85s forwards;
}

/* ==========================================
   02. HERO LOAD GATE
========================================== */

.page-home.lp-hero-pending .hero-inner,
.page-home.lp-hero-pending .lp-scroll{
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .45s ease, transform .45s ease;
  pointer-events: none;
}

.page-home.lp-hero-pending .hero-kicker,
.page-home.lp-hero-pending .hero-title,
.page-home.lp-hero-pending .hero-tagline{
  animation: none !important;
}

.page-home.lp-hero-ready .hero-inner,
.page-home.lp-hero-ready .lp-scroll{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ==========================================
   03. HERO SCROLL INDICATOR
========================================== */

body.lp-theme .lp-scroll{
  position: absolute;
  left: 50%;
  bottom: clamp(120px, 10vh, 180px);
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-decoration: none;
  opacity: 0.85;
}

body.lp-theme .lp-scroll:hover{
  opacity: 1;
}

body.lp-theme .lp-scroll-icon{
  width: clamp(90px, 8vw, 160px);
  height: auto;
  display: block;
  animation: lpScrollFloat 3s ease-in-out infinite;
}

body.lp-theme .lp-scroll-text{
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lp-cream);
  opacity: 0.75;
  transition: opacity .3s ease;
  margin-top: -15px;
  line-height: 1;
}

body.lp-theme .lp-scroll:hover .lp-scroll-text{
  opacity: 1;
}

@keyframes lpScrollFloat{
  0%   { transform: translateY(0); opacity: .75; }
  50%  { transform: translateY(10px); opacity: 1; }
  100% { transform: translateY(0); opacity: .75; }
}

body.lp-theme .lp-scroll.lp-scroll-inline{
  position: static;
  left: auto;
  bottom: auto;
  transform: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0.85;
  margin: 22px auto 0;
}

body.lp-theme .lp-scroll.lp-scroll-inline:hover{
  opacity: 1;
}

body.lp-theme .lp-scroll.lp-scroll-inline .lp-scroll-icon{
  width: clamp(90px, 8vw, 150px);
  height: auto;
  display: block;
  animation: lpScrollFloat 3s ease-in-out infinite;
}

body.lp-theme .lp-scroll.lp-scroll-inline .lp-scroll-text{
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lp-cream);
  opacity: 0.75;
  transition: opacity .3s ease;
  margin-top: -12px;
  line-height: 1;
}

body.lp-theme .lp-scroll.lp-scroll-inline:hover .lp-scroll-text{
  opacity: 1;
}

@media (prefers-reduced-motion: reduce){
  body.lp-theme .lp-scroll-icon,
  body.lp-theme .lp-scroll.lp-scroll-inline .lp-scroll-icon{
    animation: none;
    opacity: 1;
  }
}

/* ==========================================
   04. HOME – PAPER BACKGROUND
========================================== */

body.lp-theme.page-home,
body.lp-theme.page-home main{
  background-color: var(--lp-cream);
  background-image: url('../../img/textures/paper-grain.png');
  background-repeat: repeat;
  background-size: 320px 320px;
}

/* ==========================================
   05. HOME – GENERIC SECTION SPACING
========================================== */

.lp-home-section{
  position: relative;
  padding: clamp(78px, 9vw, 126px) 0;
}

@media (max-width: 575.98px){
  .lp-home-section{
    padding: 58px 0;
  }
}

/* ==========================================
   06. HOME – ANNOUNCEMENTS
========================================== */

.lp-announcements{
  width: min(860px, 100%);
  margin: 0 auto;
  display: grid;
  gap: var(--sp-stack-gap);
}

.lp-ann-card{
  display: grid;
  grid-template-columns: 1fr;
  background: var(--lp-white);
  border: 1px solid rgba(58,29,22,0.10);
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.lp-ann-media{
  position: relative;
  max-height: 320px;
  overflow: hidden;
  border-radius: 0;
  background: var(--lp-cream);
}

.lp-ann-img{
  width: 100%;
  height: 320px;
  object-fit: contain;
  object-position: center;
  display: block;
}

@media (max-width: 900px){
  .lp-ann-media{
    max-height: 220px;
  }

  .lp-ann-img{
    height: 220px;
  }
}

.lp-ann-body{
  padding: clamp(16px, 2.6vw, 22px);
  color: var(--lp-text-dark);
}

.lp-ann-body--center{
  text-align: center;
}

.lp-ann-meta{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: var(--fs-meta);
  color: rgba(42,37,33,0.72);
}

.lp-ann-meta time{
  white-space: nowrap;
}

.lp-ann-badge{
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 0;
  font-size: var(--fs-meta);
  letter-spacing: 0.04em;
  background: rgba(58,29,22,0.06);
  border: 1px solid rgba(58,29,22,0.12);
  color: var(--lp-text-dark);
}

.lp-ann-title{
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: var(--fs-h3);
  line-height: var(--lh-tight);
  color: var(--lp-text-dark);
}

.lp-ann-text{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--lp-text-dark);
  opacity: 0.96;
}

.lp-ann-text p{
  margin: 0 0 10px;
}

.lp-ann-text p:last-child{
  margin-bottom: 0;
}

.lp-ann-text a{
  color: var(--lp-bg-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lp-ann-text a:hover{
  color: var(--lp-bg-warm);
}

.lp-ann-empty{
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 18px 20px;
  border-radius: 0;
  background: var(--lp-white);
  border: 1px dashed rgba(58,29,22,0.18);
  text-align: center;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: var(--fs-body);
  color: rgba(42,37,33,0.78);
}

/* ==========================================
   07. HOME – OLD KIT SCOPED ANNOUNCEMENT OVERRIDES
========================================== */

body.lp-theme .lp-card-announcement .lp-ann-body{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(247,244,238,0.92);
}

body.lp-theme .lp-card-announcement .lp-ann-body p{
  margin: 0 0 10px;
}

body.lp-theme .lp-card-announcement .lp-ann-body p:last-child{
  margin-bottom: 0;
}

body.lp-theme .lp-card-announcement .lp-ann-body ul,
body.lp-theme .lp-card-announcement .lp-ann-body ol{
  margin: 0 0 10px 18px;
  padding: 0;
}

body.lp-theme .lp-card-announcement .lp-ann-body li{
  margin: 4px 0;
}

body.lp-theme .lp-card-announcement .lp-ann-body a{
  color: var(--lp-cream);
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: .9;
}

body.lp-theme .lp-card-announcement .lp-ann-body a:hover{
  opacity: 1;
}

/* ==========================================
   08. HOME – ABOUT / BENVENUTI
========================================== */

.lp-about-shell{
  position: relative;
  background: rgba(255,252,247,0.50);
  border: 1px solid rgba(58,29,22,0.06);
  padding-top: clamp(16px, 2vw, 28px);
  padding-right: clamp(16px, 2.4vw, 28px);
  padding-bottom: clamp(16px, 2vw, 28px);
  padding-left: clamp(16px, 2.4vw, 28px);
  box-shadow: 0 20px 44px rgba(58,29,22,0.05);
}

.lp-about-row{
  position: relative;
}

.lp-about-media-frame{
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  border: 1px solid rgba(58,29,22,0.08);
  box-shadow: 0 20px 44px rgba(58,29,22,0.08);
}

.lp-about-media{
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 0;
  background: var(--lp-cream);
}

.lp-about-image{
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: saturate(0.96) contrast(1.03) brightness(0.98);
}

.lp-about-content{
  padding-left: clamp(8px, 1.6vw, 22px);
}

.lp-about-text{
  min-width: 0;
  max-width: 54ch;
  margin: 0 0 18px;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.98rem, 1.15vw, 1.04rem);
  line-height: 1.9;
  color: rgba(42,37,33,0.80);
}

.lp-about-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  margin-top: 10px;
  background: var(--lp-bg-warm);
  color: var(--lp-cream);
  border: 1px solid rgba(58,29,22,0.10);
  box-shadow: 0 8px 18px rgba(58,29,22,0.10);
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease;
}

.lp-about-link:hover,
.lp-about-link:focus,
.lp-about-link:visited,
.lp-about-link:active{
  color: var(--lp-cream);
  text-decoration: none;
}

.lp-about-link:hover,
.lp-about-link:focus{
  background: #3c221b;
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(58,29,22,0.14);
}

/* ==========================================
   09. HOME – ABOUT TITLE / UNDERLINE / DIVIDER
========================================== */

.lp-about-section-title{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: clamp(32px, 4vw, 44px);
}

.lp-about-section-title__line{
  position: relative;
  flex: 1 1 auto;
  height: 2px;
}

.lp-about-section-title__line:first-child{
  background: linear-gradient(
    90deg,
    rgba(183,150,99,0.06) 0%,
    rgba(183,150,99,0.55) 100%
  );
}

.lp-about-section-title__line:last-child{
  background: linear-gradient(
    90deg,
    rgba(183,150,99,0.55) 0%,
    rgba(183,150,99,0.06) 100%
  );
}

body.lp-theme .lp-about .lp-about-section-title__text{
  margin: 0;
  flex: 0 0 auto;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1.85rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--lp-bg-dark);
  white-space: nowrap;
}

.lp-about-title{
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--lp-bg-dark);
}

.lp-about-title-underline{
  width: min(100%, 570px);
  height: 2px;
  margin: 16px 0 24px;
  background: rgba(183,150,99,0.55);
}

.lp-about-bottom-divider{
  width: 100%;
  margin-top: clamp(34px, 4vw, 46px);
  height: 6px;
  background:
    linear-gradient(
      90deg,
      rgba(183,150,99,0.03) 0%,
      rgba(183,150,99,0.42) 18%,
      rgba(183,150,99,0.58) 50%,
      rgba(183,150,99,0.42) 82%,
      rgba(183,150,99,0.03) 100%
    ) top / 100% 1px no-repeat,
    linear-gradient(
      90deg,
      rgba(183,150,99,0.03) 0%,
      rgba(183,150,99,0.42) 18%,
      rgba(183,150,99,0.58) 50%,
      rgba(183,150,99,0.42) 82%,
      rgba(183,150,99,0.03) 100%
    ) bottom / 100% 2px no-repeat;
}

/* ==========================================
   10. HOME – ABOUT RESPONSIVE
========================================== */

@media (max-width: 991.98px){
  .lp-about-media,
  .lp-about-image{
    min-height: 360px;
  }

  .lp-about-content{
    padding-left: 0;
    padding-top: 8px;
  }
}

@media (max-width: 575.98px){
  .lp-about-media,
  .lp-about-image{
    min-height: 260px;
  }

  .lp-about-title{
    margin-bottom: 14px;
  }

  .lp-about-text{
    line-height: 1.75;
  }
}

/* ==========================================
   11. HOME – REVEAL ANIMATIONS
========================================== */

.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 1.35s cubic-bezier(.19,1,.22,1),
    transform 1.2s cubic-bezier(.19,1,.22,1);
  will-change: opacity, transform;
}

.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1{ transition-delay: 0.16s; }
.reveal--delay-2{ transition-delay: 0.32s; }
.reveal--delay-3{ transition-delay: 0.48s; }
.reveal--delay-4{ transition-delay: 0.64s; }

@media (prefers-reduced-motion: reduce){
  .reveal,
  .reveal.is-visible,
  .reveal--delay-1,
  .reveal--delay-2,
  .reveal--delay-3,
  .reveal--delay-4{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==========================================
   12. HOME – SPECIAL PREVIEW / SAISONKARTE
========================================== */

.lp-about{
  padding-bottom: clamp(18px, 3vw, 28px);
}

.lp-special-preview{
  position: relative;
  padding-top: clamp(18px, 3vw, 28px);
}

.lp-special-card{
  position: relative;
  background: linear-gradient(
    90deg,
    rgba(255,252,247,0.06) 0%,
    rgba(255,252,247,0.22) 22%,
    rgba(255,252,247,0.96) 50%,
    rgba(255,252,247,0.22) 78%,
    rgba(255,252,247,0.06) 100%
  );
  padding: clamp(18px, 2.2vw, 28px);
  overflow: hidden;
}

/* desktop frame: top fade-out spre mijloc + left/right solid */
.lp-special-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(183,150,99,0.58) 0%,
      rgba(183,150,99,0.04) 46%,
      rgba(183,150,99,0.04) 54%,
      rgba(183,150,99,0.58) 100%
    ) top / 100% 2px no-repeat,
    linear-gradient(
      180deg,
      rgba(183,150,99,0.58) 0%,
      rgba(183,150,99,0.58) 100%
    ) left / 2px 100% no-repeat,
    linear-gradient(
      180deg,
      rgba(183,150,99,0.58) 0%,
      rgba(183,150,99,0.58) 100%
    ) right / 2px 100% no-repeat;
  pointer-events: none;
}

/* desktop frame: jos dublă linie, fade-out spre mijloc */
.lp-special-card::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background:
    linear-gradient(
      90deg,
      rgba(183,150,99,0.58) 0%,
      rgba(183,150,99,0.04) 46%,
      rgba(183,150,99,0.04) 54%,
      rgba(183,150,99,0.58) 100%
    ) top / 100% 1px no-repeat,
    linear-gradient(
      90deg,
      rgba(183,150,99,0.58) 0%,
      rgba(183,150,99,0.04) 46%,
      rgba(183,150,99,0.04) 54%,
      rgba(183,150,99,0.58) 100%
    ) bottom / 100% 2px no-repeat;
  pointer-events: none;
}

.lp-special-grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  position: relative;
}

.lp-special-item{
  position: relative;
  min-width: 0;
}

/* desktop: fara linii interioare */
.lp-special-item::before,
.lp-special-item::after{
  display: none;
}

.lp-special-divider{
  position: relative;
  width: 2px;
  min-height: 100%;
  align-self: stretch;
  justify-self: center;
}

.lp-special-divider::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(183,150,99,0.04) 0%,
    rgba(183,150,99,0.58) 50%,
    rgba(183,150,99,0.04) 100%
  );
}

.lp-special-divider-mobile{
  display: none;
}

.lp-special-intro{
  margin-bottom: 18px;
}

.lp-special-section-head{
  margin-bottom: 22px;
}

.lp-special-single-cta{
  margin-top: 10px;
}

.lp-special-content{
  position: relative;
  padding: clamp(4px, 0.8vw, 10px) clamp(4px, 0.8vw, 10px) 18px 18px;
}

.lp-special-kicker{
  font-family: "Cormorant Garamond", serif;
  font-style: normal;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--lp-bg-dark);
  margin-bottom: 4px;
}


.lp-special-subkicker{
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: rgba(42,37,33,0.82);
  margin-bottom: 18px;
}


.lp-special-media-frame{
  position: relative;
  border: 1px solid rgba(58,29,22,0.08);
  box-shadow: 0 18px 36px rgba(58,29,22,0.08);
  overflow: hidden;
  background: var(--lp-cream);
}

.lp-special-media-frame--inline{
  margin: 0 0 18px;
}

.lp-special-media{
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--lp-cream);
}

.lp-special-image{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: saturate(0.96) contrast(1.03) brightness(0.98);
}

.lp-special-title{
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--lp-bg-dark);
}
.lp-special-text{
  max-width: 48ch;
  margin: 0 0 18px;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.98rem, 1.15vw, 1.04rem);
  line-height: 1.85;
  color: rgba(42,37,33,0.80);
}

.lp-special-meta{
  margin-bottom: 22px;
}

.lp-special-price{
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 2.4vw, 2.5rem);
  font-weight: 600;
  line-height: 1;
  color: var(--lp-bg-dark);
}

.lp-special-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  background: var(--lp-bg-warm);
  color: var(--lp-cream);
  border: 1px solid rgba(58,29,22,0.10);
  box-shadow: 0 8px 18px rgba(58,29,22,0.10);
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease;
}

.lp-special-link,
.lp-special-link:visited,
.lp-special-link:hover,
.lp-special-link:focus,
.lp-special-link:active{
  color: var(--lp-cream);
  text-decoration: none;
}

.lp-special-link:hover,
.lp-special-link:focus{
  background: var(--lp-bg-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(58,29,22,0.14);
}

.lp-special-section-head--mobile{
  margin-bottom: 18px;
}

@media (min-width: 992px){
  .lp-special-grid{
    grid-template-columns: minmax(0, 1fr) 2px minmax(0, 1fr);
    gap: clamp(20px, 2.8vw, 34px);
    align-items: stretch;
  }
}

@media (max-width: 991.98px){
  /* scoatem cadrul mare simetric pe mobil */
  .lp-special-card::before,
  .lp-special-card::after{
    content: none;
    display: none;
  }

  .lp-special-divider{
    display: none;
  }

  .lp-special-divider-mobile{
    display: block;
    height: 6px;
    margin: -2px 0 2px;
    background:
      linear-gradient(
        90deg,
        rgba(183,150,99,0.04) 0%,
        rgba(183,150,99,0.58) 50%,
        rgba(183,150,99,0.04) 100%
      ) top / 100% 1px no-repeat,
      linear-gradient(
        90deg,
        rgba(183,150,99,0.04) 0%,
        rgba(183,150,99,0.58) 50%,
        rgba(183,150,99,0.04) 100%
      ) bottom / 100% 2px no-repeat;
    pointer-events: none;
  }

  .lp-special-grid{
    gap: 22px;
  }

  .lp-special-item{
    position: relative;
    min-width: 0;
  }

  .lp-special-content{
    position: relative;
    padding: 0;
  }

  .lp-special-media{
    height: 180px;
  }

  .lp-special-image{
    height: 100%;
  }

  /* reset pseudo-elements */
  .lp-special-item::before,
  .lp-special-item::after,
  .lp-special-content::before,
  .lp-special-content::after{
    content: none;
    display: none;
  }

  /* ITEM 1: left solid + top fade-out spre dreapta */
  .lp-special-item--first{
    padding-top: 16px;
    padding-left: 18px;
    padding-bottom: 8px;
  }

  .lp-special-item--first::before{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
    180deg,
    rgba(183,150,99,0.58) 0%,
    rgba(183,150,99,0.04) 100%
  );
    pointer-events: none;
  }

  .lp-special-item--first::after{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(
      90deg,
      rgba(183,150,99,0.58) 0%,
      rgba(183,150,99,0.04) 100%
    );
    pointer-events: none;
  }

  /* ITEM 2: right solid + bottom dublu fade-out dreapta -> stanga */
  .lp-special-item--second{
    padding-top: 0;
    padding-right: 18px;
    padding-bottom: 18px;
    padding-left: 0;
  }

  .lp-special-item--second::before{
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 2px;
     background: linear-gradient(
    180deg,
    rgba(183,150,99,0.04) 0%,
    rgba(183,150,99,0.58) 100%
  );
    pointer-events: none;
  }

  .lp-special-item--second::after{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 6px;
    background:
      linear-gradient(
        90deg,
        rgba(183,150,99,0.04) 0%,
        rgba(183,150,99,0.58) 100%
      ) top / 100% 1px no-repeat,
      linear-gradient(
        90deg,
        rgba(183,150,99,0.04) 0%,
        rgba(183,150,99,0.58) 100%
      ) bottom / 100% 2px no-repeat;
    pointer-events: none;
  }
}

@media (max-width: 575.98px){
  .lp-special-card{
    padding: 16px;
  }

  .lp-special-grid{
    gap: 20px;
  }

 .lp-special-kicker{
  font-size: clamp(1.6rem, 7vw, 2rem);
}
.lp-special-subkicker{
  font-size: clamp(1rem, 4.8vw, 1.2rem);
}
 .lp-special-title{
  font-size: clamp(1.3rem, 6vw, 1.6rem);
}

  .lp-special-media{
    height: 150px;
  }

  .lp-special-image{
    height: 100%;
  }

  .lp-special-item--first{
    padding-top: 14px;
    padding-left: 16px;
    padding-bottom: 8px;
  }

  .lp-special-item--second{
    padding-right: 16px;
    padding-bottom: 16px;
  }

  .lp-special-divider-mobile{
    margin: -2px 0 0;
  }
}