/* =====================================================================
   STUPINA DINU ALEXANDRU, foaie de stil
   Culorile și fonturile se schimbă din variabilele de mai jos (:root).
   Design „mobile-first”: regulile de bază sunt pentru telefon,
   iar blocurile @media adaugă ajustări pentru ecrane mai mari.
   ===================================================================== */

:root {
  --miere: #F4B400;
  --chihlimbar: #D98E04;
  --maro: #5C3A1E;
  --maro-inchis: #3E2612;
  --crem: #FFF8E7;
  --crem-2: #FBEFD2;
  --verde: #6B8E23;
  --verde-inchis: #556F1C;
  --alb: #FFFFFF;
  --text: #5C3A1E;
  --text-2: #6F4D2E;
  --linie: #EAD9B5;
  --wa: #1E7E4F;

  --umbra: 0 4px 20px rgba(92, 58, 30, .08);
  --umbra-mare: 0 16px 40px rgba(92, 58, 30, .18);
  --r: 18px;
  --r-mic: 12px;

  --f-titlu: "Playfair Display", Georgia, "Times New Roman", serif;
  --f-text: "Open Sans", "Segoe UI", Roboto, Arial, sans-serif;
  --max: 1180px;
  --header-h: 72px;

  /* Model de fagure (hexagoane) folosit discret în fundaluri */
  --fagure: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cg fill='none' stroke='%23D98E04' stroke-opacity='.11' stroke-width='1.5'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100'/%3E%3Cpath d='M28 0L28 34L0 50L0 84L28 100L56 84L56 50L28 34'/%3E%3C/g%3E%3C/svg%3E");
  --fagure-inchis: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cg fill='none' stroke='%23F4B400' stroke-opacity='.09' stroke-width='1.5'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100'/%3E%3Cpath d='M28 0L28 34L0 50L0 84L28 100L56 84L56 50L28 34'/%3E%3C/g%3E%3C/svg%3E");
  --fagure-alb: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cg fill='none' stroke='%23FFFFFF' stroke-opacity='.25' stroke-width='1.5'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100'/%3E%3Cpath d='M28 0L28 34L0 50L0 84L28 100L56 84L56 50L28 34'/%3E%3C/g%3E%3C/svg%3E");
  --trei-hexagoane: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='24' viewBox='0 0 84 24'%3E%3Cpath d='M12 2l9 5v10l-9 5-9-5V7z' fill='none' stroke='%23D98E04' stroke-width='2'/%3E%3Cpath d='M42 2l9 5v10l-9 5-9-5V7z' fill='%23F4B400'/%3E%3Cpath d='M72 2l9 5v10l-9 5-9-5V7z' fill='none' stroke='%23D98E04' stroke-width='2'/%3E%3C/svg%3E");
  --bifa: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1l9.5 5.5v11L12 23l-9.5-5.5v-11z' fill='%23F4B400'/%3E%3Cpath d='M7.5 12.5l3 3 6-6.5' fill='none' stroke='%235C3A1E' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  --hexagon: polygon(50% 0, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
}

/* ---------- Bază ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-text);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--crem);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--verde-inchis); text-underline-offset: 3px; }
a:hover { color: var(--maro); }
h1, h2, h3, h4 {
  font-family: var(--f-titlu);
  color: var(--maro);
  line-height: 1.2;
  margin: 0 0 .6em;
  font-weight: 700;
}
h1 { font-size: clamp(2.1rem, 6.5vw, 3.7rem); }
h2 { font-size: clamp(1.75rem, 4.2vw, 2.6rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.3em; }
strong { font-weight: 700; }
[id] { scroll-margin-top: calc(var(--header-h) + 16px); }
:focus-visible { outline: 3px solid var(--verde); outline-offset: 3px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: 20px; }
.ingust { max-width: 800px; margin-inline: auto; }
.centrat { text-align: center; }
.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: -9999px; top: 8px; z-index: 300;
  background: #fff; color: var(--maro); padding: .7rem 1.1rem; border-radius: 10px; font-weight: 700;
}
.skip:focus { left: 12px; }

svg.i { width: 24px; height: 24px; flex: none; }
[hidden] { display: none !important; }

/* Marcaj pentru informații care trebuie completate */
.tbd {
  display: inline;
  background: rgba(244, 180, 0, .2);
  border: 1px dashed var(--chihlimbar);
  border-radius: 6px;
  padding: 0 .35rem;
  font-size: .92em;
  font-style: normal;
  font-weight: 600;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* ---------- Butoane ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 50px; padding: .75rem 1.6rem;
  border-radius: 999px; border: 2px solid transparent;
  font-family: inherit; font-weight: 700; font-size: 1rem; line-height: 1.2;
  text-align: center; text-decoration: none; cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.btn svg { width: 20px; height: 20px; }
.btn:hover { transform: translateY(-1px); }
.btn--miere { background: var(--miere); color: var(--maro-inchis); box-shadow: 0 4px 14px rgba(217, 142, 4, .35); }
.btn--miere:hover { background: var(--verde-inchis); color: #fff; box-shadow: 0 6px 18px rgba(85, 111, 28, .35); }
.btn--verde { background: var(--verde-inchis); color: #fff; }
.btn--verde:hover { background: var(--maro); color: #fff; }
.btn--contur { background: transparent; color: var(--maro); border-color: var(--maro); }
.btn--contur:hover { background: var(--maro); color: #fff; }
.btn--alb { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .85); }
.btn--alb:hover { background: #fff; color: var(--maro); }
.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: var(--verde-inchis); color: #fff; }
.btn--mic { min-height: 44px; padding: .5rem 1.1rem; font-size: .95rem; }
.btn--lat { width: 100%; }
.btn[disabled] { opacity: .6; cursor: wait; transform: none; }
.butoane { display: flex; flex-wrap: wrap; gap: .8rem; }
.butoane--centru { justify-content: center; }

.link-sageata {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 700; text-decoration: none; color: var(--verde-inchis);
}
.link-sageata svg { width: 18px; height: 18px; transition: transform .2s; }
.link-sageata:hover svg { transform: translateX(4px); }

/* ---------- Antet (header) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 248, 231, .96);
  -webkit-backdrop-filter: saturate(1.2) blur(8px);
  backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid var(--linie);
  transition: box-shadow .25s;
}
.site-header.umbrit { box-shadow: 0 4px 18px rgba(92, 58, 30, .1); }
.site-header .container { max-width: 1300px; }
.header__inner { display: flex; align-items: center; gap: .75rem; min-height: var(--header-h); }

.logo {
  display: flex; align-items: center; gap: .6rem; margin-right: auto;
  text-decoration: none; color: var(--maro);
  font-family: var(--f-titlu); font-weight: 700; font-size: 1.12rem; line-height: 1.1;
}
.logo:hover { color: var(--maro); }
.logo svg { width: 44px; height: 44px; flex: none; }
.logo small {
  display: block; margin-top: 3px;
  font-family: var(--f-text); font-weight: 600; font-size: .7rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--text-2);
}

.nav {
  position: fixed; left: 0; right: 0; top: var(--header-h);
  max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  background: var(--crem); border-bottom: 1px solid var(--linie);
  box-shadow: var(--umbra-mare);
  padding: .5rem 20px 1.5rem;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.nav.deschis { opacity: 1; visibility: visible; transform: none; }
.nav ul { list-style: none; margin: 0; padding: 0; }
.nav a {
  display: block; padding: .9rem .4rem;
  color: var(--maro); font-weight: 600; text-decoration: none;
  border-bottom: 1px solid var(--linie);
}
.nav a[aria-current="page"] { box-shadow: inset 4px 0 0 var(--miere); padding-left: .9rem; }
.nav__extra { display: grid; gap: .7rem; margin-top: 1.1rem; }

.header__actiuni { display: none; align-items: center; gap: .8rem; }
.header__tel {
  display: inline-flex; align-items: center; gap: .45rem;
  min-height: 44px; padding: 0 .4rem;
  color: var(--maro); font-weight: 700; text-decoration: none; white-space: nowrap;
}
.header__tel svg { width: 22px; height: 22px; color: var(--verde-inchis); }
.header__tel span { display: none; }

.nav-toggle {
  display: grid; place-items: center; width: 48px; height: 48px; margin-right: -8px;
  border: 0; background: transparent; color: var(--maro); cursor: pointer; border-radius: 12px;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 24px; height: 2.5px; border-radius: 2px; background: currentColor;
  position: relative; transition: transform .25s, background-color .25s;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 640px) {
  .header__actiuni { display: flex; }
  .nav__extra { display: none; }
}
@media (min-width: 900px) {
  .header__tel span { display: inline; }
}
@media (min-width: 1280px) {
  .nav {
    position: static; max-height: none; overflow: visible;
    background: none; border: 0; box-shadow: none; padding: 0;
    opacity: 1; visibility: visible; transform: none;
  }
  .nav ul { display: flex; gap: .15rem; }
  .nav a {
    position: relative; border: 0; border-radius: 999px;
    padding: .5rem .7rem; font-size: .98rem;
  }
  .nav a:hover { background: var(--crem-2); color: var(--maro); }
  .nav a[aria-current="page"] { box-shadow: none; padding-left: .7rem; }
  .nav a[aria-current="page"]::after {
    content: ""; position: absolute; left: .7rem; right: .7rem; bottom: .15rem;
    height: 3px; border-radius: 3px; background: var(--miere);
  }
  .nav-toggle { display: none; }
  .header__actiuni { margin-left: .5rem; }
}

/* ---------- Imagini și locuri pentru fotografii ---------- */
.ph {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 100%; aspect-ratio: 4 / 3; padding: 1rem; overflow: hidden;
  border-radius: var(--r);
  background: var(--fagure-alb), linear-gradient(140deg, #F9D77E 0%, #EDB23C 45%, #C9851C 100%);
}
.ph--inchis { background: var(--fagure-alb), linear-gradient(140deg, #9A6A2E 0%, #6E4521 50%, #3E2612 100%); }
.ph--verde { background: var(--fagure-alb), linear-gradient(140deg, #C8D98F 0%, #8FAE45 50%, #5E7D1E 100%); }
.ph__eticheta {
  display: inline-flex; align-items: center; gap: .45rem; max-width: 92%;
  background: rgba(255, 248, 231, .94); color: var(--maro);
  font-size: .85rem; font-weight: 600; line-height: 1.35; text-align: left;
  padding: .45rem .8rem; border-radius: 10px; box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}
.ph__eticheta svg { width: 18px; height: 18px; flex: none; }
.foto { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r); }
.r-lat { aspect-ratio: 16 / 9; }
.r-inalt { aspect-ratio: 4 / 5; }
.r-patrat { aspect-ratio: 1 / 1; }
.umbra { box-shadow: var(--umbra-mare); }

/* ---------- Hero (pagina Acasă) ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; align-items: flex-end;
  min-height: clamp(560px, 88vh, 800px);
  color: #fff;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media .ph, .hero__media .foto {
  width: 100%; height: 100%; aspect-ratio: auto; border-radius: 0; object-fit: cover;
  align-items: flex-start; justify-content: flex-end;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(0deg, rgba(62, 38, 18, .94) 0%, rgba(62, 38, 18, .72) 55%, rgba(62, 38, 18, .25) 100%);
}
.hero__continut { max-width: 680px; padding-block: 6rem 3.5rem; }
.hero h1 { color: #fff; margin-bottom: .4em; }
.hero__sub { font-size: clamp(1.1rem, 2.6vw, 1.3rem); color: #FFF0CF; margin-bottom: 2rem; }
.hero__eticheta {
  display: inline-flex; align-items: center; gap: .5rem; margin-bottom: 1.2rem;
  background: rgba(244, 180, 0, .95); color: var(--maro-inchis);
  font-size: .85rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: .35rem .9rem; border-radius: 999px;
}
.hero__eticheta svg { width: 18px; height: 18px; }
.hero__garantii {
  display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; margin: 2rem 0 0; padding: 0; list-style: none;
  font-size: .95rem; color: #FFF0CF;
}
.hero__garantii li { display: flex; align-items: center; gap: .45rem; }
.hero__garantii svg { width: 18px; height: 18px; color: var(--miere); }
@media (min-width: 900px) {
  .hero { align-items: center; }
  .hero::before {
    background: linear-gradient(90deg, rgba(62, 38, 18, .92) 0%, rgba(62, 38, 18, .68) 50%, rgba(62, 38, 18, .15) 100%);
  }
  .hero__media .ph { align-items: flex-end; padding: 1.5rem; }
  .hero__continut { padding-block: 5rem; }
}

/* ---------- Secțiuni ---------- */
.sectiune { padding-block: clamp(3.5rem, 8vw, 6rem); }
.sectiune--alb { background: #fff; }
.sectiune--fagure { background: var(--fagure), var(--crem); }
.sectiune--crem2 { background: var(--fagure), var(--crem-2); }
.sectiune--maro { background: var(--fagure-inchis), var(--maro); color: #FFF0CF; }
.sectiune--maro h2, .sectiune--maro h3 { color: #fff; }
.sectiune--strans { padding-block: clamp(2.5rem, 5vw, 3.5rem); }

.antet { max-width: 740px; margin: 0 auto 2.75rem; text-align: center; }
.antet::before {
  content: ""; display: block; width: 84px; height: 24px; margin: 0 auto 1rem;
  background: var(--trei-hexagoane) center / contain no-repeat;
}
.antet--stanga { text-align: left; margin-left: 0; }
.antet--stanga::before { margin-left: 0; }
.supratitlu {
  display: block; margin-bottom: .5rem;
  font-size: .82rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--verde-inchis);
}
.sectiune--maro .supratitlu { color: var(--miere); }
.lead { font-size: 1.15rem; color: var(--text-2); }
.sectiune--maro .lead { color: #FFF0CF; }

.grila { display: grid; gap: 1.5rem; }
@media (min-width: 640px) {
  .grila--2, .grila--3, .grila--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1000px) {
  .grila--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grila--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.split { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 4.5rem; }
  .split--invers > :first-child { order: 2; }
  .split__media::after { content: ""; }
}
.split__media { position: relative; }
.split__media::after {
  content: none; position: absolute; z-index: -1; right: -18px; bottom: -18px; width: 60%; height: 60%;
  background: var(--fagure), var(--crem-2); border-radius: var(--r);
}
.split__media { isolation: isolate; }

.lista-bife { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: .7rem; }
.lista-bife li { position: relative; padding-left: 2.1rem; }
.lista-bife li::before {
  content: ""; position: absolute; left: 0; top: .2em; width: 1.4rem; height: 1.4rem;
  background: var(--bifa) center / contain no-repeat;
}

.semnatura {
  font-family: var(--f-titlu); font-style: italic; font-size: 1.35rem; color: var(--maro);
  margin-top: 1.5rem;
}

/* ---------- Carduri ---------- */
.card {
  background: #fff; border-radius: var(--r); box-shadow: var(--umbra);
  border: 1px solid rgba(234, 217, 181, .7);
  padding: 1.75rem;
}
.avantaj { text-align: center; }
.icon-hex {
  display: grid; place-items: center; width: 76px; height: 76px; margin: 0 auto 1.1rem;
  background: var(--miere); color: var(--maro-inchis); clip-path: var(--hexagon);
}
.icon-hex svg { width: 32px; height: 32px; }
.icon-hex--mic { width: 56px; height: 56px; margin: 0; }
.icon-hex--mic svg { width: 24px; height: 24px; }
.avantaj h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.avantaj p { margin: 0; color: var(--text-2); font-size: 1rem; }

/* Produse */
.produs {
  display: flex; flex-direction: column; overflow: hidden;
  background: #fff; border-radius: var(--r); box-shadow: var(--umbra);
  border: 1px solid rgba(234, 217, 181, .7);
  transition: transform .25s, box-shadow .25s;
}
.produs:hover { transform: translateY(-4px); box-shadow: var(--umbra-mare); }
.produs__media {
  display: block; width: 100%; padding: 0; border: 0; background: none; cursor: pointer; overflow: hidden;
}
.produs__media .ph, .produs__media .foto { border-radius: 0; transition: transform .4s; }
.produs__media:hover .ph, .produs__media:hover .foto { transform: scale(1.03); }
.produs__corp { display: flex; flex-direction: column; flex: 1; padding: 1.25rem 1.25rem 1.4rem; }
.eticheta {
  align-self: flex-start; margin-bottom: .6rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--verde-inchis); background: #EEF3E2; padding: .2rem .65rem; border-radius: 999px;
}
.produs h3 { font-size: 1.25rem; margin-bottom: .35rem; }
.produs__desc { font-size: .98rem; color: var(--text-2); margin-bottom: 1rem; }
.variante { list-style: none; padding: 0; margin: 0 0 1.2rem; border-top: 1px dashed var(--linie); }
.variante li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: .45rem 0; border-bottom: 1px dashed var(--linie); font-size: .95rem;
}
.variante strong { white-space: nowrap; }
.produs__actiuni { margin-top: auto; display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; }
.produs__actiuni .btn--miere { flex: 1 1 auto; }
.btn-rotund {
  display: inline-grid; place-items: center; width: 50px; height: 50px; flex: none;
  border-radius: 50%; border: 0; cursor: pointer; text-decoration: none;
  background: var(--wa); color: #fff; transition: background-color .2s;
}
.btn-rotund:hover { background: var(--verde-inchis); color: #fff; }
.btn-rotund svg { width: 22px; height: 22px; }
.btn-text {
  width: 100%; min-height: 44px; margin-top: .25rem; padding: .4rem;
  border: 0; background: none; cursor: pointer;
  font: inherit; font-weight: 700; font-size: .95rem; color: var(--verde-inchis);
  text-decoration: underline; text-underline-offset: 3px;
}
.btn-text:hover { color: var(--maro); }

.filtre { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-bottom: 2.25rem; }
.filtru {
  min-height: 46px; padding: .5rem 1.25rem; cursor: pointer;
  border-radius: 999px; border: 2px solid var(--linie); background: #fff;
  font: inherit; font-weight: 600; color: var(--maro);
  transition: background-color .2s, color .2s, border-color .2s;
}
.filtru:hover { border-color: var(--maro); }
.filtru[aria-pressed="true"] { background: var(--maro); border-color: var(--maro); color: #fff; }
.fara-rezultate { text-align: center; color: var(--text-2); }

/* Recenzii */
.recenzie { position: relative; display: flex; flex-direction: column; }
.recenzie::before {
  content: "\201C"; position: absolute; top: .2rem; right: 1.2rem;
  font-family: var(--f-titlu); font-size: 5rem; line-height: 1; color: var(--crem-2);
}
.stele { display: flex; gap: 3px; color: var(--chihlimbar); margin-bottom: .9rem; }
.stele svg { width: 20px; height: 20px; fill: currentColor; stroke: none; }
.recenzie blockquote { margin: 0 0 1.4rem; font-style: italic; position: relative; }
.recenzie__autor { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.initiale {
  display: grid; place-items: center; width: 48px; height: 48px; flex: none;
  clip-path: var(--hexagon); background: var(--crem-2); color: var(--maro);
  font-weight: 700; font-family: var(--f-titlu);
}
.recenzie__autor strong { display: block; line-height: 1.3; }
.recenzie__autor span { font-size: .92rem; color: var(--text-2); }
.nota-exemplu {
  max-width: 740px; margin: 2rem auto 0; text-align: center; font-size: .92rem; color: var(--text-2);
}

/* Banner apel la acțiune */
.cta {
  position: relative; overflow: hidden;
  background: var(--fagure-inchis), linear-gradient(135deg, var(--maro) 0%, var(--maro-inchis) 100%);
  color: #FFF0CF; text-align: center;
  border-radius: 26px; padding: clamp(2.2rem, 6vw, 4rem) clamp(1.25rem, 5vw, 3rem);
  box-shadow: var(--umbra-mare);
}
.cta h2 { color: #fff; margin-bottom: .5rem; }
.cta p { font-size: 1.15rem; margin-bottom: 1.75rem; }
.cta__tel { color: var(--miere); white-space: nowrap; text-decoration: none; }
.cta__tel:hover { color: #fff; text-decoration: underline; }

/* Antet de pagină interioară */
.antet-pagina {
  position: relative;
  background: var(--fagure-inchis), linear-gradient(135deg, var(--maro) 0%, var(--maro-inchis) 100%);
  color: #FFF0CF;
  padding: clamp(2.75rem, 7vw, 4.75rem) 0 clamp(2.5rem, 6vw, 4rem);
  border-bottom: 6px solid var(--miere);
}
.antet-pagina h1 { color: #fff; max-width: 20ch; margin-bottom: .4em; }
.antet-pagina .lead { color: #FFF0CF; max-width: 640px; margin: 0; }
.firimituri { font-size: .9rem; margin-bottom: 1rem; }
.firimituri ol { list-style: none; display: flex; flex-wrap: wrap; gap: .3rem; margin: 0; padding: 0; }
.firimituri li + li::before { content: "›"; margin-right: .3rem; color: var(--miere); }
.firimituri a { color: #FBE3A4; }
.firimituri a:hover { color: #fff; }

/* Pași comandă */
.pasi { display: grid; gap: 1.5rem; counter-reset: pas; }
@media (min-width: 900px) { .pasi { grid-template-columns: repeat(3, 1fr); } }
.pas { text-align: center; position: relative; }
.pas__nr {
  display: grid; place-items: center; width: 68px; height: 68px; margin: 0 auto 1rem;
  clip-path: var(--hexagon); background: var(--miere); color: var(--maro-inchis);
  font-family: var(--f-titlu); font-size: 1.7rem; font-weight: 700;
}
.pas h3 { margin-bottom: .4rem; }
.pas p { margin: 0; color: var(--text-2); }
.pas .icon-linie { display: flex; justify-content: center; gap: .5rem; margin-top: 1rem; color: var(--verde-inchis); }

/* Întrebări frecvente */
.faq { max-width: 840px; margin-inline: auto; display: grid; gap: .8rem; }
.faq details {
  background: #fff; border-radius: var(--r-mic); box-shadow: var(--umbra);
  border: 1px solid var(--linie); transition: box-shadow .2s;
}
.faq details[open] { box-shadow: var(--umbra-mare); }
.faq summary {
  position: relative; list-style: none; cursor: pointer;
  padding: 1.1rem 3.6rem 1.1rem 1.3rem; min-height: 56px;
  font-weight: 700; font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%;
  background: var(--crem-2); font-size: 1.35rem; font-weight: 600; line-height: 1;
}
.faq details[open] summary::after { content: "\2013"; background: var(--miere); }
.faq .raspuns { padding: 0 1.3rem 1.25rem; color: var(--text-2); }
.faq .raspuns p:last-child { margin: 0; }

/* Galerie foto */
.galerie { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
@media (min-width: 768px) { .galerie { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; } }
.galerie__item {
  display: block; padding: 0; border: 0; background: none; cursor: zoom-in;
  border-radius: var(--r-mic); overflow: hidden;
}
.galerie__item .ph, .galerie__item .foto { aspect-ratio: 1 / 1; border-radius: var(--r-mic); transition: transform .4s; }
.galerie__item .ph__eticheta { font-size: .78rem; }
.galerie__item:hover .ph, .galerie__item:hover .foto { transform: scale(1.04); }

/* Ferestre (detalii produs / galerie) */
dialog.fereastra {
  width: 100%; max-width: min(960px, calc(100% - 24px)); max-height: calc(100dvh - 24px);
  padding: 0; border: 0; border-radius: 22px; overflow: auto;
  background: var(--crem); color: var(--text); box-shadow: var(--umbra-mare);
}
dialog.fereastra::backdrop { background: rgba(40, 24, 10, .72); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.inchide {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  display: grid; place-items: center; width: 46px; height: 46px;
  border: 0; border-radius: 50%; cursor: pointer;
  background: #fff; color: var(--maro); box-shadow: var(--umbra);
}
.inchide:hover { background: var(--miere); }
.detaliu { display: grid; }
.detaliu__media .ph, .detaliu__media .foto { border-radius: 0; height: 100%; }
.detaliu__corp { padding: 1.75rem 1.5rem 2rem; }
.detaliu__corp h2 { font-size: clamp(1.6rem, 4vw, 2.1rem); padding-right: 2.5rem; }
.detaliu__corp h3 { font-size: 1.1rem; margin: 1.5rem 0 .5rem; }
.detaliu__corp .lista-bife { gap: .45rem; margin-bottom: 1rem; }
.detaliu__corp .variante { margin-top: .5rem; }
@media (min-width: 820px) {
  .detaliu { grid-template-columns: 5fr 6fr; }
  .detaliu__media { position: sticky; top: 0; align-self: start; }
  .detaliu__media .ph, .detaliu__media .foto { aspect-ratio: 4 / 5; }
  .detaliu__corp { padding: 2.25rem 2.25rem 2.5rem; }
}

dialog.lightbox {
  width: 100%; max-width: min(1100px, calc(100% - 24px)); padding: 0; border: 0;
  background: transparent; color: #fff; overflow: visible;
}
dialog.lightbox::backdrop { background: rgba(25, 15, 6, .9); }
.lightbox figure { margin: 0; }
.lightbox .ph, .lightbox .foto { aspect-ratio: 3 / 2; max-height: 78dvh; border-radius: var(--r); object-fit: contain; }
.lightbox figcaption { text-align: center; margin-top: .9rem; font-size: 1rem; }
.lightbox .inchide { top: -8px; right: -4px; }
.lightbox__nav { display: flex; justify-content: center; gap: 1rem; margin-top: .9rem; }
.lightbox__nav button {
  display: grid; place-items: center; width: 48px; height: 48px; cursor: pointer;
  border: 2px solid rgba(255, 255, 255, .6); border-radius: 50%; background: transparent; color: #fff;
}
.lightbox__nav button:hover { background: #fff; color: var(--maro); }

/* ---------- Formulare și contact ---------- */
.formular {
  background: #fff; border-radius: var(--r); box-shadow: var(--umbra);
  border: 1px solid rgba(234, 217, 181, .7);
  padding: clamp(1.25rem, 4.5vw, 2.5rem);
}
.camp { display: grid; gap: .35rem; margin-bottom: 1.15rem; }
.camp > label, .camp > legend, .eticheta-camp { font-weight: 700; }
.camp small { color: var(--text-2); font-size: .9rem; }
.obligatoriu { color: #A4380F; }
.camp input[type="text"], .camp input[type="tel"], .camp input[type="email"], .camp textarea, .camp select {
  width: 100%; min-height: 52px; padding: .8rem 1rem;
  font: inherit; font-size: 1rem; color: var(--text);
  background: var(--crem); border: 2px solid var(--linie); border-radius: var(--r-mic);
  transition: border-color .2s, box-shadow .2s;
}
.camp textarea { min-height: 120px; resize: vertical; }
.camp input:focus, .camp textarea:focus, .camp select:focus {
  outline: none; border-color: var(--verde); box-shadow: 0 0 0 3px rgba(107, 142, 35, .25);
}
.camp input:user-invalid, .camp textarea:user-invalid { border-color: #C0521F; }
fieldset.camp { border: 0; padding: 0; margin: 0 0 1.15rem; min-width: 0; }
fieldset.camp legend { padding: 0; margin-bottom: .5rem; }
.randuri-2 { display: grid; gap: 0 1.1rem; }
@media (min-width: 640px) { .randuri-2 { grid-template-columns: 1fr 1fr; } }

.lista-produse { display: grid; gap: .5rem; }
@media (min-width: 560px) { .lista-produse { grid-template-columns: 1fr 1fr; } }
.check-produs {
  display: flex; align-items: center; gap: .65rem; min-height: 50px;
  padding: .55rem .85rem; cursor: pointer; font-size: .98rem; line-height: 1.3;
  background: var(--crem); border: 2px solid var(--linie); border-radius: var(--r-mic);
  transition: border-color .2s, background-color .2s;
}
.check-produs:hover { border-color: var(--chihlimbar); }
.check-produs:has(input:checked) { border-color: var(--verde); background: #F2F6E8; }
input[type="checkbox"] { width: 22px; height: 22px; flex: none; accent-color: var(--verde-inchis); margin: 0; }
.acord { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1.4rem; font-size: .96rem; cursor: pointer; }
.acord input { margin-top: .2rem; }
.capcana { position: absolute; left: -9999px; }
.formular__butoane { display: grid; gap: .75rem; }
@media (min-width: 640px) { .formular__butoane { grid-template-columns: 1fr 1fr; } }
.stare { margin-top: 1.1rem; padding: 1rem 1.2rem; border-radius: var(--r-mic); font-weight: 600; }
.stare:empty { display: none; }
.stare--ok { background: #EEF5E0; color: #34470F; border: 1px solid #C5D79B; }
.stare--eroare { background: #FDECE4; color: #8A2C0B; border: 1px solid #F1BFA8; }
.stare--info { background: var(--crem-2); color: var(--maro); border: 1px solid var(--linie); }

.contact-grila { display: grid; gap: 1rem; }
@media (min-width: 640px) { .contact-grila { grid-template-columns: 1fr 1fr; } }
.contact-card { display: flex; gap: 1rem; align-items: flex-start; padding: 1.3rem; }
.contact-card h3 { font-size: 1.1rem; margin-bottom: .2rem; }
.contact-card p { margin: 0 0 .6rem; color: var(--text-2); font-size: .98rem; word-break: break-word; }
.contact-card a.mare { font-weight: 700; font-size: 1.1rem; color: var(--maro); word-break: break-word; }

.contact-layout { display: grid; gap: 2.5rem; }
@media (min-width: 1000px) {
  .contact-layout { grid-template-columns: 5fr 7fr; align-items: start; }
  .contact-layout .contact-grila { grid-template-columns: 1fr; }
}

.harta { border-radius: var(--r); overflow: hidden; box-shadow: var(--umbra); background: #fff; }
.harta iframe { display: block; width: 100%; height: 380px; border: 0; }
.harta__gol { padding: 2rem 1.5rem; text-align: center; }

/* ---------- Blog / articole ---------- */
.articol-card { display: flex; flex-direction: column; padding: 0; overflow: hidden; }
.articol-card > a { text-decoration: none; }
.articol-card .ph, .articol-card .foto { border-radius: 0; aspect-ratio: 16 / 10; }
.articol-card__corp { display: flex; flex-direction: column; flex: 1; padding: 1.5rem; }
.articol-card h2, .articol-card h3 { font-size: 1.3rem; }
.articol-card h2 a, .articol-card h3 a { color: var(--maro); text-decoration: none; }
.articol-card h2 a:hover, .articol-card h3 a:hover { text-decoration: underline; }
.articol-card p { color: var(--text-2); font-size: 1rem; }
.articol-card .link-sageata { margin-top: auto; }
.meta { font-size: .9rem; color: var(--text-2); margin-bottom: .6rem; }

.articol { max-width: 760px; margin-inline: auto; }
.articol > .ph, .articol > .foto { margin-bottom: 2.25rem; }
.articol h2 { font-size: clamp(1.4rem, 3.4vw, 1.75rem); margin-top: 2.2rem; }
.articol li { margin-bottom: .45rem; }
.nota {
  background: var(--crem-2); border-left: 5px solid var(--miere);
  padding: 1.1rem 1.3rem; border-radius: 0 var(--r-mic) var(--r-mic) 0;
  font-size: .98rem; margin: 2rem 0;
}
.nota p:last-child { margin: 0; }
.articol__final { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--linie); }

.text-legal { max-width: 820px; margin-inline: auto; }
.text-legal h2 { font-size: 1.45rem; margin-top: 2.2rem; }
.text-legal h3 { font-size: 1.15rem; margin-top: 1.4rem; }
.text-legal table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem; font-size: .96rem; background: #fff; }
.text-legal th, .text-legal td { text-align: left; padding: .7rem .8rem; border: 1px solid var(--linie); vertical-align: top; }
.text-legal th { background: var(--crem-2); }
.tabel-scroll { overflow-x: auto; }

/* ---------- Parteneri / finanțare ---------- */
.parteneri { background: #fff; border-top: 1px solid var(--linie); padding-block: 2rem 1.75rem; text-align: center; }
.parteneri__logo { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.5rem 3rem; }
.parteneri__logo img { width: auto; }
.parteneri__logo img:first-child { height: 60px; }
.parteneri__logo img:last-child { height: 96px; }
.parteneri__nota { max-width: 760px; margin: 1.25rem auto 0; font-size: .8rem; line-height: 1.5; color: var(--text-2); }
@media (min-width: 640px) {
  .parteneri__logo img:first-child { height: 72px; }
  .parteneri__logo img:last-child { height: 110px; }
}

/* ---------- Subsol (footer) ---------- */
.site-footer {
  position: relative;
  background: var(--fagure-inchis), var(--maro-inchis);
  color: #F3E3C3; font-size: .97rem;
  padding-top: 3.75rem;
}
.site-footer::before {
  /* fâșie discretă cu aspect de lemn */
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 8px;
  background: repeating-linear-gradient(90deg, #8A5A30 0 4px, #734925 4px 9px, #94633A 9px 15px, #6A4222 15px 19px);
}
.site-footer h2 { font-size: 1.15rem; color: #fff; margin-bottom: 1rem; }
.site-footer a { color: #FBE3A4; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer__grila { display: grid; gap: 2.5rem; }
@media (min-width: 700px) { .footer__grila { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .footer__grila { grid-template-columns: 1.3fr .9fr 1.2fr 1.3fr; } }
.footer__logo { color: #fff; margin-bottom: 1rem; }
.footer__logo small { color: #E9D3A8; }
.footer__lista { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer__contact li { display: flex; gap: .6rem; align-items: flex-start; }
.footer__contact svg { width: 20px; height: 20px; margin-top: .2rem; color: var(--miere); }
.social { display: flex; gap: .6rem; margin-top: 1.25rem; }
.social a {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .18); color: #fff;
}
.social a:hover { background: var(--miere); color: var(--maro-inchis); text-decoration: none; }
.social a.lipsa { border-style: dashed; border-color: var(--chihlimbar); }
.insigne { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.25rem; }
.insigna {
  display: flex; align-items: center; gap: .6rem; width: 250px; max-width: 100%; height: 50px;
  padding: 0 .75rem; border-radius: 8px; background: #fff; color: #1B3A6B !important;
  font-size: .72rem; font-weight: 700; line-height: 1.2; text-transform: uppercase;
}
.insigna:hover { text-decoration: none !important; box-shadow: 0 0 0 3px var(--miere); }
.insigna b { font-size: 1.15rem; letter-spacing: .02em; padding-right: .6rem; border-right: 2px solid #1B3A6B; }
.footer__jos {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem 1.5rem;
  margin-top: 3rem; padding-block: 1.5rem; font-size: .88rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.footer__jos p { margin: 0; }
.buton-link {
  padding: 0; border: 0; background: none; cursor: pointer;
  font: inherit; color: #FBE3A4; text-decoration: underline; text-underline-offset: 3px;
}
.buton-link:hover { color: #fff; }
@media (max-width: 899px) { .site-footer { padding-bottom: 5.5rem; } }

/* ---------- Butoane flotante (WhatsApp / apel) ---------- */
.flotante { position: fixed; right: 16px; bottom: 16px; z-index: 90; display: flex; flex-direction: column; gap: .7rem; }
.flotante a {
  display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .25); transition: transform .2s;
}
.flotante a:hover { transform: scale(1.06); }
.flotante svg { width: 28px; height: 28px; }
.flotante__wa { background: var(--wa); color: #fff; }
.flotante__wa:hover { color: #fff; }
.flotante__tel { background: var(--miere); color: var(--maro-inchis); }
.flotante__tel:hover { color: var(--maro-inchis); }
@media (min-width: 900px) { .flotante__tel { display: none !important; } }
body.cookie-activ .flotante { display: none; }

/* ---------- Banner cookie-uri ---------- */
.cookie {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 150;
  max-width: 760px; margin-inline: auto;
  display: grid; gap: 1rem; padding: 1.25rem;
  background: #fff; border: 1px solid var(--linie); border-radius: 18px; box-shadow: var(--umbra-mare);
}
.cookie h2 { font-size: 1.1rem; margin: 0 0 .3rem; }
.cookie p { margin: 0; font-size: .95rem; }
.cookie__butoane { display: flex; flex-wrap: wrap; gap: .6rem; }
.cookie__butoane .btn { flex: 1 1 auto; }
@media (min-width: 760px) {
  .cookie { grid-template-columns: 1fr auto; align-items: center; padding: 1.4rem 1.6rem; }
  .cookie__butoane { flex-direction: column; }
}

/* ---------- Animații discrete la derulare ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.vizibil { opacity: 1; transform: none; }
.grila > .reveal:nth-child(2) { transition-delay: .08s; }
.grila > .reveal:nth-child(3) { transition-delay: .16s; }
.grila > .reveal:nth-child(4) { transition-delay: .24s; }

/* ---------- Pagina 404 ---------- */
.pagina-404 { min-height: 60vh; display: grid; place-items: center; text-align: center; }

/* ---------- Comutator de limbă RO / EN ---------- */
.limba {
  display: flex; flex: none; align-items: center;
  border: 1px solid var(--linie); border-radius: 999px; overflow: hidden;
}
.limba a {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; min-height: 36px; padding: 0 .55rem;
  font-size: .82rem; font-weight: 700; letter-spacing: .04em;
  color: var(--maro); text-decoration: none;
}
.limba a:hover { background: var(--crem-2); color: var(--maro); }
.limba a[aria-current="true"] { background: var(--miere); color: var(--maro); }
@media (min-width: 1280px) { .limba { margin-left: .5rem; } }
@media (min-width: 1280px) {
  .nav a, .logo span { white-space: nowrap; }
}
@media (min-width: 1280px) and (max-width: 1499px) {
  .header__tel span { display: none; }
  .nav a { padding: .5rem .55rem; }
}
