/* ==========================================================================
   Pensiunea Prestige — Roșiori de Vede
   Un singur stylesheet. Fără framework, fără build step.
   ========================================================================== */

:root {
  /* Culori — inspirate din piatra bej a fațadei, lemn, lenjerie albă */
  --cream:        #FBF8F3;
  --cream-deep:   #F3EDE3;
  --surface:      #FFFFFF;
  --ink:          #2A211C;
  --ink-soft:     #4A3E36;
  --muted:        #7A6A5E;
  --line:         #E6DCCD;

  --gold:         #B08D57;
  --gold-deep:    #8F6F3E;
  --gold-wash:    #F7F0E4;

  --forest:       #35544A;
  --forest-deep:  #274038;
  --forest-wash:  #EDF2F0;

  --whatsapp:     #25D366;
  --whatsapp-dk:  #128C7E;

  /* Tipografie */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Spațiere */
  --s-1: 0.25rem; --s-2: 0.5rem;  --s-3: 0.75rem; --s-4: 1rem;
  --s-5: 1.5rem;  --s-6: 2rem;    --s-7: 3rem;    --s-8: 4rem;
  --s-9: 6rem;    --s-10: 8rem;

  --radius:    14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(42, 33, 28, .05), 0 2px 8px rgba(42, 33, 28, .04);
  --shadow:    0 4px 12px rgba(42, 33, 28, .07), 0 12px 32px rgba(42, 33, 28, .06);
  --shadow-lg: 0 12px 28px rgba(42, 33, 28, .10), 0 28px 64px rgba(42, 33, 28, .10);

  --wrap: 1160px;
  --header-h: 72px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------- Reset -- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 var(--s-4);
  font-weight: 600;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
p  { margin: 0 0 var(--s-4); }
p:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: var(--s-4); top: -100px;
  background: var(--ink); color: #fff;
  padding: var(--s-3) var(--s-5); border-radius: var(--radius);
  z-index: 200; transition: top .2s var(--ease);
}
.skip-link:focus { top: var(--s-4); }

/* ------------------------------------------------------------- Layout -- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.section { padding-block: clamp(3.5rem, 8vw, var(--s-9)); }
.section--tight { padding-block: clamp(2.5rem, 5vw, var(--s-7)); }
.section--cream { background: var(--cream-deep); }
.section--white { background: var(--surface); }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: var(--s-3);
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--gold);
}

.lead { font-size: clamp(1.08rem, 1.6vw, 1.25rem); color: var(--ink-soft); }
.section-head { max-width: 62ch; margin-bottom: var(--s-7); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }

/* ------------------------------------------------------------ Butoane -- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--s-3);
  padding: 0.95rem 1.7rem;
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 600;
  line-height: 1;
  border: 1.5px solid transparent;
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background-color .18s var(--ease), color .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 20px; height: 20px; flex: none; }

.btn--primary  { background: var(--gold); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--gold-deep); box-shadow: var(--shadow); }

.btn--wa { background: var(--whatsapp); color: #06301A; box-shadow: var(--shadow-sm); }
.btn--wa:hover { background: #1FBE5A; box-shadow: var(--shadow); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--gold); background: var(--gold-wash); }

.btn--light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(8px); }
.btn--light:hover { background: rgba(255,255,255,.24); }

.btn--lg { padding: 1.15rem 2.1rem; font-size: 1.06rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-3); }

/* ------------------------------------------------------------- Header -- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 248, 243, .88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex; align-items: center; gap: var(--s-5);
  min-height: var(--header-h);
}
.brand {
  display: flex; flex-direction: column; text-decoration: none;
  margin-right: auto; line-height: 1.1;
}
.brand__name {
  font-family: var(--font-display); font-size: 1.3rem;
  font-weight: 600; color: var(--ink); letter-spacing: -0.01em;
}
.brand__place {
  font-size: .68rem; letter-spacing: .19em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600;
}

.nav { display: flex; align-items: center; gap: var(--s-5); }
.nav a {
  text-decoration: none; font-size: .95rem; font-weight: 500;
  color: var(--ink-soft); position: relative; padding-block: 4px;
  transition: color .18s var(--ease);
}
.nav a:hover { color: var(--gold-deep); }
.nav a[aria-current="page"] { color: var(--ink); font-weight: 600; }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--gold); border-radius: 2px;
}

.header__phone {
  display: inline-flex; align-items: center; gap: var(--s-2);
  text-decoration: none; font-weight: 700; color: var(--ink);
  white-space: nowrap; font-size: .98rem;
  padding: .6rem 1.1rem; border-radius: var(--radius-pill);
  background: var(--gold-wash); border: 1px solid var(--line);
  transition: background .18s var(--ease), border-color .18s var(--ease);
}
.header__phone:hover { background: #fff; border-color: var(--gold); }
.header__phone svg { width: 17px; height: 17px; color: var(--gold-deep); }

.burger {
  display: none; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line);
  border-radius: 12px; cursor: pointer; color: var(--ink);
}
.burger svg { width: 22px; height: 22px; }
.burger .icon-close { display: none; }
.burger[aria-expanded="true"] .icon-open { display: none; }
.burger[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 900px) {
  .burger { display: inline-flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: var(--s-3) 1.25rem var(--s-5);
    box-shadow: var(--shadow);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .2s var(--ease), transform .2s var(--ease);
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
  }
  .nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { padding: var(--s-4) var(--s-2); border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav a[aria-current="page"]::after { display: none; }
  .header__phone span { display: none; }
  .header__phone { padding: .6rem .8rem; }
}

/* --------------------------------------------------------------- Hero -- */
.hero { position: relative; isolation: isolate; color: #fff; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(28,20,15,.62) 0%, rgba(28,20,15,.48) 45%, rgba(28,20,15,.78) 100%);
}
.hero__inner {
  padding-block: clamp(5rem, 15vw, 9.5rem);
  max-width: 46rem;
}
.hero h1 { color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,.3); }
.hero .eyebrow { color: #E8D3AC; }
.hero .eyebrow::before { background: #E8D3AC; }
.hero__text {
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  color: rgba(255,255,255,.93);
  max-width: 40rem; margin-bottom: var(--s-6);
  text-shadow: 0 1px 12px rgba(0,0,0,.35);
}
.hero .btn-row { margin-bottom: var(--s-6); }
.hero__note {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-size: .93rem; color: rgba(255,255,255,.85);
}
.hero__note svg { width: 16px; height: 16px; }

/* Hero mic pentru paginile interioare */
.pagehead {
  background: var(--cream-deep);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(2.5rem, 6vw, var(--s-8));
}
.pagehead__inner { max-width: 60ch; }
.pagehead h1 { margin-bottom: var(--s-4); }

.crumbs { font-size: .85rem; color: var(--muted); margin-bottom: var(--s-4); }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--gold-deep); text-decoration: underline; }
.crumbs span { margin-inline: var(--s-2); opacity: .5; }

/* -------------------------------------------------------- Bandă atuuri -- */
.strip {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.strip__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5); padding-block: var(--s-6);
}
.strip__item { display: flex; gap: var(--s-3); align-items: flex-start; }
.strip__item svg { width: 24px; height: 24px; color: var(--gold); flex: none; margin-top: 3px; }
.strip__item strong { display: block; color: var(--ink); font-size: .98rem; font-weight: 600; }
.strip__item span { font-size: .88rem; color: var(--muted); line-height: 1.5; }
@media (max-width: 860px) { .strip__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .strip__grid { grid-template-columns: 1fr; gap: var(--s-4); } }

/* ---------------------------------------------------------- Split text -- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, var(--s-8)); align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); aspect-ratio: 3/2; object-fit: cover;
}
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
}

.quote {
  margin: var(--s-6) 0 0; padding: var(--s-5) var(--s-6);
  background: var(--gold-wash); border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.quote p {
  font-family: var(--font-display); font-size: 1.15rem;
  font-style: italic; color: var(--ink); margin-bottom: var(--s-2);
}
.quote cite { font-style: normal; font-size: .85rem; color: var(--muted); }

/* -------------------------------------------------------------- Carduri -- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
@media (max-width: 900px) { .cards { grid-template-columns: 1fr; max-width: 30rem; margin-inline: auto; } }

.card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  text-decoration: none; color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.card__img { aspect-ratio: 4/3; overflow: hidden; background: var(--cream-deep); }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card__img img { transform: scale(1.045); }
.card__img--grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 2px; }
.card__img--grid > span { display: block; overflow: hidden; }
.card__body { padding: var(--s-5); display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: var(--s-2); }
.card__body p { font-size: .95rem; color: var(--muted); flex: 1; }
.card__more {
  margin-top: var(--s-4); font-weight: 600; font-size: .92rem;
  color: var(--gold-deep); display: inline-flex; align-items: center; gap: var(--s-2);
}
.card__more svg { width: 16px; height: 16px; transition: transform .22s var(--ease); }
.card:hover .card__more svg { transform: translateX(4px); }

/* ----------------------------------------------------- Listă facilități -- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
@media (max-width: 900px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

.feature {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: var(--s-5);
}
.feature__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--gold-wash); color: var(--gold-deep);
  display: grid; place-items: center; margin-bottom: var(--s-4);
}
.feature__icon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.12rem; margin-bottom: var(--s-2); }
.feature p { font-size: .93rem; color: var(--muted); }

/* Listă simplă cu bifă */
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-3); }
.ticks li { display: flex; gap: var(--s-3); align-items: flex-start; font-size: 1rem; }
.ticks li::before {
  content: ""; flex: none; width: 22px; height: 22px; margin-top: 2px;
  border-radius: 50%; background: var(--gold-wash) no-repeat center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 24 24' fill='none' stroke='%238F6F3E' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.ticks--forest li::before {
  background-color: var(--forest-wash);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 24 24' fill='none' stroke='%2335544A' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.ticks--2col { grid-template-columns: 1fr 1fr; gap: var(--s-3) var(--s-5); }
@media (max-width: 640px) { .ticks--2col { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------- Camere -- */
.room {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.75rem, 4vw, var(--s-7)); align-items: center;
  padding-block: clamp(2rem, 5vw, var(--s-7));
  border-bottom: 1px solid var(--line);
}
.room:last-child { border-bottom: 0; }
.room--reverse .room__media { order: 2; }
.room__media img {
  width: 100%; aspect-ratio: 3/2; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.room__body h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.tag {
  display: inline-block; font-size: .74rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-deep); background: var(--gold-wash);
  padding: .4rem .8rem; border-radius: var(--radius-pill);
  margin-bottom: var(--s-3);
}
@media (max-width: 820px) {
  .room { grid-template-columns: 1fr; }
  .room--reverse .room__media { order: 0; }
}

/* ------------------------------------------------------------ Galerie -- */
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: var(--s-2);
  margin-bottom: var(--s-6);
}
.filter-btn {
  font-family: var(--font-body); font-size: .92rem; font-weight: 600;
  padding: .55rem 1.15rem; border-radius: var(--radius-pill);
  border: 1.5px solid var(--line); background: var(--surface);
  color: var(--ink-soft); cursor: pointer;
  transition: all .18s var(--ease);
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold-deep); }
.filter-btn[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
@media (max-width: 860px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery { grid-template-columns: 1fr; } }

.gallery__item {
  position: relative; padding: 0; border: 0; cursor: zoom-in;
  border-radius: var(--radius); overflow: hidden;
  background: var(--cream-deep); box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.gallery__item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 1.5rem .9rem .7rem;
  font-size: .87rem; font-weight: 600; color: #fff; text-align: left;
  background: linear-gradient(180deg, transparent, rgba(20,14,10,.72));
}
.gallery__item[hidden] { display: none; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  display: none; place-items: center;
  background: rgba(20, 14, 10, .93);
  padding: var(--s-4);
}
.lightbox[open], .lightbox.is-open { display: grid; }
.lightbox__fig { margin: 0; max-width: min(96vw, 1200px); text-align: center; }
.lightbox__fig img {
  max-width: 100%; max-height: 78dvh; width: auto;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  margin-inline: auto;
}
.lightbox__fig figcaption {
  color: rgba(255,255,255,.9); margin-top: var(--s-4);
  font-size: .95rem;
}
.lightbox__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28);
  color: #fff; cursor: pointer; display: grid; place-items: center;
  backdrop-filter: blur(8px); transition: background .18s var(--ease);
}
.lightbox__btn:hover { background: rgba(255,255,255,.24); }
.lightbox__btn svg { width: 24px; height: 24px; }
.lightbox__prev { left: max(1rem, 3vw); }
.lightbox__next { right: max(1rem, 3vw); }
.lightbox__close { top: max(1rem, 3vw); right: max(1rem, 3vw); transform: none; }
@media (max-width: 600px) {
  .lightbox__btn { width: 44px; height: 44px; }
  .lightbox__prev { left: .5rem; } .lightbox__next { right: .5rem; }
}

/* ------------------------------------------------- Secțiunea muncitori -- */
.forest { background: var(--forest); color: rgba(255,255,255,.88); }
.forest h1, .forest h2, .forest h3 { color: #fff; }
.forest .eyebrow { color: #A8C9BB; }
.forest .eyebrow::before { background: #A8C9BB; }
.forest .lead { color: rgba(255,255,255,.9); }
.forest .btn--ghost { color: #fff; border-color: rgba(255,255,255,.42); }
.forest .btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.forest .ticks li::before {
  background-color: rgba(255,255,255,.16);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.pagehead--forest { background: var(--forest); border-bottom: 0; color: rgba(255,255,255,.88); }
.pagehead--forest h1 { color: #fff; }
.pagehead--forest .crumbs { color: rgba(255,255,255,.6); }
.pagehead--forest .lead { color: rgba(255,255,255,.9); }

.feature--forest .feature__icon { background: var(--forest-wash); color: var(--forest); }

/* --------------------------------------------------------- CTA final -- */
.cta {
  background: var(--ink); color: rgba(255,255,255,.85);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, var(--s-8));
  text-align: center;
  position: relative; overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% -20%, rgba(176,141,87,.32), transparent 62%);
  pointer-events: none;
}
.cta > * { position: relative; }
.cta h2 { color: #fff; max-width: 22ch; margin-inline: auto; }
.cta p { max-width: 52ch; margin-inline: auto; margin-bottom: var(--s-6); }
.cta .btn-row { justify-content: center; }
.cta__phone {
  display: block; font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 2.9rem); font-weight: 600;
  color: #fff; text-decoration: none; margin-bottom: var(--s-2);
  letter-spacing: -0.01em;
}
.cta__phone:hover { color: #E8D3AC; }
.cta__meta { font-size: .9rem; color: rgba(255,255,255,.6); margin-top: var(--s-5); }

/* ------------------------------------------------------------ Contact -- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, var(--s-8)); align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-list { display: grid; gap: var(--s-5); }
.contact-item { display: flex; gap: var(--s-4); align-items: flex-start; }
.contact-item__icon {
  width: 44px; height: 44px; flex: none; border-radius: 12px;
  background: var(--gold-wash); color: var(--gold-deep);
  display: grid; place-items: center;
}
.contact-item__icon svg { width: 21px; height: 21px; }
.contact-item h3 { font-size: 1.02rem; margin-bottom: var(--s-1); font-family: var(--font-body); font-weight: 700; }
.contact-item p, .contact-item a { font-size: .98rem; color: var(--muted); text-decoration: none; margin: 0; }
.contact-item a { color: var(--ink); font-weight: 600; }
.contact-item a:hover { color: var(--gold-deep); }
.contact-item__big { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: -0.01em; }

/* Formular -> WhatsApp */
.form-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, var(--s-7));
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: var(--s-2); }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .88rem; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: .8rem 1rem; border: 1.5px solid var(--line);
  border-radius: 11px; background: var(--cream);
  transition: border-color .18s var(--ease), background .18s var(--ease);
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: #fff;
}
.field textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237A6A5E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.6rem;
}
.form-note { font-size: .85rem; color: var(--muted); margin-top: var(--s-4); }

/* ---------------------------------------------------- Buton flotant WA -- */
.wa-float {
  position: fixed; right: max(1rem, 3vw); bottom: max(1rem, 3vw);
  z-index: 90;
  display: inline-flex; align-items: center; gap: var(--s-3);
  padding: .85rem 1.35rem;
  background: var(--whatsapp); color: #06301A;
  font-weight: 700; font-size: .98rem; text-decoration: none;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 20px rgba(37, 211, 102, .38), var(--shadow);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 28px rgba(37,211,102,.46); }
.wa-float svg { width: 24px; height: 24px; flex: none; }
@media (max-width: 560px) {
  .wa-float { padding: .85rem; border-radius: 50%; }
  .wa-float span { display: none; }
}

/* -------------------------------------------------------------- Footer -- */
.footer {
  background: var(--ink); color: rgba(255,255,255,.62);
  padding-block: var(--s-8) var(--s-5);
  font-size: .93rem;
}
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--s-6); padding-bottom: var(--s-7);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr; gap: var(--s-5); } }
.footer h4 {
  color: #fff; font-family: var(--font-body); font-size: .8rem;
  letter-spacing: .15em; text-transform: uppercase;
  margin-bottom: var(--s-4); font-weight: 700;
}
.footer .brand__name { color: #fff; font-size: 1.35rem; }
.footer .brand__place { color: var(--gold); }
.footer__about { max-width: 34ch; margin-top: var(--s-3); }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-3); }
.footer a { color: rgba(255,255,255,.72); text-decoration: none; transition: color .18s var(--ease); }
.footer a:hover { color: var(--gold); }
.footer strong { color: #fff; }
.footer__bottom {
  padding-top: var(--s-5);
  display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: space-between;
  font-size: .85rem; color: rgba(255,255,255,.45);
}

/* -------------------------------------------------- Animații la scroll -- */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover, .gallery__item:hover, .wa-float:hover { transform: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
