/* ===================================================================
   VILA ANGY — Website premium de prezentare
   Paletă: verde pădure · crem · gri cald · maro mat
   =================================================================== */
:root {
  --bg: #f7f2e9;          /* crem cald */
  --bg-alt: #efe7d8;      /* crem mai adânc */
  --ink: #262a20;         /* verde-negru cald */
  --muted: #6f695c;       /* gri cald */
  --forest: #2b3a2d;      /* verde pădure */
  --forest-2: #3d4f3c;    /* verde mediu */
  --brown: #8a7356;       /* maro mat (accent) */
  --brown-dk: #6f5c42;    /* maro închis */
  --sand: #c9b393;        /* nisip cald (accent deschis pe fundal închis) */
  --white: #ffffff;
  --line: #e5ddcc;
  --shadow-sm: 0 10px 30px rgba(38, 42, 32, 0.07);
  --shadow: 0 26px 70px rgba(38, 42, 32, 0.16);
  --radius: 14px;
  --radius-lg: 26px;
  --max: 1220px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.8;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { width: min(var(--max), 90%); margin-inline: auto; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.1; letter-spacing: .3px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--forest); color: #f4efe4; padding: 15px 34px;
  border-radius: 50px; font-weight: 500; letter-spacing: .8px;
  font-size: .88rem; cursor: pointer; border: none; font-family: inherit;
  transition: transform .35s var(--ease), background .3s ease, box-shadow .35s ease;
  box-shadow: 0 12px 30px rgba(43, 58, 45, 0.26);
}
.btn:hover { background: var(--brown); transform: translateY(-3px); box-shadow: 0 18px 38px rgba(138,115,86,.36); }
.btn--ghost { background: transparent; border: 1.5px solid rgba(255,255,255,.7); color: #fff; box-shadow: none; }
.btn--ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; }
.btn--brown { background: var(--brown); box-shadow: 0 12px 30px rgba(138,115,86,.3); }
.btn--brown:hover { background: var(--brown-dk); }
.btn--wa { background: #1f8f5f; box-shadow: 0 12px 30px rgba(31,143,95,.32); }
.btn--wa:hover { background: #187a50; }
.btn--small { padding: 10px 22px; font-size: .8rem; box-shadow: none; }
.btn--full { width: 100%; padding: 17px; }
.btn svg, .btn .ico { width: 17px; height: 17px; }

/* ===== ICON SYSTEM (SVG line, unitar) ===== */
.ico { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.ico--lg { width: 34px; height: 34px; }
.ico[fill="currentColor"] { stroke: none; }

/* ===== ACCESSIBLE FOCUS ===== */
:focus-visible { outline: 3px solid var(--brown); outline-offset: 3px; border-radius: 4px; }
.section--dark :focus-visible, .hero :focus-visible, .footer :focus-visible { outline-color: var(--sand); }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transition: background .4s ease, box-shadow .4s ease, padding .4s ease;
  padding: 22px 0;
}
.nav.scrolled { background: rgba(247,242,233,.94); backdrop-filter: blur(14px); box-shadow: 0 6px 26px rgba(0,0,0,.06); padding: 12px 0; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo { font-family: 'Cormorant Garamond', serif; font-size: 1.85rem; font-weight: 700; color: #fff; transition: color .35s; letter-spacing: .5px; }
.nav__logo span { color: var(--sand); }
.nav.scrolled .nav__logo { color: var(--forest); }
.nav.scrolled .nav__logo span { color: var(--brown); }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { color: #fff; font-size: .86rem; font-weight: 400; letter-spacing: .5px; transition: color .25s; }
.nav__links a:hover { color: var(--sand); }
.nav.scrolled .nav__links a { color: var(--ink); }
.nav.scrolled .nav__links a:hover { color: var(--brown); }
.nav__links .btn { color: #f4efe4; }
.nav.scrolled .nav__links .btn { color: #f4efe4; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 61; }
.nav__toggle span { width: 26px; height: 2px; background: #fff; transition: transform .3s, opacity .2s; border-radius: 2px; }
.nav.scrolled .nav__toggle span { background: var(--ink); }
.nav__toggle.is-open span { background: var(--ink); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__backdrop { position: fixed; inset: 0; background: rgba(20,22,16,.5); z-index: 58; opacity: 0; transition: opacity .35s; }
.nav__backdrop.show { opacity: 1; }
body.nav-open { overflow: hidden; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; text-align: center; color: #fff; overflow: hidden; }
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.09); transition: opacity 1.8s ease, transform 8s ease;
}
.hero__slide.is-active { opacity: 1; transform: scale(1); }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(rgba(28,30,22,.5), rgba(28,32,22,.68)); z-index: 1; }
/* scrim sub navbar (stare ne-derulată) pentru contrast constant */
.nav:not(.scrolled)::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 160%; background: linear-gradient(rgba(20,22,16,.42), transparent); pointer-events: none; z-index: -1; }
.hero__content { position: relative; z-index: 2; margin-inline: auto; max-width: 860px; padding-top: 46px; }
.hero__eyebrow { letter-spacing: 4px; text-transform: uppercase; font-size: .78rem; margin-bottom: 18px; opacity: .94; font-weight: 400; }
.hero__title { font-size: clamp(3.4rem, 10vw, 7rem); font-weight: 700; text-shadow: 0 4px 34px rgba(0,0,0,.34); }
.hero__slogan { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(1.3rem, 3.2vw, 2rem); font-weight: 500; margin-top: 8px; color: #f0e8d6; text-shadow: 0 2px 20px rgba(0,0,0,.4); }
.hero__subtitle { font-size: clamp(1rem, 2.3vw, 1.3rem); font-weight: 300; margin: 22px auto 40px; max-width: 620px; opacity: .96; }
.hero__actions { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); color: #fff; z-index: 2; animation: bounce 2s infinite; opacity: .85; }
.hero__scroll .ico { width: 28px; height: 28px; }
@keyframes bounce { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,10px)} }

/* ===== SECTIONS ===== */
.section { padding: 130px 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--forest); color: #e8e3d6; }
.eyebrow { color: var(--brown); letter-spacing: 3.5px; text-transform: uppercase; font-size: .76rem; font-weight: 600; margin-bottom: 14px; }
.section--dark .eyebrow, .eyebrow--light { color: var(--sand); }
.section__title { font-size: clamp(2.4rem, 5vw, 3.6rem); margin-bottom: 22px; color: var(--forest); }
.section--dark .section__title { color: #fff; }
.section__head { max-width: 720px; margin: 0 auto 70px; text-align: center; }
.lead { font-size: 1.14rem; color: var(--muted); font-weight: 300; }
.section--dark .lead { color: #cdc7b8; }
.lead.center { margin-inline: auto; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }

/* ===== ABOUT ===== */
.about__media { position: relative; }
.about__img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); object-fit: cover; aspect-ratio: 4/3; }
.about__img--float {
  position: absolute; right: -30px; bottom: -40px; width: 47%; aspect-ratio: 3/4;
  border: 7px solid var(--bg); box-shadow: var(--shadow); border-radius: 20px;
}
.about__badge {
  position: absolute; top: 24px; left: -18px; background: var(--forest); color: #f2ecdd;
  padding: 15px 24px; border-radius: 14px; box-shadow: var(--shadow-sm); line-height: 1.35;
  font-size: .78rem; letter-spacing: .5px;
}
.about__badge strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: #fff; }
.about p + p { margin-top: 16px; }
.stats { display: flex; gap: 46px; margin: 38px 0 32px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat__num { font-family: 'Cormorant Garamond', serif; font-size: 2.7rem; font-weight: 700; color: var(--brown); line-height: 1; }
.stat__label { font-size: .8rem; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-top: 8px; }

/* ===== HIGHLIGHTS ===== */
.highlights { background: var(--forest); color: #e8e3d6; }
.highlights__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.highlight { padding: 52px 26px; text-align: center; border-right: 1px solid rgba(255,255,255,.1); }
.highlight:last-child { border-right: none; }
.highlight .ico { color: var(--sand); margin: 0 auto 16px; }
.highlight h4 { font-size: 1.45rem; color: #fff; margin-bottom: 6px; }
.highlight p { font-size: .88rem; color: #b8b2a3; }

/* ===== EXPERIENCE (emotional band) ===== */
.exp { position: relative; padding: 150px 0; color: #fff; text-align: center; background-size: cover; background-position: center; }
@media (min-width: 1025px) and (hover: hover) and (pointer: fine) { .exp { background-attachment: fixed; } }
.exp::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(28,32,22,.55), rgba(28,32,22,.68)); }
.exp__inner { position: relative; z-index: 2; max-width: 760px; margin-inline: auto; }
.exp__title { font-size: clamp(2.2rem, 5vw, 3.4rem); color: #fff; margin-bottom: 22px; }
.exp__text { font-size: 1.16rem; font-weight: 300; color: #ece7db; }
.exp__text + .exp__text { margin-top: 16px; }

/* ===== ROOMS ===== */
.rooms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.room { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s ease; display: flex; flex-direction: column; }
.room:hover { transform: translateY(-9px); box-shadow: var(--shadow); }
.room__img { width: 100%; height: 260px; background-size: cover; background-position: center; border: none; cursor: zoom-in; position: relative; }
.room__img::after { content: ""; position: absolute; right: 14px; bottom: 14px; width: 38px; height: 38px; background: rgba(0,0,0,.42) no-repeat center / 18px 18px; border-radius: 50%; opacity: 0; transition: opacity .25s; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 3h6v6M9 21H3v-6M21 3l-7 7M3 21l7-7'/%3E%3C/svg%3E"); }
.room__img:hover::after { opacity: 1; }
@media (hover: none) { .room__img::after { opacity: .85; } }
.room__body { padding: 30px; display: flex; flex-direction: column; flex: 1; }
.room__body h3 { font-size: 1.75rem; margin-bottom: 8px; color: var(--forest); }
.room__body p { color: var(--muted); font-size: .95rem; margin-bottom: 18px; }
.room__feat { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.room__feat li { font-size: .74rem; letter-spacing: .4px; background: var(--bg-alt); color: var(--forest-2); padding: 6px 13px; border-radius: 50px; }
.room__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; margin-top: auto; gap: 12px 12px; }
.price { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--brown); white-space: normal; }
.price small { font-size: .7rem; color: var(--muted); font-weight: 400; letter-spacing: .3px; }
.rooms__note { text-align: center; color: var(--muted); font-size: .82rem; margin-top: 30px; font-style: italic; }

/* whole-villa banner */
.villa-deal { margin-top: 34px; background: var(--forest); color: #eee6d5; border-radius: var(--radius-lg); padding: 40px 46px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; box-shadow: var(--shadow-sm); }
.villa-deal__t h3 { font-size: 1.9rem; color: #fff; margin-bottom: 6px; }
.villa-deal__t p { color: #c8c2b3; font-size: .96rem; }
.villa-deal__price { text-align: right; }
.villa-deal__price .big { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 700; color: var(--sand); line-height: 1; }
.villa-deal__price small { display: block; color: #bdb7a8; font-size: .82rem; margin-top: 4px; }
.villa-deal__tiers { display: flex; gap: 22px; margin-top: 8px; justify-content: flex-end; }
.villa-deal__tiers span { font-size: .8rem; color: #d8d2c3; }
.villa-deal__tiers b { color: #fff; font-weight: 500; }

/* ===== FEATURES ===== */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature { background: var(--white); padding: 36px 26px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease); border: 1px solid var(--line); }
.feature:hover { transform: translateY(-7px); }
.feature .ico { color: var(--brown); margin: 0 auto 16px; }
.feature h4 { font-size: 1.3rem; margin-bottom: 6px; color: var(--forest); }
.feature p { color: var(--muted); font-size: .88rem; }

/* ===== GALLERY ===== */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.filter {
  font-family: inherit; font-size: .84rem; letter-spacing: .4px; padding: 10px 21px; border-radius: 50px;
  border: 1px solid var(--line); background: var(--white); color: var(--muted); cursor: pointer; transition: .25s;
}
.filter:hover { border-color: var(--brown); color: var(--brown); }
.filter.is-active { background: var(--forest); border-color: var(--forest); color: #fff; }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.g-item { margin: 0; position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); cursor: zoom-in; transition: transform .4s var(--ease); }
.g-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform .7s ease; }
.g-item:hover img { transform: scale(1.07); }
.g-item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 28px 16px 14px; font-size: .8rem; color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,.74)); opacity: 0; transform: translateY(10px); transition: .3s;
}
.g-item:hover figcaption { opacity: 1; transform: none; }
.g-item.is-hidden { display: none; }

/* ===== ATRACTII (carduri text premium) ===== */
.attractions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.attr-card { position: relative; display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s ease, border-color .3s; }
.attr-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--brown); }
.attr-card__ico { width: 46px; height: 46px; border-radius: 12px; background: var(--bg-alt); color: var(--brown); display: grid; place-items: center; margin-bottom: 18px; }
.attr-card__ico .ico { width: 24px; height: 24px; }
.attr-card h4 { font-size: 1.45rem; color: var(--forest); margin-bottom: 8px; }
.attr-card p { font-size: .92rem; color: var(--muted); margin-bottom: 18px; }
.attr-card__link { margin-top: auto; font-size: .82rem; letter-spacing: .5px; color: var(--brown); font-weight: 500; transition: gap .2s; }
.attr-card:hover .attr-card__link { color: var(--brown-dk); }
.attractions__more { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 36px; }
.attractions__more li { background: var(--white); border: 1px solid var(--line); color: var(--forest-2); font-size: .82rem; padding: 9px 18px; border-radius: 50px; }

/* ===== ANOTIMPURI ===== */
.seasons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.season { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: 34px 26px; transition: transform .35s var(--ease), background .3s; }
.season:hover { transform: translateY(-6px); background: rgba(255,255,255,.09); }
.season .ico { color: var(--sand); margin-bottom: 16px; }
.season h4 { font-size: 1.5rem; color: #fff; margin-bottom: 12px; }
.season ul { display: flex; flex-direction: column; gap: 7px; }
.season li { font-size: .9rem; color: #cfc9ba; padding-left: 18px; position: relative; }
.season li::before { content: "—"; position: absolute; left: 0; color: var(--sand); }

/* ===== LOCATIE ===== */
.locatie__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.locatie__map { width: 100%; height: clamp(340px, 48vh, 460px); border: 0; display: block; }
.locatie__list { margin: 26px 0 32px; display: flex; flex-direction: column; gap: 15px; }
.locatie__list li { display: flex; gap: 12px; align-items: center; color: var(--ink); }
.locatie__list .ico { color: var(--brown); }

/* ===== REVIEWS ===== */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13); padding: 36px; border-radius: var(--radius); }
.review__stars { color: var(--sand); letter-spacing: 3px; margin-bottom: 18px; }
.review p { font-style: italic; color: #e4dfd2; font-size: 1rem; }
.review footer { margin-top: 20px; font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: #fff; font-style: normal; }
.reviews__note { text-align: center; color: #9c968a; font-size: .8rem; margin-top: 28px; font-style: italic; }

/* ===== CONTACT ===== */
.contact__list { margin: 30px 0; display: flex; flex-direction: column; gap: 20px; }
.contact__list li { display: flex; gap: 14px; align-items: flex-start; }
.contact__list .ico { color: var(--brown); margin-top: 3px; width: 22px; height: 22px; }
.contact__list strong { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--forest); }
.contact__list a:hover { color: var(--brown); }
.contact__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.socials { display: flex; gap: 14px; margin-top: 22px; }
.socials a { font-size: .8rem; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid transparent; padding-bottom: 2px; transition: .25s; }
.socials a:hover { color: var(--brown); border-color: var(--brown); }

.form { background: var(--white); padding: 42px; border-radius: var(--radius-lg); box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 16px; }
.form__title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--forest); margin-bottom: 4px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: flex; flex-direction: column; font-size: .8rem; color: var(--muted); gap: 6px; letter-spacing: .5px; }
.form input, .form textarea, .form select {
  font-family: inherit; font-size: .95rem; padding: 13px 15px; border: 1px solid var(--line);
  border-radius: 10px; background: var(--bg); color: var(--ink); transition: border .2s, box-shadow .2s;
}
.form input:focus, .form textarea:focus, .form select:focus { outline: none; border-color: var(--brown); box-shadow: 0 0 0 3px rgba(138,115,86,.15); }
.form__note { color: var(--forest-2); font-weight: 500; text-align: center; }
.form__hint { font-size: .78rem; color: var(--muted); text-align: center; }

/* ===== FOOTER (premium) ===== */
.footer { background: #20241b; color: #b9b3a4; padding: 74px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; }
.footer__logo { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: #fff; display: block; margin-bottom: 12px; }
.footer__logo span { color: var(--sand); }
.footer__brand p { font-size: .9rem; line-height: 1.7; max-width: 300px; }
.footer__slogan { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--sand); font-size: 1.05rem; margin-top: 14px; }
.footer h5 { font-family: 'Jost', sans-serif; font-size: .8rem; letter-spacing: 2px; text-transform: uppercase; color: #fff; margin-bottom: 18px; font-weight: 500; }
.footer__col a, .footer__col li { font-size: .9rem; color: #c1bbac; display: block; margin-bottom: 11px; transition: color .2s; }
.footer__col a:hover { color: var(--sand); }
.footer__col li { display: flex; gap: 10px; align-items: center; }
.footer__col li a { margin: 0; }
.footer__col .ico { color: var(--sand); width: 17px; height: 17px; }
.footer__social { display: flex; gap: 12px; margin-top: 4px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18);
  display: grid; place-items: center; color: #d5cfc0; transition: .25s; margin: 0;
}
.footer__social a:hover { background: var(--brown); border-color: var(--brown); color: #fff; }
.footer__social svg { width: 18px; height: 18px; }
.footer__copy { text-align: center; border-top: 1px solid rgba(255,255,255,.1); padding-top: 26px; margin-top: 54px; font-size: .82rem; color: #a29c8f; }
.footer__copy a { color: #a8a292; }
.footer__copy a:hover { color: var(--sand); }

/* ===== LIGHTBOX ===== */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(16,18,12,.94); display: none; align-items: center; justify-content: center; padding: 30px; }
.lightbox.is-open { display: flex; }
.lightbox__fig { max-width: 92vw; max-height: 88vh; text-align: center; }
.lightbox__fig img { max-width: 92vw; max-height: 80vh; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,.5); object-fit: contain; }
.lightbox__fig figcaption { color: #e6e0d2; margin-top: 16px; font-size: .95rem; letter-spacing: .4px; }
.lightbox__close { position: absolute; top: 22px; right: 28px; background: none; border: none; color: #fff; font-size: 1.8rem; cursor: pointer; line-height: 1; opacity: .8; transition: opacity .2s; }
.lightbox__close:hover { opacity: 1; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.1); border: none; color: #fff; width: 56px; height: 56px; border-radius: 50%; font-size: 2rem; cursor: pointer; transition: background .2s; display: grid; place-items: center; }
.lightbox__nav:hover { background: rgba(255,255,255,.22); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
.lightbox__close .ico { width: 24px; height: 24px; }
.lightbox__nav .ico { width: 26px; height: 26px; }

/* ===== FLOATING WHATSAPP ===== */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 55;
  display: inline-flex; align-items: center; gap: 10px;
  background: #1f8f5f; color: #fff; padding: 13px 20px 13px 15px; border-radius: 50px;
  font-size: .9rem; font-weight: 500; letter-spacing: .4px;
  box-shadow: 0 14px 34px rgba(31,143,95,.45); transition: transform .35s var(--ease), background .25s;
}
.wa-float svg { width: 24px; height: 24px; }
.wa-float:hover { background: #187a50; transform: translateY(-3px); }
.wa-float__txt { white-space: nowrap; }

/* ===== REVEAL ANIM ===== */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1050px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .highlights__grid { grid-template-columns: repeat(2, 1fr); }
  .highlight:nth-child(2) { border-right: none; }
  .highlight { border-bottom: 1px solid rgba(255,255,255,.1); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .attractions { grid-template-columns: repeat(2, 1fr); }
  .seasons { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; gap: 64px; }
  .about__media { max-width: 540px; margin-inline: auto; }
  .rooms { grid-template-columns: 1fr 1fr; }
  .reviews { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .exp { background-attachment: scroll; }
  .villa-deal { flex-direction: column; align-items: flex-start; text-align: left; }
  .villa-deal__price { text-align: left; }
  .villa-deal__tiers { justify-content: flex-start; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: 80%; max-width: 340px;
    background: var(--bg); flex-direction: column; justify-content: center;
    gap: 26px; transform: translateX(100%); transition: transform .4s var(--ease); box-shadow: var(--shadow);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { color: var(--ink) !important; font-size: 1.15rem; }
  .nav.scrolled .nav__links .btn, .nav__links .btn { color: #f4efe4 !important; }
}
@media (max-width: 640px) {
  .section { padding: 84px 0; }
  .exp { padding: 100px 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .rooms, .features, .attractions, .seasons { grid-template-columns: 1fr; }
  .room, .feature, .attr-card, .season { max-width: 440px; margin-inline: auto; width: 100%; }
  .stats { gap: 30px; }
  .form__row { grid-template-columns: 1fr; }
  .about__img--float { width: 44%; right: -8px; bottom: -22px; }
  .form { padding: 30px; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .wa-float__txt { display: none; }
  .wa-float { padding: 14px; }
  .lightbox__nav { width: 46px; height: 46px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
}
@media (max-width: 380px) {
  .gallery { grid-template-columns: 1fr; }
  .villa-deal { padding: 30px 26px; }
  .hero__eyebrow { letter-spacing: 2px; font-size: .72rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__slide.is-active { transform: none; }
}

/* Butonul de rezervare ramane intreg si coboara sub pret cand textul e lung */
.room__foot .btn { flex: 0 0 auto; }
.room__foot .price { flex: 1 1 auto; min-width: 0; }
