/* ─── CSS Variables ─────────────────────────────────────────────────── */
:root {
  --cream: #F5EFE0;
  --paper: #FAF6EE;
  --rust: #C4472A;
  --rust-dark: #9E3420;
  --amber: #D4882B;
  --charcoal: #1E1A14;
  --dark: #2A231A;
  --muted: #6B5E4A;
  --light-muted: #A89880;
  --border: #D9CEBC;
  --white: #FFFFFF;
  --shadow: rgba(30, 26, 20, 0.12);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --nav-h: 68px;
  --radius: 4px;
  --radius-lg: 8px;
}

/* ─── Reset & Base ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }

/* ─── Skip Link ─────────────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 9999;
  background: var(--rust); color: #fff; padding: .5rem 1rem;
  border-radius: var(--radius); font-weight: 600; transition: top .2s;
}
.skip-link:focus { top: .5rem; }

/* ─── Navigation ────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--charcoal); border-bottom: 3px solid var(--rust);
  height: var(--nav-h);
}
.nav__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem; height: 100%;
}
.nav__logo {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 900;
  color: var(--cream); letter-spacing: -.01em;
}
.nav__logo span { color: var(--amber); }
.nav__links { display: flex; gap: .25rem; align-items: center; }
.nav__link {
  color: var(--cream); padding: .5rem .75rem; font-size: .875rem;
  font-weight: 500; border-radius: var(--radius); letter-spacing: .01em;
  transition: background .15s, color .15s;
}
.nav__link:hover, .nav__link:focus-visible { background: rgba(255,255,255,.1); color: var(--amber); }
.nav__link--active { color: var(--amber); }
.nav__link--cta { background: var(--rust); color: #fff !important; margin-left: .5rem; }
.nav__link--cta:hover, .nav__link--cta:focus-visible { background: var(--rust-dark); color: #fff !important; }

/* Hamburger */
.nav__toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: .5rem; color: var(--cream); flex-direction: column;
  min-height: 44px; min-width: 44px; align-items: center; justify-content: center;
}
.nav__toggle-bar {
  display: block; width: 24px; height: 2px; background: currentColor;
  margin: 4px 0; transition: transform .2s, opacity .2s;
}
.nav.open .nav__toggle-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.open .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav.open .nav__toggle-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav */
.nav__mobile {
  display: flex; flex-direction: column;
  background: var(--charcoal); padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.nav__mobile .nav__link {
  font-size: 1rem; padding: .75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav__mobile .nav__link--cta {
  border: none; margin: 1rem 0 0; text-align: center;
  border-radius: var(--radius); padding: .75rem;
}

/* ─── Hero ──────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: calc(100svh - var(--nav-h));
  display: flex; align-items: center; background: var(--charcoal); overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(196,71,42,.85) 0%, rgba(30,26,20,.95) 60%),
    url('https://images.pexels.com/photos/5632399/pexels-photo-5632399.jpeg?auto=compress&cs=tinysrgb&w=1600')
    center / cover no-repeat;
}
.hero__texture {
  position: absolute; inset: 0; opacity: .04;
  background-image: repeating-linear-gradient(45deg,#fff 0,#fff 1px,transparent 0,transparent 50%);
  background-size: 8px 8px;
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; width: 100%;
  padding: 4rem 1.5rem 5rem;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--rust); color: #fff;
  padding: .35rem 1rem; border-radius: 2rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero__badge::before { content: '★'; font-size: .7rem; }
.hero__title {
  font-size: clamp(2.5rem, 7vw, 5.5rem); font-weight: 900;
  color: var(--cream); line-height: 1.05; margin-bottom: 1rem;
}
.hero__title em { color: var(--amber); font-style: italic; }
.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem); color: rgba(245,239,224,.8);
  max-width: 540px; margin-bottom: 2.5rem; font-weight: 300;
}
.hero__info-card {
  display: inline-grid; gap: .75rem;
  background: rgba(245,239,224,.08); border: 1px solid rgba(245,239,224,.15);
  border-radius: var(--radius-lg); padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem; backdrop-filter: blur(8px);
}
.hero__info-item { display: flex; align-items: center; gap: .75rem; color: var(--cream); font-size: .95rem; }
.hero__info-item strong { color: var(--amber); }
.hero__icon { font-size: 1.1rem; width: 1.5rem; text-align: center; flex-shrink: 0; }
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── Buttons ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.75rem; border-radius: var(--radius);
  font-weight: 600; font-size: .95rem; cursor: pointer;
  border: 2px solid transparent; transition: all .18s;
  min-height: 48px; text-decoration: none;
}
.btn--primary { background: var(--rust); color: #fff; border-color: var(--rust); }
.btn--primary:hover, .btn--primary:focus-visible { background: var(--rust-dark); border-color: var(--rust-dark); transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--cream); border-color: rgba(245,239,224,.4); }
.btn--outline:hover, .btn--outline:focus-visible { border-color: var(--cream); background: rgba(245,239,224,.08); }
.btn--sm { padding: .55rem 1.1rem; font-size: .875rem; min-height: 40px; }

/* ─── Sections ──────────────────────────────────────────────────────── */
.section { padding: 5rem 1.5rem; }
.section--alt { background: var(--cream); }
.section__inner { max-width: 1200px; margin: 0 auto; }
.section__header { text-align: center; margin-bottom: 3.5rem; }
.section__label {
  display: inline-block; font-size: .75rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--rust); margin-bottom: .75rem;
}
.section__title { font-size: clamp(2rem, 5vw, 3rem); color: var(--charcoal); }
.section__desc { color: var(--muted); max-width: 540px; margin: .75rem auto 0; font-size: 1rem; }

/* ─── Page header (inner pages) ─────────────────────────────────────── */
.page-header {
  background: var(--charcoal); padding: 2.5rem 1.5rem;
  border-bottom: 3px solid var(--rust);
}
.page-header__inner { max-width: 1200px; margin: 0 auto; }
.page-header h1 { font-size: clamp(1.8rem, 5vw, 3rem); color: var(--cream); margin-bottom: .5rem; }
.breadcrumb { font-size: .85rem; color: rgba(245,239,224,.5); margin-bottom: .5rem; }
.breadcrumb a { color: var(--amber); }

/* ─── Categories Grid ───────────────────────────────────────────────── */
.cats { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1rem; }
.cat-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem 1rem; text-align: center;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.cat-card:hover { border-color: var(--rust); transform: translateY(-3px); box-shadow: 0 8px 24px var(--shadow); }
.cat-card__icon { font-size: 2rem; margin-bottom: .5rem; }
.cat-card__name { font-weight: 600; font-size: .9rem; color: var(--dark); }

/* ─── Program ───────────────────────────────────────────────────────── */
.program-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.program-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1.5px solid var(--border); overflow: hidden; transition: box-shadow .15s;
}
.program-card:hover { box-shadow: 0 8px 28px var(--shadow); }
.program-card__header {
  background: var(--charcoal); padding: 1.25rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
}
.program-card__date { font-family: var(--font-display); font-size: 1.15rem; color: var(--cream); font-weight: 700; }
.program-card__badge {
  font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
  background: var(--amber); color: var(--charcoal); padding: .25rem .65rem; border-radius: 2rem;
}
.program-card__body { padding: 1.25rem 1.5rem; }
.program-item {
  display: flex; gap: 1rem; padding: .6rem 0;
  border-bottom: 1px solid var(--border); font-size: .9rem;
}
.program-item:last-child { border-bottom: none; }
.program-item__time { color: var(--rust); font-weight: 600; white-space: nowrap; min-width: 80px; }
.program-item__desc { color: var(--dark); }

/* ─── Expo filters ──────────────────────────────────────────────────── */
.expo-filters { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem; align-items: center; }
.filter-btn {
  padding: .5rem 1.1rem; border-radius: 2rem; border: 1.5px solid var(--border);
  background: var(--white); cursor: pointer; font-size: .85rem; font-weight: 500;
  color: var(--muted); transition: all .15s; min-height: 40px;
}
.filter-btn.active, .filter-btn:hover { border-color: var(--rust); background: var(--rust); color: #fff; }
.filter-btn:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }

/* ─── Expo Grid ─────────────────────────────────────────────────────── */
.expo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.expo-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: box-shadow .15s, transform .15s;
}
.expo-card:hover { box-shadow: 0 10px 32px var(--shadow); transform: translateY(-2px); }
.expo-card__img {
  height: 180px; background: var(--cream);
  display: flex; align-items: center; justify-content: center; font-size: 3.5rem;
}
.expo-card__body { padding: 1.25rem; }
.expo-card__tags { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: .6rem; }
.tag {
  font-size: .72rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  padding: .2rem .6rem; border-radius: 2rem; background: var(--cream); color: var(--muted);
}
.tag--cat { background: rgba(196,71,42,.1); color: var(--rust-dark); }
.expo-card__name { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: .35rem; font-weight: 700; }
.expo-card__desc { font-size: .875rem; color: var(--muted); margin-bottom: .75rem; }
.expo-card__meta { display: flex; gap: 1rem; font-size: .8rem; color: var(--muted); flex-wrap: wrap; }

/* ─── Food ──────────────────────────────────────────────────────────── */
.food-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.food-card {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  min-height: 280px; display: flex; align-items: flex-end;
  transition: transform .18s; cursor: default;
}
.food-card:hover { transform: scale(1.02); }
.food-card__bg {
  position: absolute; inset: 0; font-size: 6rem;
  display: flex; align-items: center; justify-content: center;
  opacity: .25; pointer-events: none;
}
.food-card__grad {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,26,20,.9) 30%, transparent 70%);
}
.food-card__content { position: relative; z-index: 2; padding: 1.5rem; }
.food-card__label {
  font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
  color: var(--amber); margin-bottom: .4rem;
}
.food-card__name { font-family: var(--font-display); color: var(--cream); font-size: 1.3rem; font-weight: 700; }
.food-card__desc { color: rgba(245,239,224,.7); font-size: .875rem; margin-top: .4rem; }

/* ─── Map ───────────────────────────────────────────────────────────── */
.map-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.map-box {
  border-radius: var(--radius-lg); overflow: hidden;
  height: 380px; border: 1.5px solid var(--border);
  box-shadow: 0 8px 28px var(--shadow);
}
#map { height: 100%; }
.leaflet-container { font-family: var(--font-body) !important; }
.directions-list { display: flex; flex-direction: column; gap: 1rem; }
.direction-item {
  display: flex; gap: 1rem; padding: 1rem;
  background: var(--white); border-radius: var(--radius-lg);
  border: 1.5px solid var(--border); align-items: flex-start;
}
.direction-icon {
  font-size: 1.5rem; min-width: 2.5rem; height: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(196,71,42,.08); border-radius: var(--radius); flex-shrink: 0;
}
.direction-item strong { display: block; font-weight: 600; color: var(--dark); margin-bottom: .25rem; }
.direction-item p { font-size: .875rem; color: var(--muted); }

/* ─── FAQ ───────────────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.faq-question {
  width: 100%; text-align: left; padding: 1.25rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  cursor: pointer; background: none; border: none;
  font-weight: 600; font-size: 1rem; color: var(--dark);
  min-height: 56px; transition: background .12s;
}
.faq-question:hover { background: var(--cream); }
.faq-question:focus-visible { outline: 3px solid var(--amber); outline-offset: -3px; }
.faq-arrow { font-size: .875rem; transition: transform .2s; flex-shrink: 0; color: var(--rust); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  padding: 0 1.5rem; max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  font-size: .925rem; color: var(--muted); line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 1.25rem; }

/* ─── Contact ───────────────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.25rem;
}
.contact-item__icon {
  font-size: 1.25rem; width: 2.75rem; height: 2.75rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(196,71,42,.08); border-radius: var(--radius); flex-shrink: 0;
}
.contact-item strong { display: block; font-weight: 600; font-size: .875rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .25rem; }
.contact-item a { color: var(--dark); font-weight: 500; }
.contact-item a:hover { color: var(--rust); }

/* ─── Forms ─────────────────────────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-label { font-size: .875rem; font-weight: 600; color: var(--dark); }
.form-input, .form-textarea {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: .75rem 1rem; background: var(--white); color: var(--dark);
  transition: border-color .15s; width: 100%; min-height: 48px;
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-input:focus, .form-textarea:focus {
  outline: none; border-color: var(--rust); box-shadow: 0 0 0 3px rgba(196,71,42,.12);
}
.form-check { display: flex; align-items: flex-start; gap: .6rem; cursor: pointer; }
.form-check input[type="checkbox"] { width: 20px; height: 20px; margin-top: 2px; flex-shrink: 0; accent-color: var(--rust); cursor: pointer; }
.form-check-label { font-size: .85rem; color: var(--muted); }
.form-check-label a { color: var(--rust); text-decoration: underline; }
.form-error { font-size: .8rem; color: #c00; margin-top: .25rem; display: block; }
.form-success {
  padding: 1.5rem; background: rgba(34,139,34,.08); border: 1.5px solid #228B22;
  border-radius: var(--radius-lg); color: #1a6b1a; text-align: center;
}

/* ─── Intrare Liberă ────────────────────────────────────────────────── */
.intrare-box {
  background: var(--charcoal); border-radius: var(--radius-lg);
  padding: 3rem 2rem; text-align: center; position: relative; overflow: hidden;
}
.intrare-box::before {
  content: '★'; position: absolute; font-size: 12rem;
  color: rgba(255,255,255,.03); top: -2rem; right: -2rem;
  font-family: var(--font-display);
}
.intrare-badge {
  display: inline-flex; background: var(--amber); color: var(--charcoal);
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; font-style: italic;
  padding: .5rem 2rem; border-radius: 2rem; margin-bottom: 1.5rem;
  transform: rotate(-2deg);
}
.intrare-box h2 { color: var(--cream); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.intrare-box p { color: rgba(245,239,224,.7); max-width: 480px; margin: 0 auto 2rem; }

/* ─── Vânzător banner ───────────────────────────────────────────────── */
.vanzator-section {
  background: var(--cream); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.vanzator-section__content { flex: 1; min-width: 240px; }
.vanzator-section h3 { font-size: 1.5rem; margin-bottom: .5rem; }
.vanzator-section p { color: var(--muted); font-size: .95rem; }

/* ─── Modal ─────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(30,26,20,.7);
  z-index: 200; display: flex; align-items: center; justify-content: center;
  padding: 1rem; backdrop-filter: blur(4px);
  animation: fadeIn .2s ease;
}
.modal {
  background: var(--paper); border-radius: var(--radius-lg);
  max-width: 520px; width: 100%; max-height: 90svh; overflow-y: auto;
  padding: 2rem; position: relative;
  animation: slideUp .2s ease;
}
.modal__close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; font-size: 1.4rem; cursor: pointer;
  color: var(--muted); padding: .4rem; border-radius: var(--radius);
  min-height: 40px; min-width: 40px;
  display: flex; align-items: center; justify-content: center;
}
.modal__close:hover { background: var(--cream); color: var(--dark); }
.modal h3 { font-size: 1.5rem; margin-bottom: .5rem; }
.modal > p { color: var(--muted); font-size: .9rem; margin-bottom: 1.5rem; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(20px); } to { transform: translateY(0); } }

/* ─── Cookie Banner ─────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 1rem; left: 1rem; right: 1rem;
  background: var(--charcoal); color: var(--cream);
  border-radius: var(--radius-lg); padding: 1.25rem 1.5rem;
  z-index: 150; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  box-shadow: 0 8px 32px rgba(0,0,0,.4); border-top: 3px solid var(--rust);
  max-width: 700px; margin: 0 auto;
}
.cookie-banner p { font-size: .875rem; color: rgba(245,239,224,.8); flex: 1; min-width: 200px; }
.cookie-banner a { color: var(--amber); text-decoration: underline; }
.cookie-btns { display: flex; gap: .75rem; }

/* ─── Footer ─────────────────────────────────────────────────────────── */
.footer { background: var(--charcoal); color: var(--cream); padding: 3.5rem 1.5rem 2rem; }
.footer__inner { max-width: 1200px; margin: 0 auto; }
.footer__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 2.5rem; margin-bottom: 3rem; }
.footer__brand p { color: rgba(245,239,224,.6); font-size: .875rem; margin-top: .75rem; line-height: 1.6; }
.footer__logo { font-family: var(--font-display); font-size: 1.3rem; font-weight: 900; }
.footer__logo span { color: var(--amber); }
.footer__col h4 { font-family: var(--font-display); font-size: 1rem; margin-bottom: 1rem; color: var(--cream); }
.footer__links { display: flex; flex-direction: column; gap: .5rem; }
.footer__links a { color: rgba(245,239,224,.6); font-size: .875rem; transition: color .12s; }
.footer__links a:hover { color: var(--amber); }
.footer__social { display: flex; gap: .75rem; flex-wrap: wrap; }
.social-btn {
  width: 40px; height: 40px; border-radius: var(--radius);
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--cream); transition: background .15s;
}
.social-btn:hover { background: var(--rust); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
}
.footer__copy { font-size: .8rem; color: rgba(245,239,224,.4); }
.footer__legal { display: flex; gap: 1.25rem; }
.footer__legal a { font-size: .8rem; color: rgba(245,239,224,.4); transition: color .12s; }
.footer__legal a:hover { color: var(--amber); }

/* ─── Divider ───────────────────────────────────────────────────────── */
.divider { border: none; height: 1px; background: var(--border); margin: 0; }

/* ─── Scroll Reveal ─────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── Focus ─────────────────────────────────────────────────────────── */
*:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }
*:focus:not(:focus-visible) { outline: none; }

/* ─── Blazor validation ─────────────────────────────────────────────── */
.valid.modified:not([type=checkbox]) { border-color: #26b050; }
.invalid { border-color: #e50000; }
.validation-message { color: #e50000; font-size: .8rem; }

/* ─── Responsive ────────────────────────────────────────────────────── */
@media (min-width: 768px) {
  .map-layout { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .hero { min-height: 100svh; }
  .section { padding: 3.5rem 1.25rem; }
  .vanzator-section { flex-direction: column; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .intrare-box { padding: 2rem 1.25rem; }
  .cookie-banner { flex-direction: column; }
}
