/* ============================================================
   Balta Scărișoara — template pescuit / fishing lake
   Design: dark nature palette, amber accents, serif display
   ============================================================ */

:root {
  --bark:       var(--c-secondary, #1b130c);
  --bark-2:     #251a10;
  --parchment:  #f4ecdb;
  --paper:      #fbf6ea;
  --amber:      var(--c-primary, #d99a3a);
  --amber-deep: #b9772a;
  --ember:      var(--c-accent, #cf6433);
  --ink:        #241a10;
  --muted:      #6b5d49;
  --line:       rgba(27,19,12,.12);
  --maxw:       1240px;

  --ff-display: "Fraunces", Georgia, serif;
  --ff-serif:   "Instrument Serif", Georgia, serif;
  --ff-sans:    "Hanken Grotesk", system-ui, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-sans);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
section { position: relative; }

/* ---------- nav ---------- */
header.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .35s, box-shadow .35s, padding .35s;
  padding: 22px 0;
}
header.nav.scrolled {
  background: rgba(27,19,12,.93);
  backdrop-filter: saturate(140%) blur(10px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 14px 40px -22px rgba(0,0,0,.6);
  padding: 14px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 13px; color: var(--paper); }
.brand .mark {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  object-fit: cover; border: 1.5px solid rgba(244,236,219,.5);
  box-shadow: 0 2px 12px rgba(0,0,0,.4); background: var(--bark);
}
.brand b  { font-family: var(--ff-display); font-weight: 600; font-size: 20px; letter-spacing: .005em; display: block; }
.brand .sub { display: block; font-size: 10px; letter-spacing: .34em; text-transform: uppercase; color: var(--amber); margin-top: 4px; }
nav.links { display: flex; gap: 30px; align-items: center; }
nav.links a { color: rgba(244,236,219,.82); font-size: 14.5px; font-weight: 500; transition: color .2s; }
nav.links a:hover { color: var(--paper); }
.nav-cta {
  font-family: var(--ff-sans); font-weight: 600; font-size: 14px;
  color: var(--bark); background: var(--amber);
  padding: 11px 20px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .2s, background .2s;
}
.nav-cta:hover { transform: translateY(-1px); background: #e7ac4f; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { width: 24px; height: 2px; background: var(--paper); display: block; }

/* ---------- hero ---------- */
.hero {
  min-height: 100svh; display: flex; align-items: flex-end;
  color: var(--paper); padding: 150px 0 64px; overflow: hidden; background: var(--bark);
}
.hero .bg { position: absolute; inset: 0; z-index: 0; }
.hero .bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.hero .scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,12,6,.45) 0%, rgba(20,12,6,.15) 30%, rgba(20,12,6,.55) 70%, rgba(20,12,6,.92) 100%);
}
.hero .wrap { position: relative; z-index: 2; width: 100%; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 26px; font-weight: 600;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--amber); }
.hero h1 {
  font-family: var(--ff-display); font-weight: 500;
  font-size: clamp(44px, 7.4vw, 98px); line-height: .98;
  letter-spacing: -.02em; max-width: 15ch;
  text-wrap: balance; text-shadow: 0 2px 30px rgba(0,0,0,.4);
}
.hero h1 em { font-family: var(--ff-serif); font-style: italic; font-weight: 400; color: var(--amber); }
.hero p.lead { margin-top: 26px; font-size: clamp(17px,1.7vw,21px); max-width: 48ch; color: rgba(244,236,219,.9); line-height: 1.6; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 38px; }

/* buttons */
.btn {
  font-family: var(--ff-sans); font-weight: 600; font-size: 16px; cursor: pointer;
  padding: 16px 28px; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .2s, background .2s, border-color .2s, color .2s;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn.gold  { background: var(--amber); color: var(--bark); }
.btn.gold:hover  { background: #e7ac4f; transform: translateY(-2px); }
.btn.ghost { background: rgba(255,255,255,.06); color: var(--paper); border-color: rgba(244,236,219,.45); }
.btn.ghost:hover { border-color: var(--paper); transform: translateY(-2px); }

.hero-pills {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 56px; padding-top: 30px;
  border-top: 1px solid rgba(244,236,219,.2);
}
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14.5px; font-weight: 500; color: rgba(244,236,219,.92);
  background: rgba(255,255,255,.07); border: 1px solid rgba(244,236,219,.16);
  padding: 10px 16px; border-radius: 999px;
}
.pill .d { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); flex: none; }

/* ---------- section heading ---------- */
.sec { padding: clamp(72px,10vw,128px) 0; }
.sec-head { max-width: 720px; }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--amber-deep); font-weight: 700; margin-bottom: 20px;
}
.kicker::before { content: ""; width: 26px; height: 1px; background: var(--amber-deep); }
h2.title {
  font-family: var(--ff-display); font-weight: 500;
  font-size: clamp(34px,5vw,60px); line-height: 1.02;
  letter-spacing: -.015em; color: var(--bark);
}
h2.title em { font-family: var(--ff-serif); font-style: italic; font-weight: 400; color: var(--amber-deep); }
.sec p.intro { font-size: clamp(16px,1.5vw,19px); color: var(--muted); margin-top: 22px; line-height: 1.7; max-width: 60ch; }

/* ---------- despre ---------- */
.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; margin-top: 64px; }
.about-copy p { color: #4d4231; font-size: 17px; line-height: 1.75; margin-bottom: 18px; max-width: 54ch; }
.about-copy p.big { font-family: var(--ff-serif); font-size: 24px; line-height: 1.5; color: var(--bark); }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 30px; margin-top: 34px; }
.feat { display: flex; gap: 14px; }
.feat .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--amber); flex: none; margin-top: 7px;
  box-shadow: 0 0 0 4px rgba(217,154,58,.18);
}
.feat b { display: block; font-size: 16px; color: var(--bark); }
.feat span { font-size: 14px; color: var(--muted); }
.about-img { position: relative; }
.about-img .main { aspect-ratio: 4/5; border-radius: 14px; overflow: hidden; box-shadow: 0 30px 70px -36px rgba(27,19,12,.6); }
.about-img .main img { width: 100%; height: 100%; object-fit: cover; }
.about-img .small {
  position: absolute; width: 52%; aspect-ratio: 4/3;
  right: -24px; bottom: -30px; border: 7px solid var(--paper);
  border-radius: 14px; overflow: hidden; box-shadow: 0 24px 50px -26px rgba(0,0,0,.5);
}
.about-img .small img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; left: -22px; top: 30px; z-index: 3;
  background: var(--bark); color: var(--paper); border-radius: 14px;
  padding: 16px 20px; box-shadow: 0 24px 50px -24px rgba(0,0,0,.5); max-width: 170px;
}
.about-badge .n { font-family: var(--ff-display); font-size: 18px; line-height: 1.25; color: var(--amber); }
.about-badge .l { font-size: 12.5px; color: rgba(244,236,219,.8); margin-top: 6px; line-height: 1.4; }

/* ---------- ce te asteapta ---------- */
.offer { background: var(--bark); }
.offer .kicker       { color: var(--amber); }
.offer .kicker::before { background: var(--amber); }
.offer h2.title      { color: var(--paper); }
.offer h2.title em   { color: var(--amber); }
.offer p.intro       { color: rgba(244,236,219,.72); }
.fac-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 64px; }
.fac {
  background: rgba(255,255,255,.04); border: 1px solid rgba(244,236,219,.13);
  border-radius: 16px; padding: 32px;
  transition: transform .3s, border-color .3s, background .3s;
}
.fac:hover { transform: translateY(-5px); border-color: rgba(217,154,58,.5); background: rgba(255,255,255,.07); }
.fac .ic {
  width: 52px; height: 52px; border-radius: 13px;
  background: rgba(217,154,58,.14); display: grid; place-items: center; margin-bottom: 20px;
}
.fac .ic svg { width: 27px; height: 27px; stroke: var(--amber); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.fac h3 { font-family: var(--ff-display); font-weight: 500; font-size: 22px; color: var(--paper); }
.fac p  { font-size: 15px; color: rgba(244,236,219,.66); margin-top: 10px; line-height: 1.65; }

/* ---------- specii band ---------- */
.species { color: var(--paper); overflow: hidden; }
.species .bg { position: absolute; inset: 0; z-index: 0; }
.species .bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 65%; }
.species .scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(20,12,6,.92) 0%, rgba(20,12,6,.7) 55%, rgba(20,12,6,.35) 100%);
}
.species .wrap     { position: relative; z-index: 2; }
.species .kicker   { color: var(--amber); }
.species .kicker::before { background: var(--amber); }
.species h2.title  { color: var(--paper); }
.sp-list { display: flex; flex-direction: column; margin-top: 46px; max-width: 760px; }
.sp {
  display: flex; align-items: baseline; gap: 24px;
  padding: 24px 0; border-top: 1px solid rgba(244,236,219,.18);
}
.sp:last-child { border-bottom: 1px solid rgba(244,236,219,.18); }
.sp h3 {
  font-family: var(--ff-display); font-weight: 500;
  font-size: clamp(28px,4vw,44px); line-height: 1; width: 7ch; flex: none;
}
.sp p { font-size: 16px; color: rgba(244,236,219,.78); line-height: 1.55; }

/* ---------- galerie ---------- */
.gallery { background: var(--paper); }
.gal-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  grid-auto-rows: 200px; gap: 14px; margin-top: 56px;
}
.gal-grid figure { border-radius: 12px; overflow: hidden; height: 100%; margin: 0; position: relative; }
.gal-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.gal-grid figure:hover img { transform: scale(1.05); }
.g-wide { grid-column: span 2; }
.g-tall { grid-row: span 2; }

/* ---------- capturi ---------- */
.catches { background: var(--bark-2); }
.catches .kicker      { color: var(--amber); }
.catches .kicker::before { background: var(--amber); }
.catches h2.title     { color: var(--paper); }
.catches h2.title em  { color: var(--amber); }
.catches p.intro      { color: rgba(244,236,219,.72); }
.catch-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 60px; }
.catch { border-radius: 16px; overflow: hidden; position: relative; background: #000; aspect-ratio: 3/4; }
.catch img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.catch:hover img { transform: scale(1.04); }
.catch .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 40px 22px 22px;
  background: linear-gradient(180deg, transparent, rgba(15,9,4,.92));
  color: var(--paper);
}
.catch .cap .t { font-family: var(--ff-display); font-size: 22px; font-weight: 500; line-height: 1.1; }
.catch .cap .s { font-size: 13.5px; color: var(--amber); margin-top: 6px; letter-spacing: .02em; }

/* ---------- tarife ---------- */
.pricing { background: var(--paper); }
.price-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 60px; max-width: 880px; }
.plan {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 40px; display: flex; flex-direction: column; position: relative;
}
.plan.feat-plan { background: var(--bark); color: var(--paper); border-color: var(--bark); }
.plan .tag {
  position: absolute; top: -13px; left: 40px;
  background: var(--amber); color: var(--bark);
  font-size: 12px; font-weight: 700; letter-spacing: .04em;
  padding: 6px 14px; border-radius: 999px;
}
.plan h3 { font-family: var(--ff-display); font-weight: 500; font-size: 26px; color: inherit; }
.plan .who { font-size: 14.5px; color: var(--muted); margin-top: 6px; }
.plan.feat-plan .who { color: rgba(244,236,219,.7); }
.plan .amt { font-family: var(--ff-display); font-size: 60px; font-weight: 600; margin: 24px 0 0; line-height: 1; color: var(--bark); }
.plan.feat-plan .amt { color: var(--amber); }
.plan .amt span { font-size: 18px; font-family: var(--ff-sans); font-weight: 500; color: var(--muted); }
.plan.feat-plan .amt span { color: rgba(244,236,219,.7); }
.plan .incl {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 22px; font-size: 15px; font-weight: 600; color: var(--amber-deep);
}
.plan.feat-plan .incl { color: var(--amber); }
.plan .incl svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.plan .days { margin: 20px 0 28px; font-size: 15.5px; line-height: 1.7; color: #4d4231; }
.plan.feat-plan .days { color: rgba(244,236,219,.82); }
.plan .btn { margin-top: auto; justify-content: center; width: 100%; }
.price-note { margin-top: 30px; font-size: 14.5px; color: var(--muted); max-width: 60ch; }

/* ---------- bun de stiut ---------- */
.know { background: var(--bark); }
.know .kicker        { color: var(--amber); }
.know .kicker::before { background: var(--amber); }
.know h2.title       { color: var(--paper); }
.know h2.title em    { color: var(--amber); }
.know-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0 56px; margin-top: 50px; }
.know-row { display: flex; gap: 18px; padding: 24px 0; border-bottom: 1px solid rgba(244,236,219,.14); }
.know-row .num { font-family: var(--ff-display); font-size: 22px; color: var(--amber); flex: none; width: 38px; }
.know-row b   { color: var(--paper); font-size: 16.5px; display: block; margin-bottom: 3px; }
.know-row p   { font-size: 15px; color: rgba(244,236,219,.66); line-height: 1.55; }

/* ---------- contact ---------- */
.reserve { color: var(--paper); overflow: hidden; background: var(--bark); }
.reserve .bg  { position: absolute; inset: 0; z-index: 0; }
.reserve .bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.reserve .scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(20,12,6,.94) 28%, rgba(20,12,6,.55));
}
.reserve .wrap { position: relative; z-index: 2; }
.reserve-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; }
.reserve h2 {
  font-family: var(--ff-display); font-weight: 500;
  font-size: clamp(32px,4.6vw,56px); line-height: 1.04; letter-spacing: -.015em;
}
.reserve h2 em { font-family: var(--ff-serif); font-style: italic; font-weight: 400; color: var(--amber); }
.reserve p.r-lead { color: rgba(244,236,219,.85); font-size: 18px; margin-top: 20px; max-width: 44ch; line-height: 1.65; }
.contact-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(244,236,219,.18);
  border-radius: 20px; padding: 32px; backdrop-filter: blur(6px);
}
.contact-card .row {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid rgba(244,236,219,.12);
}
.contact-card .row:last-of-type { border-bottom: 0; }
.contact-card .ic {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(217,154,58,.18); display: grid; place-items: center; flex: none;
}
.contact-card .ic svg { width: 21px; height: 21px; stroke: var(--amber); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact-card .lbl { font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: rgba(244,236,219,.55); }
.contact-card .val { font-size: 18px; font-weight: 600; }
.contact-card .val .maps-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(217,154,58,.55);
  transition: text-decoration-color .2s, color .2s;
}
.contact-card .val .maps-link:hover { color: var(--amber); text-decoration-color: var(--amber); }
.contact-card .btn { width: 100%; justify-content: center; margin-top: 22px; }

/* ---------- footer ---------- */
footer { background: #120c07; color: rgba(244,236,219,.7); padding: 72px 0 36px; }
.foot-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: 48px;
  padding-bottom: 44px; border-bottom: 1px solid rgba(244,236,219,.12);
}
footer .brand b   { color: var(--paper); }
footer .foot-about { font-size: 15px; line-height: 1.7; margin-top: 20px; max-width: 36ch; }
footer h4 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--paper); margin-bottom: 18px; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
footer ul a { font-size: 15px; transition: color .2s; }
footer ul a:hover { color: var(--amber); }
.foot-contact div { font-size: 15px; padding: 5px 0; }
.foot-contact span { color: var(--paper); font-weight: 600; }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; padding-top: 28px; font-size: 13.5px; flex-wrap: wrap;
}

/* ---------- maps ---------- */
.maps-sec { background: var(--paper); }
.maps-wrap { position: relative; margin-top: 56px; }
.maps-frame {
  height: 540px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 34px 80px -38px rgba(27,19,12,.55);
  background: #efe6d2;
}
/* harta Leaflet: tile-uri tonate nativ în paleta caldă crem-amber */
.maps-frame .leaflet-container { background: #efe6d2; font-family: var(--ff-sans); }
.maps-frame .leaflet-tile-pane { filter: sepia(.55) saturate(1.4) hue-rotate(-8deg) brightness(1.04) contrast(.95); }
.maps-frame .leaflet-control-attribution {
  background: rgba(251,246,234,.82); color: var(--muted); font-size: 10.5px;
  padding: 2px 8px; border-radius: 8px 0 0 0;
}
.maps-frame .leaflet-control-attribution a { color: var(--amber-deep); }
.maps-frame .leaflet-bar a {
  background: rgba(27,19,12,.86); color: var(--paper);
  border-bottom-color: rgba(244,236,219,.18); font-weight: 500;
}
.maps-frame .leaflet-bar a:hover { background: var(--bark); color: var(--amber); }
.maps-frame .leaflet-bar { border: 1px solid rgba(244,236,219,.18); border-radius: 12px; overflow: hidden; box-shadow: 0 8px 24px -10px rgba(0,0,0,.5); }

/* marker pin amber */
.lake-pin-wrap { background: none !important; border: none !important; }
.lake-pin { position: relative; width: 40px; height: 52px; filter: drop-shadow(0 6px 9px rgba(27,19,12,.45)); }
.lake-pin svg { position: relative; z-index: 2; display: block; }
.lake-pulse {
  position: absolute; left: 50%; top: 18px; width: 16px; height: 16px;
  transform: translate(-50%, -50%); border-radius: 50%;
  background: rgba(217,154,58,.5); z-index: 1;
  animation: lakePulse 2.6s ease-out infinite;
}
@keyframes lakePulse {
  0%   { transform: translate(-50%,-50%) scale(1);   opacity: .7; }
  70%  { transform: translate(-50%,-50%) scale(3.6); opacity: 0; }
  100% { opacity: 0; }
}
@media (max-width: 760px) {
  .maps-frame { height: 380px; }
}

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.16,.84,.44,1), transform .8s cubic-bezier(.16,.84,.44,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 60; background: var(--bark);
  display: flex; flex-direction: column; justify-content: center;
  gap: 8px; padding: 40px;
  transform: translateX(100%); transition: transform .4s cubic-bezier(.7,0,.2,1);
}
.mobile-menu.open { transform: none; }
.mobile-menu a { color: var(--paper); font-family: var(--ff-display); font-size: 32px; font-weight: 500; padding: 10px 0; border-bottom: 1px solid rgba(244,236,219,.12); }
.mobile-menu .close { position: absolute; top: 24px; right: 24px; background: none; border: 0; color: var(--paper); font-size: 34px; cursor: pointer; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  nav.links, .nav-cta { display: none; }
  .burger { display: flex; }
  .about-grid, .reserve-inner { grid-template-columns: 1fr; gap: 40px; }
  .fac-grid  { grid-template-columns: 1fr 1fr; }
  .catch-grid { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 520px; }
  .gal-grid  { grid-template-columns: repeat(2,1fr); }
  .know-grid { grid-template-columns: 1fr; gap: 0; }
  .about-img { max-width: 440px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-img .small { display: none; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .feature-list, .fac-grid { grid-template-columns: 1fr; }
  .catch-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .gal-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
  .sp { flex-direction: column; gap: 6px; }
  .sp h3 { width: auto; }
  .foot-grid { grid-template-columns: 1fr; }
}
