/* =========================================================
   Valentina Sea & Sun — styles
   Coastal-luxury theme · vanilla CSS, lots of motion
   ========================================================= */

:root {
  --sand:        #f6efe4;
  --sand-2:      #efe5d6;
  --cream:       #fbf7f0;
  --ink:         #1d2a2d;
  --ink-soft:    #4f5d60;
  --sea:         #0b6b73;
  --sea-deep:    #084c52;
  --sea-bright:  #0e8a94;
  --sun:         #eaa53c;
  --sun-2:       #f5c25b;
  --rose:        #d98aa0;
  --white:       #ffffff;
  --line:        rgba(29, 42, 45, .12);
  --shadow-sm:   0 6px 18px rgba(8, 48, 52, .10);
  --shadow-md:   0 16px 40px rgba(8, 48, 52, .16);
  --shadow-lg:   0 30px 70px rgba(8, 48, 52, .24);
  --radius:      18px;
  --radius-lg:   28px;
  --maxw:        1180px;
  --ease:        cubic-bezier(.22, 1, .36, 1);
  --font-serif:  "Playfair Display", Georgia, serif;
  --font-sans:   "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ------------------ Reset ------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video, iframe, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }

.container { width: min(var(--maxw), 92vw); margin-inline: auto; }

/* ------------------ Typography ------------------ */
.h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -.5px;
  color: var(--ink);
}
.kicker {
  display: inline-block;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sea);
  margin-bottom: .7rem;
  position: relative;
  padding-left: 2.6rem;
}
.kicker::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 2rem; height: 2px;
  background: linear-gradient(90deg, var(--sun), var(--sun-2));
  transform: translateY(-50%);
}
.lead { font-size: clamp(1rem, .96rem + .3vw, 1.18rem); color: var(--ink-soft); }

.section { padding: clamp(4rem, 3rem + 6vw, 8rem) 0; position: relative; }
.section__head { max-width: 720px; margin-bottom: 2.6rem; }

/* ------------------ Buttons ------------------ */
.btn {
  --bg: var(--sun);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem 1.7rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: .01em;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s;
  will-change: transform;
}
.btn::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120px 60px at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.35), transparent 70%);
  opacity: 0; transition: opacity .3s;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn:hover::after { opacity: 1; }
.btn:active { transform: translateY(-1px) scale(.99); }

.btn--sun { background: linear-gradient(135deg, var(--sun), var(--sun-2)); color: #3a2a06; box-shadow: 0 10px 26px rgba(234,165,60,.4); }
.btn--sea { background: linear-gradient(135deg, var(--sea), var(--sea-bright)); color: #fff; box-shadow: 0 10px 26px rgba(11,107,115,.36); }
.btn--ghost { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.55); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255,255,255,.2); }
.btn--ghost-dark { color: var(--sea); border-color: var(--sea); background: transparent; }
.btn--ghost-dark:hover { background: var(--sea); color: #fff; }
.btn--full { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; color: var(--sea);
  margin-top: 1.4rem;
}
.link-arrow span { transition: transform .35s var(--ease); }
.link-arrow:hover span { transform: translateX(6px); }

/* ------------------ Loader ------------------ */
.loader {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center;
  background: var(--sea-deep);
  transition: opacity .7s ease, visibility .7s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__mark { text-align: center; color: #fff; }
.loader__sun {
  display: block; width: 64px; height: 64px; margin: 0 auto 1rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--sun-2), var(--sun));
  box-shadow: 0 0 0 0 rgba(245,194,91,.6);
  animation: sunPulse 1.4s ease-in-out infinite;
}
.loader__name { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; letter-spacing: .5px; }
.loader__sub { display: block; letter-spacing: .4em; text-transform: uppercase; font-size: .7rem; opacity: .8; margin-top: .3rem; }
@keyframes sunPulse {
  0%,100% { transform: scale(.92); box-shadow: 0 0 0 0 rgba(245,194,91,.5); }
  50%     { transform: scale(1.05); box-shadow: 0 0 0 22px rgba(245,194,91,0); }
}

/* ------------------ Scroll progress ------------------ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--sun), var(--sea-bright));
  z-index: 999; transition: width .1s linear;
}

/* ------------------ Cursor glow ------------------ */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 26px; height: 26px;
  border-radius: 50%; pointer-events: none; z-index: 998;
  background: radial-gradient(circle, rgba(245,194,91,.55), transparent 65%);
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s, opacity .3s;
  opacity: 0;
}
.cursor-glow.is-active { opacity: 1; }
.cursor-glow.is-big { width: 64px; height: 64px; }

/* ------------------ Header ------------------ */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  padding: 1.1rem 0;
  transition: padding .4s var(--ease), background .4s, box-shadow .4s;
}
.header.scrolled {
  padding: .55rem 0;
  background: rgba(251,247,240,.82);
  backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 4px 24px rgba(8,48,52,.08);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand__mark {
  width: 44px; height: 44px; flex: none;
  display: grid; place-items: center;
  font-family: var(--font-serif); font-weight: 800; font-size: 1.4rem;
  color: #3a2a06; border-radius: 13px;
  background: linear-gradient(135deg, var(--sun), var(--sun-2));
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease);
}
.brand:hover .brand__mark { transform: rotate(-8deg) scale(1.06); }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; color: #fff; }
.brand__text strong { font-family: var(--font-serif); font-size: 1.18rem; }
.brand__text small { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; opacity: .82; }
.header.scrolled .brand__text { color: var(--ink); }

.nav { display: flex; align-items: center; gap: .35rem; }
.nav__link {
  position: relative; padding: .5rem .85rem; border-radius: 100px;
  font-weight: 600; font-size: .95rem; color: #fff; white-space: nowrap;
  transition: color .3s, background .3s;
}
.header.scrolled .nav__link { color: var(--ink); }
.nav__link::after {
  content: ""; position: absolute; left: 50%; bottom: .25rem;
  width: 0; height: 2px; background: var(--sun);
  transform: translateX(-50%); transition: width .3s var(--ease);
}
.nav__link:hover::after, .nav__link.is-current::after { width: 40%; }
.nav__link--cta {
  background: linear-gradient(135deg, var(--sun), var(--sun-2));
  color: #3a2a06 !important; margin-left: .4rem;
  box-shadow: 0 8px 20px rgba(234,165,60,.4);
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { transform: translateY(-2px); }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; position: relative; }
.nav-toggle span {
  position: absolute; left: 12px; right: 12px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s;
}
.header.scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ------------------ Hero ------------------ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  color: #fff; overflow: hidden;
  padding: 7rem 0 6rem;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__img {
  width: 100%; height: 120%; object-fit: cover;
  transform: translateY(0) scale(1.08);
  will-change: transform;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1.16); } }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,48,52,.55) 0%, rgba(8,48,52,.18) 35%, rgba(8,48,52,.72) 100%),
    linear-gradient(110deg, rgba(8,48,52,.6), transparent 55%);
}
.hero__sun {
  position: absolute; top: 12%; right: 10%;
  width: 230px; height: 230px; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(255,236,196,.95), rgba(245,194,91,.7) 45%, rgba(245,194,91,0) 70%);
  filter: blur(2px);
  animation: floatSun 9s ease-in-out infinite;
  mix-blend-mode: screen;
}
@keyframes floatSun {
  0%,100% { transform: translateY(0) scale(1); opacity: .9; }
  50%     { transform: translateY(-22px) scale(1.05); opacity: 1; }
}
.hero__grain {
  position: absolute; inset: 0; opacity: .5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
}

.motes { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.motes span {
  position: absolute; bottom: -10%;
  width: 10px; height: 10px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,236,196,.9), rgba(245,194,91,0) 70%);
  animation: rise linear infinite;
}
.motes span:nth-child(1){ left: 8%;  width: 7px;  animation-duration: 14s; animation-delay: 0s; }
.motes span:nth-child(2){ left: 20%; width: 12px; animation-duration: 18s; animation-delay: 3s; }
.motes span:nth-child(3){ left: 33%; width: 6px;  animation-duration: 12s; animation-delay: 1s; }
.motes span:nth-child(4){ left: 48%; width: 9px;  animation-duration: 20s; animation-delay: 6s; }
.motes span:nth-child(5){ left: 62%; width: 5px;  animation-duration: 16s; animation-delay: 2s; }
.motes span:nth-child(6){ left: 74%; width: 11px; animation-duration: 22s; animation-delay: 5s; }
.motes span:nth-child(7){ left: 85%; width: 7px;  animation-duration: 15s; animation-delay: 8s; }
.motes span:nth-child(8){ left: 93%; width: 9px;  animation-duration: 19s; animation-delay: 4s; }
@keyframes rise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .8; }
  100% { transform: translateY(-115vh) translateX(30px); opacity: 0; }
}

.hero__content { position: relative; max-width: 760px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3);
  padding: .45rem 1rem; border-radius: 100px;
  font-weight: 600; font-size: .9rem; backdrop-filter: blur(6px);
  margin-bottom: 1.4rem;
}
.hero__title {
  font-family: var(--font-serif); font-weight: 800;
  font-size: clamp(3rem, 1.8rem + 8vw, 7rem);
  line-height: .98; letter-spacing: -1.5px;
  margin-bottom: 1.2rem;
}
.hero__title .line { display: block; }
.hero__title--accent {
  background: linear-gradient(100deg, var(--sun-2), #fff 45%, var(--sun));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  background-size: 200% auto;
  animation: shimmerText 6s linear infinite;
}
/* when the line is split into letters, the gradient must live on each letter */
.hero__title--accent .char {
  background-image: linear-gradient(100deg, var(--sun-2), #fff 50%, var(--sun));
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
@keyframes shimmerText { to { background-position: 200% center; } }
.hero__lead { font-size: clamp(1.05rem, 1rem + .4vw, 1.3rem); max-width: 38ch; color: rgba(255,255,255,.92); margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2rem; }
.hero__pills { display: flex; flex-wrap: wrap; gap: .6rem; }
.hero__pills li {
  font-size: .85rem; font-weight: 600; letter-spacing: .02em;
  padding: .4rem .9rem; border-radius: 100px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(6px);
}

/* split-letter reveal */
.char { display: inline-block; transform: translateY(1.05em); opacity: 0; }
.is-ready .char { animation: charIn .7s var(--ease) forwards; }
@keyframes charIn { to { transform: translateY(0); opacity: 1; } }

.scroll-cue {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.8);
  z-index: 2;
}
.scroll-cue__mouse {
  width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.7); border-radius: 14px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-cue__mouse span {
  width: 4px; height: 8px; border-radius: 4px; background: #fff;
  animation: scrollDot 1.6s var(--ease) infinite;
}
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(-4px); } 40% { opacity: 1; } 80%,100% { opacity: 0; transform: translateY(10px); } }

/* soft gradient fade: hero image dissolves gradually into the cream section */
.hero__fade {
  position: absolute; left: 0; bottom: 0; width: 100%;
  height: clamp(190px, 32%, 380px); z-index: -1; pointer-events: none;
  background: linear-gradient(to bottom,
    rgba(251,247,240,0) 0%,
    rgba(251,247,240,.3) 42%,
    rgba(251,247,240,.72) 74%,
    var(--cream) 100%);
}
/* gentle animated waves at the seam */
.wave-divider { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; z-index: 1; }
.waves { display: block; width: 100%; height: clamp(95px, 13vw, 165px); }
.wave-parallax > use { animation: wave-move 25s cubic-bezier(.55,.5,.45,.5) infinite; }
.wave-parallax > use:nth-child(1) { animation-delay: -2s; animation-duration: 8s;  }
.wave-parallax > use:nth-child(2) { animation-delay: -3s; animation-duration: 11s; }
.wave-parallax > use:nth-child(3) { animation-delay: -4s; animation-duration: 15s; }
.wave-parallax > use:nth-child(4) { animation-delay: -5s; animation-duration: 22s; }
@keyframes wave-move {
  0%   { transform: translate3d(-90px, 0, 0); }
  100% { transform: translate3d(85px, 0, 0); }
}

/* ------------------ Despre / Stats ------------------ */
.despre__grid { display: grid; grid-template-columns: 1.3fr .85fr; gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: center; }
.despre__text p + p { margin-top: 1rem; }
.despre__text .lead { margin-top: 1rem; }

.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat {
  background: linear-gradient(160deg, #fff, var(--sand));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.3rem; text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s;
}
.stat:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stat__num {
  display: block; font-family: var(--font-serif); font-weight: 800;
  font-size: clamp(2.4rem, 1.8rem + 2vw, 3.4rem); line-height: 1; color: var(--sea);
}
.stat__label { display: block; margin-top: .4rem; font-size: .82rem; color: var(--ink-soft); letter-spacing: .02em; }

/* ------------------ Marquee ------------------ */
.marquee {
  background: var(--sea-deep); color: #fff; overflow: hidden;
  padding: .9rem 0; white-space: nowrap;
  border-block: 1px solid rgba(255,255,255,.08);
}
.marquee__track { display: inline-flex; gap: 1.6rem; align-items: center; animation: marquee 26s linear infinite; }
.marquee__track span { font-family: var(--font-serif); font-size: 1.15rem; opacity: .92; }
.marquee__track span:nth-child(even) { color: var(--sun-2); opacity: 1; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ------------------ Facilități ------------------ */
.facilitati { background: linear-gradient(180deg, var(--cream), var(--sand-2)); }
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.4rem; position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s;
}
.feature::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(234,165,60,.16), transparent 55%);
  opacity: 0; transition: opacity .45s;
}
.feature:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.feature:hover::before { opacity: 1; }
.feature__icon {
  width: 54px; height: 54px; border-radius: 15px;
  display: grid; place-items: center; color: var(--sea);
  background: linear-gradient(160deg, var(--sand), #fff);
  border: 1px solid var(--line);
  margin-bottom: 1rem;
  transition: transform .45s var(--ease), color .3s;
}
.feature__icon svg { width: 26px; height: 26px; }
.feature:hover .feature__icon { transform: translateY(-4px) rotate(-6deg) scale(1.08); color: var(--sun); }
.feature h3 { font-family: var(--font-serif); font-weight: 700; font-size: 1.18rem; margin-bottom: .35rem; }
.feature p { font-size: .92rem; color: var(--ink-soft); }

/* ------------------ Galerie ------------------ */
.filters { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.4rem; }
.chip {
  padding: .5rem 1.1rem; border-radius: 100px; font-weight: 600; font-size: .9rem;
  background: #fff; border: 1.5px solid var(--line); color: var(--ink-soft);
  transition: all .3s var(--ease);
}
.chip:hover { border-color: var(--sea); color: var(--sea); transform: translateY(-2px); }
.chip.is-active { background: var(--sea); border-color: var(--sea); color: #fff; box-shadow: var(--shadow-sm); }

.gallery { columns: 3; column-gap: 1.1rem; }
.tile {
  position: relative; break-inside: avoid; margin: 0 0 1.1rem;
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow-sm);
  transform: translateZ(0);
  transition: transform .5s var(--ease), box-shadow .5s, opacity .4s, filter .5s;
}
.tile img { width: 100%; height: auto; transition: transform .8s var(--ease); }
.tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1rem .9rem; color: #fff; font-weight: 700; font-family: var(--font-serif); font-size: 1.05rem;
  background: linear-gradient(0deg, rgba(8,48,52,.78), transparent);
  transform: translateY(8px); opacity: 0; transition: transform .45s var(--ease), opacity .45s;
}
.tile::after {
  content: "⤢"; position: absolute; top: .8rem; right: .8rem;
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.9); color: var(--sea); font-size: 1rem; font-weight: 700;
  transform: scale(.6); opacity: 0; transition: transform .4s var(--ease), opacity .4s;
}
.tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.tile:hover img { transform: scale(1.08); }
.tile:hover figcaption { transform: translateY(0); opacity: 1; }
.tile:hover::after { transform: scale(1); opacity: 1; }
.tile.is-hidden { display: none; }

/* ------------------ Tur video ------------------ */
.tur { background: var(--sea-deep); color: #fff; }
.tur .kicker { color: var(--sun-2); }
.tur .kicker::before { background: var(--sun); }
.tur .h2 { color: #fff; }
.tur__grid { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: center; }
.tur .lead { color: rgba(255,255,255,.85); }
.ticks { margin-top: 1.6rem; display: grid; gap: .8rem; }
.ticks li { position: relative; padding-left: 2rem; color: rgba(255,255,255,.92); }
.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 1.4rem; height: 1.4rem; border-radius: 50%;
  display: grid; place-items: center; font-size: .8rem; font-weight: 800;
  background: linear-gradient(135deg, var(--sun), var(--sun-2)); color: #3a2a06;
}
.tur__phone { position: relative; display: grid; place-items: center; }
.phone {
  position: relative; width: min(300px, 76vw); aspect-ratio: 9 / 19.5;
  border-radius: 36px; padding: 10px; background: #0c1718;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255,255,255,.05);
  z-index: 1;
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.phone__video { width: 100%; height: 100%; object-fit: cover; border-radius: 28px; background: #000; }
.phone__play {
  position: absolute; inset: 0; margin: auto; width: 76px; height: 76px; border-radius: 50%;
  display: grid; place-items: center; color: #3a2a06;
  background: linear-gradient(135deg, var(--sun), var(--sun-2));
  box-shadow: 0 14px 34px rgba(0,0,0,.4);
  animation: sunPulse 2.2s ease-in-out infinite;
}
.phone__play svg { width: 30px; height: 30px; margin-left: 4px; }
.phone__play.is-hidden { opacity: 0; visibility: hidden; transform: scale(.7); }
.phone__glow {
  position: absolute; inset: -30px; z-index: 0; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,194,91,.32), transparent 65%);
  filter: blur(20px);
}

/* ------------------ Locație ------------------ */
.locatie__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 1rem + 4vw, 4rem); align-items: center; }
.poi { margin-top: 1.6rem; display: grid; gap: .9rem; }
.poi li { display: flex; align-items: center; gap: .8rem; font-weight: 500; color: var(--ink-soft); }
.poi__ic {
  width: 40px; height: 40px; flex: none; border-radius: 12px;
  display: grid; place-items: center; font-size: 1.1rem;
  background: linear-gradient(160deg, var(--sand), #fff); border: 1px solid var(--line);
}
.locatie__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.locatie__map {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 6px solid #fff;
}
.locatie__map iframe { width: 100%; height: clamp(320px, 42vw, 480px); border: 0; filter: saturate(1.05); }

/* ------------------ Contact ------------------ */
.contact { background: linear-gradient(180deg, var(--sand-2), var(--cream)); }
.contact__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 1rem + 4vw, 4rem); align-items: start; }
.contact__list { margin-top: 1.6rem; display: grid; gap: .9rem; }
.contact__list li { display: flex; align-items: center; gap: .85rem; font-weight: 600; }
.contact__list a { transition: color .25s; }
.contact__list a:hover { color: var(--sea); }
.contact__ic {
  width: 42px; height: 42px; flex: none; border-radius: 12px; font-size: 1.15rem;
  display: grid; place-items: center; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}

.booking {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1rem + 2vw, 2.4rem); box-shadow: var(--shadow-md);
}
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { font-size: .82rem; font-weight: 700; letter-spacing: .03em; color: var(--ink-soft); text-transform: uppercase; }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink);
  padding: .8rem 1rem; border-radius: 12px;
  border: 1.5px solid var(--line); background: var(--cream);
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sea); background: #fff;
  box-shadow: 0 0 0 4px rgba(11,107,115,.12);
}
.field input.invalid, .field select.invalid { border-color: #d4574e; box-shadow: 0 0 0 4px rgba(212,87,78,.12); }
.booking__note { margin-top: .9rem; font-size: .82rem; color: var(--ink-soft); text-align: center; }

/* ------------------ Footer ------------------ */
.footer { background: var(--sea-deep); color: rgba(255,255,255,.82); padding: 3.5rem 0 2.5rem; }
.footer__inner { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr; gap: 2rem; align-items: start; }
.footer__brand { display: flex; gap: .9rem; align-items: center; }
.footer__brand strong { color: #fff; font-family: var(--font-serif); font-size: 1.25rem; display: block; }
.footer__brand p { font-size: .9rem; }
.footer__nav { display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; align-content: start; }
.footer__nav a { position: relative; transition: color .25s; }
.footer__nav a:hover { color: var(--sun-2); }
.footer__meta { font-size: .85rem; line-height: 1.7; text-align: right; }
.footer__col { display: flex; flex-direction: column; gap: 1.3rem; align-items: flex-start; }
.tinfo { display: inline-flex; flex-direction: column; align-items: center; gap: .45rem; background: #fff; border-radius: 14px; padding: .9rem 1.1rem; box-shadow: var(--shadow-sm); }
.tinfo__logo { display: block; line-height: 0; }
.tinfo__logo img { display: block; border-radius: 10px; }
.tinfo__link { color: #3B5998; font-weight: 700; font-size: .85rem; }
.tinfo__link:hover { color: #2c4373; text-decoration: underline; }
@media (max-width: 760px){ .footer__meta { text-align: left; } }

/* ------------------ Back to top ------------------ */
.to-top {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 150;
  width: 50px; height: 50px; border-radius: 50%; font-size: 1.3rem; font-weight: 800;
  color: #fff; background: linear-gradient(135deg, var(--sea), var(--sea-bright));
  box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(20px) scale(.8); pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.to-top.is-visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.to-top:hover { transform: translateY(-4px); }

/* ------------------ Lightbox ------------------ */
.lightbox {
  position: fixed; inset: 0; z-index: 500;
  display: grid; place-items: center;
  background: rgba(6,30,33,.92); backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__stage { max-width: 92vw; max-height: 86vh; text-align: center; }
.lightbox__stage img {
  max-width: 92vw; max-height: 78vh; border-radius: 14px; box-shadow: var(--shadow-lg);
  transform: scale(.94); transition: transform .45s var(--ease);
}
.lightbox.is-open .lightbox__stage img { transform: scale(1); }
.lightbox__stage figcaption { color: #fff; margin-top: 1rem; font-family: var(--font-serif); font-size: 1.1rem; }
.lightbox__close, .lightbox__nav {
  position: absolute; z-index: 2; color: #fff;
  width: 52px; height: 52px; border-radius: 50%; font-size: 1.6rem; line-height: 1;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  display: grid; place-items: center;
  transition: background .25s, transform .25s;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.25); transform: scale(1.08); }
.lightbox__close { top: 1.2rem; right: 1.2rem; }
.lightbox__prev { left: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox__prev:hover { transform: translateY(-50%) scale(1.08); }
.lightbox__next:hover { transform: translateY(-50%) scale(1.08); }

/* ------------------ Reveal on scroll ------------------ */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* ------------------ Responsive ------------------ */
@media (max-width: 1000px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .gallery { columns: 2; }
  .despre__grid, .tur__grid, .locatie__grid, .contact__grid { grid-template-columns: 1fr; }
  .tur__phone { order: -1; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 320px);
    flex-direction: column; align-items: stretch; justify-content: center; gap: .4rem;
    padding: 2rem; background: rgba(8,48,52,.97); backdrop-filter: blur(16px);
    transform: translateX(100%); transition: transform .45s var(--ease);
    z-index: 210;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__link { color: #fff; font-size: 1.15rem; padding: .8rem 1rem; }
  .header.scrolled .nav__link { color: #fff; }
  .nav__link--cta { text-align: center; margin-top: .6rem; }
  .nav-toggle { display: block; z-index: 220; }
  /* backdrop-filter turns the header into a containing block for the fixed menu,
     trapping it inside the short header after scroll — keep mobile header solid */
  .header.scrolled { -webkit-backdrop-filter: none; backdrop-filter: none; background: rgba(251,247,240,.97); }
  .stats { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .lightbox__prev { left: .6rem; }
  .lightbox__next { right: .6rem; }
}
@media (max-width: 460px) {
  .gallery { columns: 1; }
  .features { grid-template-columns: 1fr; }
}

/* ------------------ Reduced motion ------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .hero__img { animation: none; transform: scale(1.05); }
  [data-reveal] { opacity: 1; transform: none; }
  .char { opacity: 1; transform: none; }
  .motes, .hero__sun { display: none; }
}
