/* ==========================================================================
   Casa Anuta — Cazare în Breaza
   Design: mountain-guesthouse, forest green + warm cream + brass accent
   ========================================================================== */

:root {
  --forest:      #12402c;
  --forest-2:    #1c5b3e;
  --forest-soft: #2b6b4c;
  --cream:       #f8f4ec;
  --cream-2:     #f1ead9;
  --sand:        #e6dcc6;
  --ink:         #1a221e;
  --ink-soft:    #43514a;
  --muted:       #6d7a72;
  --gold:        #c39a4b;
  --gold-2:      #b98a34;
  --white:       #ffffff;
  --line:        rgba(18, 64, 44, .12);

  --shadow-sm: 0 2px 10px rgba(20, 45, 33, .08);
  --shadow-md: 0 14px 40px rgba(20, 45, 33, .14);
  --shadow-lg: 0 30px 70px rgba(12, 35, 24, .30);

  --radius:    18px;
  --radius-sm: 12px;

  --maxw: 1200px;
  --ease: cubic-bezier(.22, .61, .36, 1);

  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
}

/* ---- reset-ish ---- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; scroll-padding-top: 88px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -.01em;
}

/* ---- layout helpers ---- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 130px) 0; }
.section--tint { background: var(--cream-2); }
.section--forest { background: var(--forest); color: var(--cream); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .8rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold-2);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--gold); opacity: .8; }
.section--forest .eyebrow { color: var(--gold); }

.section-head { max-width: 640px; margin-bottom: clamp(38px, 5vw, 64px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; margin: 18px 0 0; }
.section--forest .section-head p { color: rgba(248,244,236,.78); }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px; border: 1.5px solid transparent;
  font-weight: 600; font-size: .96rem; letter-spacing: .01em;
  transition: transform .35s var(--ease), background .3s, color .3s, box-shadow .3s, border-color .3s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn--gold { background: var(--gold); color: #23200f; box-shadow: 0 10px 26px rgba(195,154,75,.4); }
.btn--gold:hover { background: var(--gold-2); transform: translateY(-3px); box-shadow: 0 16px 34px rgba(195,154,75,.5); }
.btn--ghost { border-color: rgba(255,255,255,.55); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; transform: translateY(-3px); }
.btn--dark { background: var(--forest); color: var(--cream); }
.btn--dark:hover { background: var(--forest-2); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--outline { border-color: var(--forest); color: var(--forest); }
.btn--outline:hover { background: var(--forest); color: var(--cream); transform: translateY(-3px); }

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 20px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s;
}
.header.scrolled {
  background: rgba(248,244,236,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; color: #fff; transition: color .4s; }
.header.scrolled .brand { color: var(--forest); }
.brand__mark {
  width: 42px; height: 42px; border-radius: 12px; flex: 0 0 auto;
  display: grid; place-items: center;
  background: var(--gold); color: #22200f;
  font-family: var(--font-head); font-weight: 600; font-size: 1.35rem;
  box-shadow: var(--shadow-sm);
}
.brand__name { font-family: var(--font-head); font-size: 1.3rem; line-height: 1; }
.brand__sub { display: block; font-family: var(--font-body); font-size: .68rem; letter-spacing: .28em; text-transform: uppercase; opacity: .75; margin-top: 4px; }

.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  position: relative; padding: 9px 15px; border-radius: 999px;
  white-space: nowrap;
  font-size: .93rem; font-weight: 500; color: rgba(255,255,255,.9);
  transition: color .3s, background .3s;
}
.header.scrolled .nav__links a { color: var(--ink-soft); }
.nav__links a::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 4px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease); border-radius: 2px;
}
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }
.nav__links a:hover { color: #fff; }
.header.scrolled .nav__links a:hover { color: var(--forest); }

.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .92rem;
  color: #fff; transition: color .4s; white-space: nowrap;
}
.header.scrolled .nav__phone { color: var(--forest); }
.nav__phone svg { width: 17px; height: 17px; color: var(--gold); }
.nav__cta .btn { padding: 11px 22px; }

.nav__toggle { display: none; background: none; border: 0; padding: 8px; color: #fff; }
.header.scrolled .nav__toggle { color: var(--forest); }
.nav__toggle svg { width: 28px; height: 28px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  color: #fff; padding: 130px 0 70px; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(9,32,21,.86) 0%, rgba(9,32,21,.55) 45%, rgba(9,32,21,.28) 100%),
    linear-gradient(0deg, rgba(9,28,19,.65), rgba(9,28,19,0) 40%);
}
.hero__inner { max-width: 680px; }
.hero__tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(6px); font-size: .82rem; font-weight: 500; letter-spacing: .02em;
  margin-bottom: 26px;
}
.hero__tag .dot { width: 8px; height: 8px; border-radius: 50%; background: #7ad39b; box-shadow: 0 0 0 4px rgba(122,211,155,.25); }
.hero h1 { font-size: clamp(2.7rem, 6.4vw, 5rem); font-weight: 500; }
.hero h1 em { font-style: italic; color: #f0d79a; }
.hero__lead { font-size: clamp(1.05rem, 2.1vw, 1.3rem); color: rgba(255,255,255,.9); margin: 24px 0 36px; max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__facts {
  display: flex; flex-wrap: wrap; gap: 30px 44px; margin-top: 52px;
  padding-top: 30px; border-top: 1px solid rgba(255,255,255,.2);
}
.hero__fact .n { font-family: var(--font-head); font-size: 1.9rem; line-height: 1; color: #f0d79a; }
.hero__fact .l { font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.72); margin-top: 6px; }
.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.7);
}
.hero__scroll .mouse { width: 22px; height: 36px; border: 2px solid rgba(255,255,255,.55); border-radius: 12px; position: relative; }
.hero__scroll .mouse::after {
  content: ""; position: absolute; top: 6px; left: 50%; width: 3px; height: 7px; border-radius: 2px;
  background: #fff; transform: translateX(-50%); animation: scrolldot 1.8s infinite;
}
@keyframes scrolldot { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 80%{opacity:0;transform:translate(-50%,10px)} }

/* ==========================================================================
   Highlights bar
   ========================================================================== */
.highlights { background: var(--forest); color: var(--cream); }
.highlights__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.hl {
  display: flex; align-items: center; gap: 16px; padding: 34px 26px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.hl:last-child { border-right: 0; }
.hl svg { width: 30px; height: 30px; color: var(--gold); flex: 0 0 auto; }
.hl b { font-family: var(--font-head); font-size: 1.15rem; display: block; }
.hl span { font-size: .86rem; color: rgba(248,244,236,.72); }

/* ==========================================================================
   About
   ========================================================================== */
.about__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.about__body p { color: var(--ink-soft); font-size: 1.06rem; }
.about__body p + p { margin-top: 18px; }
.about__list { list-style: none; padding: 0; margin: 30px 0 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; }
.about__list li { display: flex; align-items: center; gap: 11px; font-weight: 500; }
.about__list svg { width: 20px; height: 20px; color: var(--forest-2); flex: 0 0 auto; }

.about__media { position: relative; }
.about__media img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.about__media .m1 { aspect-ratio: 4/5; object-fit: cover; }
.about__media .m2 {
  position: absolute; right: -22px; bottom: -34px; width: 52%;
  aspect-ratio: 1/1; object-fit: cover; border: 6px solid var(--cream);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-lg);
}
.about__badge {
  position: absolute; left: -26px; top: 30px; background: var(--gold); color: #23200f;
  border-radius: 14px; padding: 16px 20px; box-shadow: var(--shadow-md); text-align: center;
}
.about__badge b { font-family: var(--font-head); font-size: 1.7rem; display: block; line-height: 1; }
.about__badge span { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; }

/* ==========================================================================
   Facilities
   ========================================================================== */
.facilities__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.facility {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.facility:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.facility__icon {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center;
  background: var(--cream-2); color: var(--forest-2); margin-bottom: 22px;
  transition: background .4s, color .4s;
}
.facility:hover .facility__icon { background: var(--forest); color: var(--gold); }
.facility__icon svg { width: 28px; height: 28px; }
.facility h3 { font-size: 1.28rem; margin-bottom: 10px; }
.facility p { color: var(--muted); font-size: .96rem; margin: 0; }

/* ==========================================================================
   Rooms
   ========================================================================== */
.rooms__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.room {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s; display: flex; flex-direction: column;
}
.room:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.room__media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.room__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.room:hover .room__media img { transform: scale(1.06); }
.offer-badge {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 18px;
  padding: 10px 20px; border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold));
  color: #2a1e07; font-weight: 600; font-size: .95rem;
  box-shadow: 0 10px 26px rgba(195,154,75,.35);
}
.offer-badge svg { width: 18px; height: 18px; }
.offer-badge b { font-weight: 700; }

.room__price {
  position: absolute; top: 16px; right: 16px; background: rgba(18,64,44,.92);
  color: #fff; padding: 9px 15px; border-radius: 999px; font-weight: 600; font-size: .92rem;
  backdrop-filter: blur(4px);
}
.room__price b { color: #f0d79a; font-family: var(--font-head); font-weight: 500; }
.room__body { padding: 28px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.room__body h3 { font-size: 1.55rem; }
.room__body > p { color: var(--muted); margin: 10px 0 20px; }
.room__specs { list-style: none; padding: 0; margin: 0 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.room__specs li { display: flex; align-items: center; gap: 9px; font-size: .92rem; color: var(--ink-soft); }
.room__specs svg { width: 18px; height: 18px; color: var(--forest-2); flex: 0 0 auto; }
.room__foot { margin-top: auto; display: flex; gap: 12px; }
.room__foot .btn { flex: 1; padding: 13px 18px; }

.rooms__note {
  margin-top: 30px; display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 20px; border-radius: var(--radius); text-align: center;
  background: linear-gradient(100deg, var(--forest), var(--forest-2)); color: var(--cream);
  font-size: 1.02rem;
}
.rooms__note svg { width: 26px; height: 26px; color: var(--gold); flex: 0 0 auto; }
.rooms__note b { color: #f0d79a; }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px;
}
.gitem {
  position: relative; overflow: hidden; border-radius: 14px; cursor: pointer;
  background: var(--sand);
}
.gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gitem:hover img { transform: scale(1.08); }
.gitem::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(12,35,24,.5), rgba(12,35,24,0) 55%);
  opacity: 0; transition: opacity .4s;
}
.gitem:hover::after { opacity: 1; }
.gitem__zoom {
  position: absolute; right: 14px; bottom: 14px; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.9); color: var(--forest); display: grid; place-items: center;
  transform: translateY(10px) scale(.8); opacity: 0; transition: .4s var(--ease); z-index: 2;
}
.gitem:hover .gitem__zoom { transform: none; opacity: 1; }
.gitem__zoom svg { width: 18px; height: 18px; }
.gitem.tall { grid-row: span 2; }
.gitem.wide { grid-column: span 2; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 30px;
  background: rgba(9,24,16,.94); backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; animation: fade .3s ease; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox img { max-width: 90vw; max-height: 82vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lb-btn {
  position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.3);
  color: #fff; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  transition: background .3s, transform .3s;
}
.lb-btn:hover { background: rgba(255,255,255,.22); transform: scale(1.06); }
.lb-btn svg { width: 24px; height: 24px; }
.lb-close { top: 26px; right: 26px; }
.lb-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 26px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.06); }
.lb-count { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.8); font-size: .9rem; letter-spacing: .05em; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.tst__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.tst {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 32px 30px; position: relative;
}
.tst__quote { font-family: var(--font-head); font-size: 4rem; line-height: .6; color: var(--gold); opacity: .5; height: 30px; }
.tst__stars { display: flex; gap: 3px; margin: 4px 0 16px; }
.tst__stars svg { width: 17px; height: 17px; color: #f0c04e; }
.tst p { color: rgba(248,244,236,.9); font-size: 1rem; margin: 0 0 22px; }
.tst__by { display: flex; align-items: center; gap: 13px; }
.tst__av {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: var(--gold); color: #23200f; font-family: var(--font-head); font-size: 1.15rem; font-weight: 600;
}
.tst__by b { display: block; font-size: .98rem; }
.tst__by span { font-size: .82rem; color: rgba(248,244,236,.6); }

/* ==========================================================================
   Location + Contact
   ========================================================================== */
.contact__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(34px, 5vw, 64px); align-items: start; }
.contact__cards { display: grid; gap: 16px; }
.ccard {
  display: flex; gap: 18px; align-items: flex-start; padding: 24px 26px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.ccard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ccard { min-width: 0; }
.ccard > :last-child { min-width: 0; flex: 1; }
.ccard a, .ccard p { overflow-wrap: anywhere; }
.ccard__icon { width: 50px; height: 50px; flex: 0 0 auto; border-radius: 13px; display: grid; place-items: center; background: var(--cream-2); color: var(--forest-2); }
.ccard__icon svg { width: 24px; height: 24px; }
.ccard h4 { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-family: var(--font-body); font-weight: 600; margin-bottom: 5px; }
.ccard a, .ccard p { font-size: 1.12rem; color: var(--ink); margin: 0; font-weight: 500; }
.ccard a:hover { color: var(--forest-2); }

.contact__map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); min-height: 420px; height: 100%; }
.contact__map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: saturate(1.05); }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta {
  position: relative; overflow: hidden; color: #fff; text-align: center;
  padding: clamp(70px, 10vw, 130px) 0;
}
.cta__bg { position: absolute; inset: 0; z-index: -2; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9,32,21,.9), rgba(9,32,21,.72)); }
.cta h2 { font-size: clamp(2.1rem, 5vw, 3.6rem); max-width: 760px; margin: 0 auto; }
.cta p { color: rgba(255,255,255,.85); font-size: 1.15rem; margin: 20px auto 36px; max-width: 560px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: #0d2f20; color: rgba(248,244,236,.72); padding: 70px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer .brand { color: #fff; margin-bottom: 18px; }
.footer__about { font-size: .95rem; max-width: 300px; }
.footer h5 { color: #fff; font-family: var(--font-body); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; margin: 0 0 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a { font-size: .95rem; transition: color .3s; }
.footer ul a:hover { color: var(--gold); }
.footer__contact li { display: flex; gap: 10px; font-size: .95rem; align-items: flex-start; }
.footer__contact svg { width: 18px; height: 18px; color: var(--gold); flex: 0 0 auto; margin-top: 3px; }
.footer__bottom {
  margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .85rem;
}
.footer__bottom a:hover { color: var(--gold); }

/* ==========================================================================
   Rating (Booking score)
   ========================================================================== */
.rating__wrap { display: grid; grid-template-columns: 300px 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.rating__score { text-align: center; }
.rating__badge {
  display: inline-flex; align-items: baseline; gap: 6px;
  background: var(--gold); color: #23200f; border-radius: 16px 16px 16px 4px;
  padding: 14px 22px; font-family: var(--font-head); box-shadow: var(--shadow-md);
}
.rating__badge b { font-size: 3rem; line-height: 1; }
.rating__badge span { font-size: 1.1rem; }
.rating__label { font-family: var(--font-head); font-size: 1.6rem; margin: 18px 0 4px; }
.rating__count { color: rgba(248,244,236,.7); font-size: .95rem; }
.rating__stars { display: flex; gap: 3px; justify-content: center; margin-top: 12px; }
.rating__stars svg { width: 20px; height: 20px; color: #f0c04e; }
.rating__bars { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 44px; }
.ratingbar__top { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: .95rem; }
.ratingbar__top b { font-family: var(--font-head); color: #f0d79a; }
.ratingbar__track { height: 7px; border-radius: 4px; background: rgba(255,255,255,.15); overflow: hidden; }
.ratingbar__fill { display: block; height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--gold-2), #f0d79a); transform: scaleX(0); transform-origin: left center; transition: transform 1.1s var(--ease); }
.ratingbar__fill.fill { transform: scaleX(1); }

/* ==========================================================================
   Common spaces feature band
   ========================================================================== */
.spaces__row { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.spaces__row + .spaces__row { margin-top: clamp(40px, 6vw, 80px); }
.spaces__row--rev .spaces__media { order: 2; }
.spaces__media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.spaces__media img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform .8s var(--ease); }
.spaces__media:hover img { transform: scale(1.05); }
.spaces__media--stack { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; box-shadow: none; overflow: visible; }
.spaces__media--stack img { border-radius: var(--radius); box-shadow: var(--shadow-md); aspect-ratio: 1/1; }
.spaces__body h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }
.spaces__body p { color: var(--ink-soft); font-size: 1.05rem; margin: 0 0 22px; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 15px; border-radius: 999px; background: var(--cream-2);
  border: 1px solid var(--line); font-size: .88rem; font-weight: 500;
}
.tag svg { width: 15px; height: 15px; color: var(--gold-2); }

/* ==========================================================================
   Info / good-to-know cards
   ========================================================================== */
.info__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.info {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; transition: transform .35s var(--ease), box-shadow .35s;
}
.info:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.info__icon { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; background: var(--cream-2); color: var(--forest-2); margin-bottom: 18px; }
.info__icon svg { width: 24px; height: 24px; }
.info h4 { font-size: 1.18rem; margin-bottom: 8px; }
.info p { color: var(--muted); font-size: .93rem; margin: 0; }
.info p b { color: var(--ink); font-weight: 600; }

/* ==========================================================================
   Attractions
   ========================================================================== */
.attractions { display: grid; gap: 12px; }
.attraction {
  display: flex; align-items: center; gap: 18px; padding: 16px 20px;
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.attraction:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); }
.attraction__dist {
  flex: 0 0 auto; min-width: 74px; text-align: center; font-family: var(--font-head);
  color: var(--forest-2); font-size: 1.25rem;
}
.attraction__dist span { display: block; font-family: var(--font-body); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.attraction__name { font-weight: 500; }
.attraction__name span { display: block; font-size: .86rem; color: var(--muted); font-weight: 400; }

/* ==========================================================================
   Secondary page banner (subhero)
   ========================================================================== */
.subhero {
  position: relative; color: #fff; overflow: hidden;
  padding: clamp(120px, 18vw, 190px) 0 clamp(50px, 7vw, 80px);
}
.subhero__bg { position: absolute; inset: 0; z-index: -2; }
.subhero__bg img { width: 100%; height: 100%; object-fit: cover; }
.subhero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(9,32,21,.9), rgba(9,32,21,.6)); }
.subhero .eyebrow { color: var(--gold); }
.subhero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 500; }
.subhero h1 em { font-style: italic; color: #f0d79a; }
.subhero p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin: 16px 0 0; max-width: 560px; }
.crumbs { display: flex; gap: 8px; font-size: .88rem; color: rgba(255,255,255,.7); margin-bottom: 18px; }
.crumbs a:hover { color: #fff; }

/* ==========================================================================
   Payment page
   ========================================================================== */
.pay { display: grid; grid-template-columns: 1.2fr .85fr; gap: clamp(30px, 5vw, 60px); align-items: start; }
.paycard {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(28px, 4vw, 46px); box-shadow: var(--shadow-md);
}
.paycard h2 { font-size: 1.7rem; margin-bottom: 6px; }
.paycard > p { color: var(--muted); margin: 0 0 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: var(--ink-soft); text-transform: uppercase; }
.field input {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 14px 16px; border: 1.5px solid var(--sand); border-radius: 12px;
  background: var(--cream); transition: border-color .25s, background .25s, box-shadow .25s;
}
.field input::placeholder { color: #a7b0aa; }
.field input:focus { outline: none; border-color: var(--forest-2); background: #fff; box-shadow: 0 0 0 4px rgba(28,91,62,.12); }
.field--amount { position: relative; }
.field--amount input { padding-right: 58px; font-weight: 600; font-size: 1.15rem; }
.field--amount .cur { position: absolute; right: 16px; bottom: 14px; font-weight: 600; color: var(--muted); }
.amount-presets { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.chip {
  border: 1.5px solid var(--sand); background: #fff; color: var(--ink-soft);
  padding: 8px 16px; border-radius: 999px; font-size: .9rem; font-weight: 500;
  transition: border-color .25s, background .25s, color .25s, transform .2s;
}
.chip:hover { border-color: var(--forest-2); color: var(--forest); transform: translateY(-2px); }
.pay .btn { width: 100%; margin-top: 8px; padding: 16px; font-size: 1.05rem; }
.pay__note { display: flex; align-items: center; gap: 10px; justify-content: center; margin-top: 18px; font-size: .85rem; color: var(--muted); }
.pay__note svg { width: 16px; height: 16px; color: var(--forest-2); }

.payside { display: grid; gap: 16px; }
.payside__card { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; }
.payside__card h3 { font-size: 1.15rem; margin-bottom: 14px; }
.payside__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.payside__list li { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; color: var(--ink-soft); }
.payside__list svg { width: 20px; height: 20px; color: var(--forest-2); flex: 0 0 auto; margin-top: 1px; }
.pay, .paycard, .payside, .payside__card { min-width: 0; }
.payside__list li { min-width: 0; }
.payside__list li a { overflow-wrap: anywhere; }
.paybrands { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.paybadge {
  display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: .8rem; letter-spacing: .02em;
  padding: 8px 12px; border-radius: 10px; background: #fff; border: 1px solid var(--line); color: var(--ink);
}
.paybadge svg { width: 16px; height: 16px; color: var(--forest-2); }

/* ==========================================================================
   WhatsApp floating button
   ========================================================================== */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: inline-flex; align-items: center; gap: 0;
}
.wa-float__btn {
  position: relative; width: 60px; height: 60px; flex: 0 0 auto;
  border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(37,211,102,.45);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.wa-float__btn svg { width: 33px; height: 33px; }
.wa-float__btn::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: #25d366; z-index: -1; animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .55; }
  70%  { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}
.wa-float:hover .wa-float__btn { transform: scale(1.08); box-shadow: 0 14px 32px rgba(37,211,102,.55); }
.wa-float__label {
  max-width: 0; overflow: hidden; white-space: nowrap;
  background: #fff; color: var(--ink); font-weight: 600; font-size: .92rem;
  border-radius: 999px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; height: 46px;
  padding: 0; margin-right: -30px; opacity: 0;
  transition: max-width .45s var(--ease), opacity .3s, padding .45s var(--ease), margin .45s var(--ease);
  order: -1;
}
.wa-float:hover .wa-float__label {
  max-width: 260px; opacity: 1; padding: 0 40px 0 20px; margin-right: -30px;
}
@media (prefers-reduced-motion: reduce) {
  .wa-float__btn::before { animation: none; }
}
@media (max-width: 600px) {
  .wa-float { right: 16px; bottom: 16px; }
  .wa-float__btn { width: 54px; height: 54px; }
  .wa-float__btn svg { width: 29px; height: 29px; }
  .wa-float__label { display: none; }
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .highlights__grid { grid-template-columns: 1fr 1fr; }
  .hl:nth-child(2) { border-right: 0; }
  .hl:nth-child(1), .hl:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 480px; margin: 20px auto 40px; }
  .facilities__grid { grid-template-columns: 1fr 1fr; }
  .rooms__grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .tst__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-auto-rows: 170px; }
  .rating__wrap { grid-template-columns: 1fr; gap: 34px; }
  .rating__bars { grid-template-columns: 1fr; }
  .pay { grid-template-columns: 1fr; }
  .spaces__row, .spaces__row--rev { grid-template-columns: 1fr; }
  .spaces__media { order: -1; }
  .info__grid { grid-template-columns: 1fr 1fr; }
}

/* phone doesn't fit alongside 8 links on medium desktops — hide it there */
@media (max-width: 1180px) {
  .nav__phone { display: none; }
}

@media (max-width: 1080px) {
  .nav__links, .nav__phone { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav.open .nav__links {
    display: flex; position: absolute; top: calc(100% + 12px); left: 12px; right: 12px;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(248,244,236,.98);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--line); border-radius: 22px;
    padding: 8px; box-shadow: var(--shadow-lg); overflow: hidden;
    transform-origin: top center;
    animation: navdrop .3s var(--ease);
  }
  .nav.open .nav__links li + li { border-top: 1px solid rgba(18,64,44,.08); }
  .nav.open .nav__links a {
    display: flex; align-items: center; justify-content: space-between;
    color: var(--forest); font-family: var(--font-head); font-weight: 500;
    font-size: 1.16rem; letter-spacing: -.01em;
    padding: 15px 18px; border-radius: 14px;
    transition: background .25s var(--ease), color .25s, padding-left .25s var(--ease);
  }
  .nav.open .nav__links a::after {
    content: ""; display: block; position: static; left: auto; right: auto; bottom: auto;
    width: 8px; height: 8px; margin: 0; background: none;
    border-right: 2px solid var(--gold); border-top: 2px solid var(--gold);
    transform: rotate(45deg); opacity: .55; transition: opacity .25s, transform .25s;
  }
  .nav.open .nav__links a:hover, .nav.open .nav__links a.active {
    background: rgba(195,154,75,.12); padding-left: 24px;
  }
  .nav.open .nav__links a:hover::after, .nav.open .nav__links a.active::after { opacity: 1; }
}
@keyframes navdrop {
  from { opacity: 0; transform: translateY(-12px) scaleY(.96); }
  to   { opacity: 1; transform: translateY(0) scaleY(1); }
}
/* hamburger morphs into an X when the menu is open */
.nav__toggle svg line { transition: transform .3s var(--ease), opacity .2s; transform-origin: center; transform-box: fill-box; }
.nav.open .nav__toggle svg line:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav.open .nav__toggle svg line:nth-child(2) { opacity: 0; }
.nav.open .nav__toggle svg line:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
.nav__toggle:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 8px; }

@media (max-width: 760px) {
  .hero__facts { gap: 22px 30px; }
  .hero__fact .n { font-size: 1.5rem; }
  .facilities__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .gitem.wide { grid-column: span 2; }
  .lb-prev { left: 12px; } .lb-next { right: 12px; }
  .room__foot { flex-direction: column; }
  .info__grid { grid-template-columns: 1fr; }
  .rating__badge b { font-size: 2.4rem; }
  .spaces__media--stack { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 460px) {
  .container { padding: 0 18px; }
  .about__list { grid-template-columns: 1fr; }
  .about__media .m2 { display: none; }
  .about__badge { left: 10px; top: 14px; }
  .hero__actions .btn { flex: 1; }
}
