/* ── Reset & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink:       #d4547a;
  --pink-dark:  #b03060;
  --pink-light: #f8e8ee;
  --green:      #5a7a4a;
  --green-light:#e8f0e4;
  --gold:       #c8a84b;
  --dark:       #1a1a1a;
  --gray:       #6b6b6b;
  --light:      #fafaf8;
  --white:      #ffffff;
  --radius:     12px;
  --shadow:     0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.16);
  --header-h:   68px;
  --bottom-h:   72px;
  --font:       'Playfair Display', Georgia, serif;
  --font-body:  'Lato', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  padding-top: var(--header-h);
  padding-bottom: var(--bottom-h);
  overflow-x: hidden;
}

/* ── Typography ── */
h1,h2,h3,h4 { font-family: var(--font); line-height: 1.2; }
h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); color: var(--pink-dark); }
h3 { font-size: clamp(1.1rem, 3vw, 1.4rem); }
p  { line-height: 1.65; color: var(--gray); }

a { color: inherit; text-decoration: none; }

/* ── Sticky Header ── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: linear-gradient(135deg, #fff5f8 0%, #fffbf0 100%);
  border-bottom: 1px solid rgba(212,84,122,.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(212,84,122,.10);
}

#site-header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

#site-header .logo img {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pink);
}

#site-header .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

#site-header .logo-text strong {
  font-family: var(--font);
  font-size: 1.15rem;
  color: var(--pink-dark);
}

#site-header .logo-text span {
  font-size: .72rem;
  color: var(--gray);
  letter-spacing: .04em;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--pink);
  color: #fff;
  padding: 7px 12px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .88rem;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.2;
}

.header-phone svg { width: 16px; height: 16px; flex-shrink: 0; }

.header-phone .phone-stack {
  display: flex;
  flex-direction: column;
}

.header-phone .phone-stack .phone-num {
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.2;
}

.header-phone .phone-stack .phone-sub {
  font-size: .62rem;
  font-weight: 400;
  opacity: .88;
  letter-spacing: .01em;
}

@media(min-width:768px) {
  .header-phone .phone-stack .phone-sub { display: none; }
  .header-phone { padding: 8px 14px; }
}

/* Brand name */
.site-brand {
  font-family: var(--font);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--pink-dark);
  text-decoration: none;
  letter-spacing: .01em;
  flex-shrink: 0;
}

.site-brand:hover { color: var(--pink); }

/* Desktop nav */
.desktop-nav {
  display: none;
  gap: 4px;
  margin-left: auto;
}

.desktop-nav a {
  padding: 6px 12px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--pink-dark);
  transition: background .2s, color .2s;
}

.desktop-nav a:hover { background: rgba(212,84,122,.12); color: var(--pink-dark); }

@media(min-width:768px){
  .desktop-nav { display: flex; }
  .header-phone span.phone-num { display: inline; }
  .hamburger { display: none !important; }
}

/* ── Hamburger button ── */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background .2s;
  -webkit-tap-highlight-color: transparent;
}

.hamburger:hover { background: var(--pink-light); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--pink-dark);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile drawer ── */
#mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: linear-gradient(160deg, #fff5f8 0%, #fffbf2 100%);
  border-bottom: 2px solid rgba(212,84,122,.18);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  z-index: 999;
  padding: 16px 20px 20px;
  flex-direction: column;
  gap: 4px;
  animation: slideDown .22s ease;
}

#mobile-menu.open { display: flex; }

@keyframes slideDown {
  from { transform: translateY(-10px); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

#mobile-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 700;
  color: var(--pink-dark);
  text-decoration: none;
  transition: background .15s, color .15s;
}

#mobile-menu a:hover,
#mobile-menu a:active { background: var(--pink-light); color: var(--pink-dark); }

#mobile-menu .menu-divider {
  height: 1px;
  background: var(--pink-light);
  margin: 6px 0;
}

#mobile-menu .menu-call {
  background: var(--pink);
  color: #fff !important;
  justify-content: center;
  border-radius: 50px;
  margin-top: 8px;
}

#mobile-menu .menu-call:hover { background: var(--pink-dark) !important; }

/* ── Sticky Bottom Bar ── */
#bottom-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--bottom-h);
  background: var(--white);
  border-top: 1px solid #f0e0e8;
  display: flex;
  z-index: 1000;
  box-shadow: 0 -2px 16px rgba(0,0,0,.10);
}

.bottom-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: .65rem;
  font-weight: 700;
  color: var(--gray);
  transition: background .2s, color .2s;
  text-decoration: none;
  padding: 8px 4px;
}

.bottom-btn svg { width: 24px; height: 24px; }

.bottom-btn:hover, .bottom-btn:active { background: var(--pink-light); color: var(--pink-dark); }

.bottom-btn.call   { color: var(--green); }
.bottom-btn.wa     { color: #25d366; }
.bottom-btn.nav    { color: #4285f4; }
.bottom-btn.order  { background: var(--pink); color: #fff; border-radius: 0; }
.bottom-btn.order:hover { background: var(--pink-dark); }

/* ── Hero ── */
#hero {
  min-height: calc(100svh - var(--header-h) - var(--bottom-h));
  background: linear-gradient(160deg, #fff0f4 0%, #fff8e6 55%, #eef5ec 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* no horizontal padding — children add their own */
  padding: 40px 0 32px;
  gap: 16px;
  overflow: hidden;
}

#hero h1 {
  font-size: clamp(2rem, 7vw, 3.8rem);
  color: var(--pink-dark);
  text-shadow: 0 2px 12px rgba(176,48,96,.12);
  padding: 0 24px;
}

#hero .tagline {
  font-size: clamp(.95rem, 3vw, 1.25rem);
  color: var(--gray);
  max-width: 520px;
  padding: 0 24px;
}

#hero .hero-badges { display: none; padding: 0 24px; }

@media(min-width:768px) {
  #hero .hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
}

/* ── Hero highlights (mobile only) ── */
.hero-highlights {
  display: flex;
  gap: 10px;
  /* scroll within the full hero width */
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 20px 8px;
  box-sizing: border-box;
}

.hero-highlights::-webkit-scrollbar { display: none; }

.hero-hl {
  scroll-snap-align: start;
  flex-shrink: 0;
  position: relative;
  width: 120px;
  height: 92px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,.15);
  cursor: pointer;
  background-color: var(--pink-light);
  background-size: cover;
  background-position: center;
  -webkit-tap-highlight-color: transparent;
  transition: transform .15s;
}

.hero-hl:active { transform: scale(.96); }

.hero-hl::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.58) 0%, transparent 55%);
}

.hero-hl .hl-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 1;
  padding: 7px 7px 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero-hl .hl-icon { font-size: .9rem; line-height: 1; flex-shrink: 0; }

.hero-hl .hl-text {
  font-size: .68rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

@media(min-width:768px) {
  .hero-highlights { display: none; }
}

.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.85);
  border: 1px solid var(--pink-light);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--pink-dark);
  backdrop-filter: blur(4px);
}

.hero-cta {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  justify-content: center;
  margin-top: 8px;
  width: 100%;
  padding: 0 24px;
  box-sizing: border-box;
}

.hero-cta .btn-primary,
.hero-cta .btn-secondary {
  flex: 1;
  justify-content: center;
  max-width: 200px;
  font-size: .9rem;
  padding: 13px 16px;
}

/* Hero — mobile: compact, nu fullscreen */
@media(max-width:767px) {
  #hero {
    min-height: auto;
    justify-content: flex-start;
    padding-top: 28px;
    padding-bottom: 28px;
    gap: 14px;
  }
  .hero-order-btn { display: none !important; }
  .hero-cta .btn-secondary {
    flex: none;
    max-width: none;
    width: auto;
    padding: 13px 28px;
  }
}

@media(min-width:768px) {
  #hero { padding: 64px 24px 48px; }
  #hero h1, #hero .tagline, #hero .hero-badges, .hero-cta { padding: 0; }
  .hero-cta { flex-wrap: wrap; padding: 0; }
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary { flex: none; max-width: none; font-size: 1rem; padding: 14px 28px; }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .1s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(212,84,122,.35);
}

.btn-primary:hover { background: var(--pink-dark); transform: translateY(-1px); box-shadow: 0 6px 28px rgba(212,84,122,.45); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--pink-dark);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--pink);
  cursor: pointer;
  transition: background .2s;
}

.btn-secondary:hover { background: var(--pink-light); }

/* ── Section Layout ── */
.section {
  padding: 72px 20px;
}

.section-alt { background: var(--light); }
.section-dark { background: var(--pink-dark); color: #fff; }
.section-dark h2 { color: #fff; }
.section-dark p  { color: rgba(255,255,255,.8); }

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .subtitle {
  font-size: 1rem;
  color: var(--pink);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .2s, box-shadow .2s;
  border: 1px solid #f8eef2;
}

.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--pink-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.service-card h3 { color: var(--pink-dark); }

.service-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-card ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: var(--gray);
}

.service-card ul li::before {
  content: '✓';
  color: var(--green);
  font-weight: 900;
  flex-shrink: 0;
}

/* ── Services — mobile 2-col compact ── */
@media(max-width:767px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .service-card {
    padding: 18px 14px;
    gap: 8px;
    border-radius: 14px;
    align-items: flex-start;
  }
  .service-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    font-size: 1.5rem;
  }
  .service-card h3 {
    font-size: .88rem;
    line-height: 1.25;
  }
  .service-card > p {
    font-size: .78rem;
    line-height: 1.4;
    color: var(--gray);
  }
  .service-card ul { display: none; }
}

/* ── Gallery ── */
.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}

/* Desktop pill tabs */
.gallery-tab {
  padding: 8px 18px;
  border-radius: 50px;
  border: 2px solid var(--pink-light);
  background: none;
  cursor: pointer;
  font-weight: 700;
  font-size: .85rem;
  color: var(--gray);
  transition: all .2s;
}

.gallery-tab.active, .gallery-tab:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}

/* Tab inner elements */
.tab-overlay, .tab-label { display: none; pointer-events: none; }
.tab-desktop-label { pointer-events: none; }

/* Mobile — card tabs cu imagini, scroll orizontal */
@media(max-width:767px) {
  .gallery-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: visible;
    justify-content: flex-start;
    gap: 10px;
    padding: 4px 20px 10px;
    margin-left: -20px;
    width: calc(100% + 40px);
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    margin-bottom: 20px;
  }
  .gallery-tabs::-webkit-scrollbar { display: none; }

  .gallery-tab {
    flex-shrink: 0;
    scroll-snap-align: start;
    width: 88px;
    height: 88px;
    border-radius: 12px;
    border: 2px solid transparent;
    padding: 0;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: var(--pink-light);
    -webkit-tap-highlight-color: transparent;
    transition: transform .15s, border-color .15s;
  }

  .gallery-tab:active { transform: scale(.95); }

  .tab-overlay, .tab-label { display: block; }
  .tab-desktop-label { display: none; }

  .gallery-tab .tab-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.68) 0%, rgba(0,0,0,.08) 58%);
  }

  .gallery-tab .tab-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 1;
    padding: 6px 4px 7px;
    text-align: center;
    font-size: .62rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
  }

  .gallery-tab.active {
    border-color: var(--pink);
    background-color: var(--pink-light);
  }

  .gallery-tab.active .tab-overlay {
    background: linear-gradient(to top, rgba(180,40,80,.72) 0%, rgba(180,40,80,.15) 58%);
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  position: relative;
  background: var(--pink-light);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-caption {
  padding: 10px 12px;
  font-size: .82rem;
  color: var(--gray);
  background: var(--white);
  text-align: center;
}

.gallery-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 48px;
  color: var(--gray);
  font-style: italic;
}

/* ── Delivery Zone ── */
.delivery-zone {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media(min-width:640px){ .delivery-zone { grid-template-columns: 1fr 1fr; } }

.zone-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.zone-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 14px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .92rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.zone-list li span.tag {
  margin-left: auto;
  background: var(--green-light);
  color: var(--green);
  font-size: .72rem;
  padding: 2px 8px;
  border-radius: 50px;
  font-weight: 700;
}

/* ── Map ── */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 300px;
}

.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ── Order Modal ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 2000;
  align-items: flex-end;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--white);
  border-radius: var(--radius) var(--radius) 0 0;
  width: 100%;
  max-width: 480px;
  padding: 32px 24px 40px;
  animation: slideUp .3s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);   opacity: 1; }
}

.modal-box h3 { font-family: var(--font); color: var(--pink-dark); margin-bottom: 20px; font-size: 1.3rem; }

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #f0e0e8;
  border-radius: 10px;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color .2s;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--pink);
}

.form-group textarea { min-height: 80px; resize: vertical; }

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--gray);
  padding: 4px;
}

.modal-box { position: relative; }

.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--pink);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  margin-top: 8px;
}

.btn-submit:hover { background: var(--pink-dark); }

.msg-success {
  display: none;
  background: var(--green-light);
  color: var(--green);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  font-weight: 700;
  margin-top: 12px;
}

/* ── About / Interior Photos ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media(min-width:640px) { .about-grid { grid-template-columns: 1fr 1fr; } }

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.about-photos img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.about-photos img:first-child {
  grid-column: 1/-1;
  aspect-ratio: 16/7;
}

.about-text { display: flex; flex-direction: column; gap: 16px; }

.about-text .highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--pink-light);
  border-radius: 10px;
  padding: 14px 18px;
}

.about-text .highlight span.ico { font-size: 1.5rem; }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.testimonial {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 24px;
}

.testimonial .stars { color: var(--gold); font-size: 1rem; margin-bottom: 10px; }
.testimonial p { color: rgba(255,255,255,.85); font-size: .9rem; margin-bottom: 14px; }
.testimonial .author { font-weight: 700; color: var(--gold); font-size: .85rem; }

/* ── Footer ── */
#site-footer {
  background: linear-gradient(160deg, #fff5f8 0%, #fffbf2 100%);
  color: var(--gray);
  padding: 48px 20px 32px;
  border-top: 1px solid rgba(212,84,122,.15);
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-family: var(--font);
  color: var(--pink-dark);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li { color: var(--gray); font-size: .88rem; }
.footer-col ul li a { color: var(--gray); font-size: .88rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--pink-dark); }

.footer-col p { font-size: .88rem; line-height: 1.7; color: var(--gray); }

.footer-social { display: flex; gap: 12px; margin-top: 12px; }

.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--pink-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--pink-dark);
  transition: background .2s, color .2s;
}

.footer-social a:hover { background: var(--pink); color: #fff; }
.footer-social svg { width: 18px; height: 18px; }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(212,84,122,.15);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--gray);
}

.footer-legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: var(--gray);
  font-size: .8rem;
  transition: color .2s;
}

.footer-legal-links a:hover { color: var(--pink-dark); }

/* ── Footer ANPC/SOL badges ── */
.footer-anpc {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1100px;
  margin: 20px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(212,84,122,.15);
}
.footer-anpc a { display: inline-flex; }
.footer-anpc img {
  height: 38px;
  width: auto;
  border-radius: 6px;
  opacity: .8;
  transition: opacity .2s;
}
.footer-anpc img:hover { opacity: 1; }

/* ── Lightbox ── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

#lightbox.open { display: flex; }

#lightbox img {
  max-width: 90vw;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
  transition: opacity .12s ease;
}

#lightbox .lb-caption {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  text-align: center;
}

#lightbox .lb-close {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 2;
}

#lightbox .lb-prev,
#lightbox .lb-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  z-index: 2;
  -webkit-tap-highlight-color: transparent;
}

#lightbox .lb-prev { left: 16px; }
#lightbox .lb-next { right: 16px; }

@media(max-width:767px) {
  #lightbox .lb-prev,
  #lightbox .lb-next { display: none; }
}
#lightbox .lb-prev:hover,
#lightbox .lb-next:hover { background: rgba(255,255,255,.30); }

#lightbox .lb-counter {
  position: absolute;
  bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: .82rem;
  letter-spacing: .04em;
}

/* ── Announce Banner ── */
.announce {
  background: linear-gradient(90deg, var(--pink-dark), var(--pink));
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: .88rem;
  font-weight: 600;
}

/* ── Toast ── */
#toast {
  position: fixed;
  bottom: calc(var(--bottom-h) + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--dark);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
  z-index: 5000;
  opacity: 0;
  transition: opacity .3s, transform .3s;
  pointer-events: none;
  white-space: nowrap;
}

#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Responsive tweaks ── */
@media(min-width:768px) {
  .modal-overlay { align-items: center; }
  .modal-box { border-radius: var(--radius); }
}

/* ── Article pages ── */
.article-hero-img {
  width: 100%;
  max-height: 420px;
  overflow: hidden;
  background: var(--pink-light);
}
.article-hero-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.breadcrumb-nav {
  font-size: .82rem;
  color: var(--gray);
  margin-bottom: 16px;
}
.breadcrumb-nav a { color: var(--pink-dark); }
.breadcrumb-nav a:hover { text-decoration: underline; }
.breadcrumb-nav span { color: var(--gray); }

.article-meta-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.art-cat {
  background: var(--pink-light);
  color: var(--pink-dark);
  font-size: .78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.art-read {
  font-size: .82rem;
  color: var(--gray);
}

.article-h1 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.25;
}
.article-lead {
  font-size: 1.08rem;
  color: var(--gray);
  margin-bottom: 32px;
  border-left: 4px solid var(--pink);
  padding-left: 16px;
  line-height: 1.7;
}

.article-body { color: var(--dark); }
.article-body h2 {
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  color: var(--pink-dark);
  margin: 32px 0 12px;
}
.article-body h3 {
  font-size: 1.05rem;
  color: var(--dark);
  margin: 20px 0 8px;
}
.article-body p { margin-bottom: 14px; line-height: 1.7; }
.article-body ul,
.article-body ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
.article-body li { margin-bottom: 6px; line-height: 1.6; }
.article-body a { color: var(--pink-dark); text-decoration: underline; }

.article-cta-box {
  margin-top: 48px;
  background: linear-gradient(135deg, var(--pink-light) 0%, #fdf0f5 100%);
  border: 1px solid #f0d0de;
  border-radius: var(--radius);
  padding: 28px 24px;
}
.article-cta-box h3 {
  font-size: 1.2rem;
  color: var(--pink-dark);
  margin-bottom: 8px;
}
.article-cta-box p { color: var(--gray); }

/* ── Utile grid (article index) ── */
.utile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 8px;
}
.utile-card {
  background: var(--white);
  border: 1px solid #f0e0e8;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  color: inherit;
}
.utile-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.utile-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--pink-light);
}
.utile-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.utile-card:hover .utile-card-img img { transform: scale(1.04); }

.utile-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.utile-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.utile-card h3 {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.utile-card p {
  font-size: .88rem;
  color: var(--gray);
  flex: 1;
  line-height: 1.55;
}
.utile-read-more {
  margin-top: 14px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--pink-dark);
  display: inline-block;
}

@media(max-width:480px) {
  .utile-grid { grid-template-columns: 1fr; }
  .article-hero-img { max-height: 220px; }
  .article-hero-img img { height: 220px; }
}
