:root {
    --bg: #fffdf9;
    --card: #ffffff;
    --ink: #172036;
    --muted: #5a5f73;
    --gold: #C49B6C;
    --gold-2: #B38A5C;
    --navy: #0f2442;
    --rad: 20px;
    --shadow: 0 10px 30px rgba(15, 36, 66, .08);
}

* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0
}

body {
    background: var(--bg);
    color: var(--ink);
    line-height: 1.5
}

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

a {
    color: inherit;
    text-decoration: none
}

.container {
    width: min(1200px, 92vw);
    margin: 0 auto
}

.section {
    padding: 22px 0
}

.section--alt {
    background: #fffaf2
}

.section__head {
    margin-bottom: 20px
}

.kicker {
    color: var(--gold-2);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 700;
    font-size: 20px;
    border-bottom: 2px solid var(--gold);
}

h1,
h2,
h3 {
    margin: 0 0 8px
}

h2 {
    font-size: clamp(28px, 3.6vw, 40px);
    color: var(--navy)
}

.display {
    font-size: clamp(36px, 6vw, 64px);
    color: var(--navy);
    letter-spacing: .2px
}

.lead {
    font-size: clamp(16px, 2.2vw, 20px);
    max-width: 820px;
    margin: 0 auto;
    color: var(--muted)
}

.muted {
    color: var(--muted)
}

.card {
    background: var(--card);
    border: 1px solid rgba(15, 36, 66, .10);
    border-radius: var(--rad);
    box-shadow: var(--shadow);
    padding: 18px
}

.btn {
    --h: 52px;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    height: var(--h);
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    letter-spacing: .02em;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(15, 36, 66, .08);
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}

.btn__icon {
    font-size: 1.05em;
    line-height: 0
    
}

.btn__icon svg {
    width: 18px;
    height: 18px;
    margin-right: 1px;
    vertical-align: middle;
  }
  

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(15, 36, 66, .12)
}

.btn:active {
    transform: translateY(0)
}

.btn--gold {
    background: var(--gold);
    color: #fff
}

.btn--gold:hover {
    background: var(--gold-2)
}

.btn--ghost {
    background: #fff;
    color: var(--navy);
    border-color: rgba(15, 36, 66, .18)
}

.btn--ghost:hover {
    border-color: rgba(15, 36, 66, .35)
}

@media (max-width:560px) {
    .btn {
        width: 100%;
        justify-content: center
    }
}

.hero {
    position: relative;
    min-height: 86vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding-top: 60px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: url(../images/events/nunti-new.jpg) center/cover no-repeat;
    filter: contrast(1.02) saturate(1.05)
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(85% 70% at 50% 55%, rgba(15, 36, 66, 0) 60%, rgba(15, 36, 66, .18) 90%)
}

.hero__content {
    position: relative;
    text-align: center;
    z-index: 1;
    padding: 5rem 1rem
}

.hero .display {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .15)
}

.hero .lead {
    color: whitesmoke;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .15)
}

.tags {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 14px 0
}

.tags span {
    background: rgba(255, 255, 255, .85);
    border: 1px solid rgba(15, 36, 66, .20);
    border-radius: 999px;
    padding: .5rem .8rem;
    font-weight: 600
}

.actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px
}

.gallery {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr)
}

.gallery figure {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(15, 36, 66, .10);
    box-shadow: var(--shadow);
    background: #fff
}

.gallery img {
    width: 100%;
    height: 240px;
    object-fit: cover
}

.gallery figcaption {
    padding: .55rem .75rem;
    font-size: .9rem;
    color: var(--muted)
}

@media (max-width:980px) {
    .gallery {
        grid-template-columns: 1fr 1fr
    }

    .gallery img {
        height: 220px
    }
}

@media (max-width:620px) {
    .gallery {
        grid-template-columns: 1fr
    }

    .gallery img {
        height: 210px
    }
}

.features {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, 1fr)
}

.feature {
    background: linear-gradient(180deg, rgba(196, 155, 108, .08), transparent);
    border: 1px solid rgba(15, 36, 66, .12);
    border-radius: 18px;
    padding: 18px;
    text-align: left
}

.feature__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(15, 36, 66, .12);
    display: grid;
    place-items: center;
    font-size: 20px;
    margin-bottom: 10px
}

.feature h3 {
    font-size: 1.05rem;
    color: var(--navy);
    margin: 0 0 4px
}

@media (max-width:980px) {
    .features {
        grid-template-columns: 1fr 1fr
    }
}

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

.plans {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
}

.plan {
    border: 1px solid rgba(15, 36, 66, .10);
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan__media {
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
}

.plan__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: flex-start;
}

.badge {
    display: inline-flex;
    background: rgba(196, 155, 108, .16);
    border: 1px solid rgba(196, 155, 108, .38);
    color: var(--navy);
    border-radius: 999px;
    padding: .25rem .6rem;
    font-size: .78rem;
    font-weight: 700;
    width: auto;
    max-width: max-content;
}

.plan h3 {
    color: var(--navy);
    font-size: 1.35rem;
    margin: .4rem 0 .6rem;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
    flex: 1;
}

.checklist li {
    position: relative;
    padding-left: 26px;
}

.checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .35rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 3px rgba(196, 155, 108, .25);
}

.plan .actions {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

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

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

.services {
    display: grid;
    gap: 18px;
    grid-template-columns: 1.2fr .8fr;
    align-items: start;
  }

.services__left,
.services__right {
    border-radius: 20px
}

.grid-photos {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 10px
}

.grid-photos img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(15, 36, 66, .1);
    box-shadow: var(--shadow)
}

.list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px
}

.list li {
    position: relative;
    padding-left: 22px
}

.list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold)
}

.list--cols {
    columns: 2
}

@media (max-width:980px) {
    .services {
        grid-template-columns: 1fr
    }

    .list--cols {
        columns: 1
    }
}

.services__quote {
    margin-top: 20px;
    padding: 16px 20px;
    position: relative;
    font-style: italic;
    color: var(--ink);
    background: #f8f7f4;
    border-radius: 14px;
    line-height: 1.5;
  }
  
  .services__quote-mark {
    position: absolute;
    top: 10px;
    left: 14px;
    font-size: 34px;
    color: var(--gold);
    opacity: 0.5;
    line-height: 1;
  }
  
  .services__quote p {
    margin: 0;
    padding-left: 36px;
  }
  

.card-title {
    margin: 2px 2px 12px;
    padding-bottom: 8px;
    font-size: clamp(18px, 2.4vw, 22px);
    color: var(--navy);
    border-bottom: 1px solid rgba(15, 36, 66, .10)
}

.policy-section {
    padding: 72px 0
}

.policy-wrap {
    width: min(1200px, 92vw);
    margin: 0 auto
}

.policy-header {
    text-align: center;
    margin-bottom: 12px
}

.policy-eyebrow {
    color: var(--gold-2);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 800;
    font-size: 12px
}

.policy-title {
    color: var(--navy);
    font-size: clamp(28px, 3.6vw, 40px);
    margin: 6px 0
}

.policy-orn {
    height: 3px;
    width: 120px;
    margin: 8px auto 0;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 99px
}

.policy-card {
    background: #fff;
    border: 1px solid rgba(15, 36, 66, .10);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 18px
}

.policy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.policy-block {
    padding: 10px
}

.policy-block h3 {
    margin: 0;
    color: var(--navy)
}

.policy-underline {
    height: 1px;
    background: rgba(15, 36, 66, .10);
    margin: 8px 0 10px
}

.policy-bullet {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px
}

.policy-bullet .dot {
    color: var(--gold-2);
    font-weight: 800;
    margin-right: 6px
}

@media (max-width:820px) {
    .policy-grid {
        grid-template-columns: 1fr
    }
}

.stickybar {
    position: sticky;
    bottom: 20px;
    z-index: 60
}

.sticky-inner.v3 {
    width: min(1100px, 92vw);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: .7rem .9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 36, 66, .10);
    box-shadow: 0 8px 24px rgba(15, 36, 66, .08);
}

.contacts {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.contact-card {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem .8rem;
    background: #fff;
    border: 1px solid rgba(15, 36, 66, .12);
    border-radius: 14px;
    box-shadow: 0 3px 10px rgba(15, 36, 66, .04);
    color: var(--navy);
    font-weight: 600;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease
}

.contact-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(15, 36, 66, .08);
    border-color: rgba(196, 155, 108, .42)
}

.role {
    font-size: 11px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: .18rem .45rem;
    border-radius: 999px;
    background: rgba(196, 155, 108, .16);
    border: 1px solid rgba(196, 155, 108, .35);
    color: var(--navy);
    font-weight: 800
}

.role--primary {
    background: var(--gold);
    border-color: var(--gold-2);
    color: #fff;
    ;
}

.name {
    font-weight: 800
}

.sep {
    opacity: .45
}

.phone {
    font-variant-numeric: tabular-nums
}

.sticky-inner.v3 .btn {
    box-shadow: none
}

@media (max-width:720px) {
    .sticky-inner.v3 {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: .65rem .7rem;
        border-radius: 22px
    }

    .contacts {
        flex-direction: column
    }

    .contact-card {
        flex-direction: column;
        align-items: flex-start;
        gap: .25rem;
        border-radius: 12px;
        padding: .6rem .7rem
    }

    .contact-card .sep {
        display: none
    }

    .sticky-inner.v3 .btn {
        width: 100%;
        text-align: center
    }
}

.hero__content {
    position: relative;
    text-align: center;
    z-index: 1;
    padding: 5rem 1rem;
}

.hero__glass {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: min(1020px, 92vw);
    margin: 0 auto;

    padding: 28px 28px 22px;
    border-radius: 28px;

    background: #00000075;
    backdrop-filter: blur(4px) saturate(115%);
    -webkit-backdrop-filter: blur(8px) saturate(115%);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .28);
}

.hero .display {
    color: #fff;
    text-shadow: 0 3px 18px rgba(0, 0, 0, .35), 0 1px 0 rgba(0, 0, 0, .25);
}

.hero .lead {
    color: #f4f6f8;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}

.hero .tags span {
    background: rgba(255, 255, 255, .90);
    border: 1px solid rgba(15, 36, 66, .20);
}

@media (max-width: 992px) {
    .hero__glass {
        padding: 18px 16px 16px;
        border-radius: 20px;
        background: rgba(15, 24, 38, .38);
        backdrop-filter: blur(10px) saturate(120%);
        -webkit-backdrop-filter: blur(10px) saturate(120%);
        margin-top: 100px;
    }
    .white-header{
        background-color: #f4f6f8;
        padding-bottom: 40px;
    }
}


.ng-feats {
    padding-block: 72px
}


.ng-cards {
    display: grid;
    gap: 16px;
    cursor: pointer;
    padding-top: 10px;
    padding-bottom: 10px;
}

@media (min-width: 992px) {
    .ng-cards {
        grid-auto-flow: column;
        grid-auto-columns: 1fr;
        overflow: hidden;
        user-select: none;
        cursor: grab;
    }

    .ng-cards.is-dragging {
        cursor: grabbing
    }
}

.ng-card {
    position: relative;
    background: url("{{ 'assets/images/texture/noise.png'|theme }}") right bottom / 175px 160px no-repeat,
    linear-gradient(214deg, #F5F1EB 24.66%, #FFFFFF 92.07%);
    border: 1px solid rgba(15, 36, 66, .08);
    border-radius: 16px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 8px 22px rgba(15, 36, 66, .06);
    transition: transform .35s cubic-bezier(.22, .8, .26, 1),
        box-shadow .35s ease, border-color .35s ease;
    will-change: transform;
}

.ng-card:hover {
    transform: translateY(-6px);
    border-color: rgba(196, 155, 108, .30);
}

.ng-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(15, 36, 66, .12);
    box-shadow: 0 6px 18px rgba(15, 36, 66, .08), inset 0 -6px 12px rgba(196, 155, 108, .06);
    font-size: 22px;
    transition: transform .35s ease, box-shadow .35s ease;
}

.ng-card:hover .ng-icon {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 12px 28px rgba(196, 155, 108, .22), inset 0 -8px 14px rgba(196, 155, 108, .12);
}

.ng-title {
    margin: 8px 0 2px;
    font-weight: 800;
    color: var(--navy);
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
}

.ng-title::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
    border-radius: 2px;
}

@media (max-width: 991px) {
    .ng-cards {
        gap: 8px
    }

    .ng-card {
        position: sticky;
        top: calc(64px + 24px);
        z-index: var(--z, 1);
    }
}


@media (prefers-reduced-motion: reduce) {

    .ng-card,
    .ng-card * {
        transition: none !important
    }

    .ng-card {
        transform: none !important
    }
}
.sticky-toggle{ display:none !important; }
.sticky-toggle .toggle-text{
    color: #1f1f1f;
}
.sticky-toggle .toggle-icon{
    color: #1f1f1f;
}

@media (max-width:720px){
  .sticky-toggle{
    display:inline-flex !important;
    align-items:center; justify-content:center;
    padding:.25rem .5rem;
    font-weight:700; font-size:12px; line-height:1;
    border:1px solid rgba(15,36,66,.12);
    background:#fff; border-radius:8px;
    box-shadow:0 2px 6px rgba(15,36,66,.06);
    white-space:nowrap; flex-shrink:0;
    margin-right:.4rem; gap:6px; cursor:pointer;
  }

  .sticky-inner.v3[data-collapsed="true"] .contacts{ display:none; }
  .sticky-inner.v3[data-collapsed="true"]{ gap:.45rem; padding:.4rem .5rem; }
}

@media (min-width:721px){
  #stickyBar[data-collapsed="true"] .contacts{ display:flex !important; }
  #stickyBar[data-collapsed="true"]{ padding:.7rem .9rem; }
}

@media (max-width: 620px) {
    .gallery { 
      --stack-top: calc(64px + 24px); 
      gap: 18px;
      position: relative;
      padding-top: 4px;
    }
  
    .gallery figure {
      position: sticky;
      top: calc(var(--stack-top) + var(--offset, 0px));
      z-index: -1;
      border-radius: 16px;
      box-shadow: var(--shadow);
      transition: box-shadow .25s ease, transform .25s ease;
    }
  
    .gallery figure + figure { margin-top: -6px; }
  
    .gallery figure:is(:hover, :focus-within) {
      transform: translateY(-2px);
      box-shadow: 0 12px 26px rgba(15,36,66,.12);
    }
  }
  
  .signature-experiences {
    background: #faf8f4;
    padding: 80px 0;
  }
  
  .xp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 40px;
  }
  
  .xp-item {
    display: flex;
    gap: 18px;
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 2px 14px rgba(0,0,0,0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  
  .xp-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  }
  
  .xp-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
  }
  
  .xp-body h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #1f1f1f;
  }
  
  .xp-body p {
    margin: 6px 0 0;
    font-size: 0.95rem;
    color: #4d4d4d;
  }


  .ng-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    border-radius: 16px;
  }
  
  .ng-gallery a {
    display: block;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow);
  }
  
  .ng-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .ng-gallery a:hover img {
    transform: scale(1.05);
  }
  
  @media (max-width: 768px) {
    .ng-gallery {
      grid-template-columns: 1fr;
    }
  
    .ng-gallery img {
      height: 200px;
    }
  }
  

  /* layout split */
.cfx-split{
    display:grid;
    grid-template-columns: 1fr 1.2fr;
    gap:24px;
    align-items:start;
  }
  
  .cfx-card{
    background:#fff;
    border:1px solid rgba(15,36,66,.10);
    border-radius:16px;
    box-shadow:var(--shadow);
    padding:24px;
  }
  .cfx-icon{ font-size:28px; margin-bottom:10px; }
  .cfx-title{ margin:0 0 10px; }
  
  /* imagine principală */
  .cfx-media{
    display:flex;
    flex-direction:column;
    gap:16px;
  }
  
  .cfx-main{
    display:block;
    overflow:hidden;
    border-radius:16px;
    border:1px solid rgba(15,36,66,.10);
    box-shadow:var(--shadow);
  }
  .cfx-main img{
    width:100%;
    height:460px; /* era 340px */
    object-fit:cover;
    transition: transform .3s ease;
  }
  .cfx-main:hover img{ transform:scale(1.03); }
  
  /* thumbs */
  .cfx-thumbs{
    display:flex;
    gap:12px;
  }
  .cfx-thumbs a{
    flex:1;
    overflow:hidden;
    border-radius:12px;
    border:1px solid rgba(15,36,66,.10);
  }
  .cfx-thumbs img{
    width:100%;
    height:140px;
    object-fit:cover;
    transition: transform .3s ease;
  }
  .cfx-thumbs a:hover img{ transform:scale(1.05); }
  .cfx-split > .cfx-media:only-child {
    grid-column: 1 / -1;
  }
  /* responsive */
  @media (max-width:900px){
    .cfx-split{ grid-template-columns: 1fr; }
    .cfx-main img{ height:360px; }
  }
  @media (max-width:600px){
    .cfx-thumbs img{ height:110px; }
  }
  
  