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

:root {
  --maroon:      #6b0f1a;
  --maroon-dark: #3d0000;
  --maroon-mid:  #8b1a1a;
  --gold:        #c9a84c;
  --gold-hover:  #b8962e;
  --black:       #0d0d0d;
  --white:       #ffffff;
  --text-light:  rgba(255,255,255,0.85);
  --maroon-bright: #7a1520;
  --maroon-photo:  #2a0505;
  --maroon-bg:     #1a0505;
  --maroon-deep:   #1a0000;
  --success:       #2d7a2d;
  --ff-serif:    'Playfair Display', Georgia, serif;
  --ff-sans:     'Raleway', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-sans);
  color: var(--white);
  background: var(--maroon-dark);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

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

/* ─── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.15s;
}

.btn:hover { transform: translateY(-1px); }

.btn--gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-hover); border-color: var(--gold-hover); }

.btn--dark {
  background: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);
}
.btn--dark:hover { background: var(--maroon-dark); border-color: var(--maroon-dark); }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline-white:hover { background: var(--white); color: var(--black); }

.btn--lg { padding: 16px 36px; font-size: 1rem; border-radius: 10px; }
.btn--full { width: 100%; justify-content: center; }

/* ─── SECTION TITLES ───────────────────────────────────────────────────────── */
.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.06em;
  color: var(--white);
}
.section-title--left { text-align: left; }

.section-divider {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 16px auto 48px;
}
.section-divider--left { margin-left: 0; }

/* ─── TOP INFO BAR ─────────────────────────────────────────────────────────── */
.top-bar {
  background: var(--maroon);
  padding: 10px 0;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.top-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.top-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  transition: color 0.2s;
}
.top-bar__item:hover { color: var(--gold); }
.top-bar__item i { color: var(--gold); font-size: 0.85rem; }
.top-bar__address { margin-left: auto; }

/* ─── HEADER / NAV ─────────────────────────────────────────────────────────── */
.header {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Badges */
.header__badges {
  display: flex;
  gap: 28px;
  margin: 0 auto;
}

.header__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}
.header__badge i { color: var(--gold); font-size: 1.1rem; }

/* Nav */
.nav {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.nav__list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  list-style: none;
  gap: 4px;
}

.nav__link {
  display: block;
  padding: 14px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: left 0.25s, right 0.25s;
}
.nav__link:hover,
.nav__link--active { color: var(--gold); }
.nav__link:hover::after,
.nav__link--active::after { left: 20px; right: 20px; }

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ─── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    url('images/hero-courthouse.avif') center center / cover no-repeat;
  background-color: var(--maroon-dark);
  text-align: center;
  padding: 80px 24px;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(61,0,0,0.82) 0%,
    rgba(107,15,26,0.78) 50%,
    rgba(61,0,0,0.85) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero__pretitle {
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--text-light);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero__title {
  font-family: var(--ff-serif);
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero__divider span {
  display: block;
  width: 60px;
  height: 1.5px;
  background: var(--gold);
  opacity: 0.8;
}

.hero__subtitle {
  font-family: var(--ff-sans);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.7;
  color: var(--white);
  margin-bottom: 40px;
}

/* ─── SERVICES ─────────────────────────────────────────────────────────────── */
.services {
  background: radial-gradient(ellipse at center, var(--maroon-bright) 0%, #3d0000 70%);
  padding: 80px 24px;
}

.services__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-card {
  text-align: center;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.service-card__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
}

.service-card__title {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}

.service-card__text {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-light);
  max-width: 280px;
}

/* ─── ABOUT ────────────────────────────────────────────────────────────────── */
.about {
  background: var(--maroon-dark);
  padding: 0;
}

.about__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.about__text-side {
  background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url('images/books-bg.svg') center / cover no-repeat;
  background-color: var(--maroon-bg);
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.about__title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--white);
}

.about__text {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 440px;
}

.about__socials {
  display: flex;
  gap: 14px;
}

.about__socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--white);
  transition: border-color 0.2s, color 0.2s;
}
.about__socials a:hover { border-color: var(--gold); color: var(--gold); }

.about__photo-side {
  overflow: hidden;
  background: var(--maroon-photo);
}

.about__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ─── EXPERTISE ────────────────────────────────────────────────────────────── */
.expertise {
  background:
    linear-gradient(rgba(30,0,0,0.75), rgba(30,0,0,0.75)),
    url('images/hero-courthouse.avif') center / cover no-repeat;
  background-color: var(--maroon-deep);
  padding: 80px 24px;
}

.expertise__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Expertise card */
.expertise__card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  padding: 40px 36px;
  backdrop-filter: blur(6px);
}

.expertise__logo {
  text-align: center;
  margin-bottom: 32px;
}

.expertise__logo-letters {
  font-family: var(--ff-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 4px;
}

.expertise__logo-label {
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
}

.expertise__logo-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 12px auto 0;
}

.expertise__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.expertise__item-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
}

.expertise__item-title {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.expertise__item-text {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-light);
}

/* Stats */
.stats {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  padding: 20px 0;
}

.stat {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat__icon {
  font-size: 2rem;
  color: rgba(255,255,255,0.7);
}

.stat__number {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.stat__label {
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
  display: block;
  margin-top: 4px;
}

/* ─── CONTACT ──────────────────────────────────────────────────────────────── */
.contact {
  background: radial-gradient(ellipse at center, var(--maroon-bright) 0%, #3d0000 70%);
  padding: 80px 24px;
}

.contact__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}

.contact__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-light);
}

.contact__icon {
  width: 20px;
  color: var(--gold);
  font-size: 1rem;
  text-align: center;
}

.contact__list a:hover { color: var(--gold); }

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  color: var(--white);
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.45); }

.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }

/* ─── FOOTER ───────────────────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  padding: 40px 24px 20px;
}

.footer__logo { display: flex; align-items: center; gap: 10px; }

.footer__copy {
  max-width: 1200px;
  margin: 18px auto 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ─── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .header__badges { display: none; }

  .services__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .about__inner { grid-template-columns: 1fr; }
  .about__photo-side { height: 340px; }

  .expertise__inner { grid-template-columns: 1fr; }
  .stats { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 24px; }

  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .hamburger { display: flex; }
  .header__cta { display: none; }

  .nav { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
  .nav.is-open { max-height: 300px; }
  .nav__list { flex-direction: column; gap: 0; }

  .top-bar__address { display: none; }
  .top-bar__inner { justify-content: center; }

  .about__text-side { padding: 48px 28px; }
  .expertise__card { padding: 28px 20px; }

}

/* ─── INNER PAGE HERO ──────────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('images/hero-courthouse.avif') center / cover no-repeat;
  background-color: var(--maroon-dark);
}

.page-hero--servicii {
  background-position: center 30%;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(40, 0, 0, 0.68);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero__title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--white);
}

/* ─── SERVICES FULL PAGE ───────────────────────────────────────────────────── */
.services-full {
  background: radial-gradient(ellipse at center, var(--maroon-bright) 0%, #3d0000 70%);
  padding: 72px 24px 56px;
}

.services-full__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.svc-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: background 0.25s;
}

.svc-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.svc-card__icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--maroon-dark);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}

.svc-card__title {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}

.svc-card__text {
  font-size: 0.82rem;
  line-height: 1.8;
  color: var(--text-light);
  text-align: left;
}

.svc-card__text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.services-full__cta {
  text-align: center;
}

/* ─── BIO (DESPRE MINE PAGE) ───────────────────────────────────────────────── */
.bio {
  background: var(--maroon-dark);
  padding: 72px 24px 56px;
}

.bio__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 56px;
}

.bio__title {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
}

.bio__text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bio__text p {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--text-light);
  text-align: justify;
}

.bio__text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bio__photo-wrap {
  position: sticky;
  top: 100px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--maroon-photo);
}

.bio__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.bio__cta {
  text-align: center;
}

/* ─── CONTACT PAGE ─────────────────────────────────────────────────────────── */
.contact-page {
  background: radial-gradient(ellipse at center, var(--maroon-bright) 0%, #3d0000 80%);
  padding: 72px 24px 64px;
  min-height: 70vh;
}

.contact-page__inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.contact-page__title {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--white);
}

.contact-page__subtitle {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-light);
  margin-top: -16px;
}

.contact-page__details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-page__details li {
  font-size: 0.95rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.contact-page__label {
  font-weight: 600;
  color: var(--white);
}

.contact-page__details a:hover { color: var(--gold); }

.contact-page__map {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  position: relative;
}

/* SS Monogram */
.contact-page__monogram {
  margin-top: 8px;
}

.contact-page__socials {
  display: flex;
  gap: 16px;
}

.contact-page__socials a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  transition: border-color 0.2s, color 0.2s;
}

.contact-page__socials a:hover { border-color: var(--gold); color: var(--gold); }

/* ─── FOOTER TWO-COLUMN ────────────────────────────────────────────────────── */
.footer--two-col .footer__two-col-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.footer__desc {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 340px;
}

.footer__col-title {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-bottom: 12px;
}

.footer__contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__contact-list a {
  font-size: 0.88rem;
  color: var(--gold);
  transition: opacity 0.2s;
}

.footer__contact-list a:hover { opacity: 0.75; }

/* ─── RESPONSIVE – NEW PAGES ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .services-full__grid { grid-template-columns: repeat(2, 1fr); }
  .bio__inner { grid-template-columns: 1fr; }
  .bio__photo-wrap { position: static; max-height: 420px; }
  .footer--two-col .footer__two-col-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .services-full__grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .bio__text p { text-align: left; }
  .contact-page__details li { flex-direction: column; gap: 2px; }
}

/* ─── MAP LINK OVERLAY ─────────────────────────────────────────────────────── */

.map-link-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}

/* ─── REAL LOGO IMAGES ─────────────────────────────────────────────────────── */
.header__logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer__logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}

.monogram__img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

/* ─── HAMBURGER X ANIMATION ────────────────────────────────────────────────── */
.hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ─── FORM SUCCESS STATE ────────────────────────────────────────────────────── */
.btn--success { background: var(--success) !important; border-color: var(--success) !important; color: var(--white) !important; }

/* ─── COMING SOON (articole page) ───────────────────────────────────────────── */
.coming-soon {
  background: radial-gradient(ellipse at center, var(--maroon-bright) 0%, var(--maroon-dark) 70%);
  padding: 100px 24px;
  text-align: center;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coming-soon__icon { font-size: 3rem; color: var(--gold); margin-bottom: 24px; display: block; }
.coming-soon__title { font-family: var(--ff-serif); font-size: 2rem; margin-bottom: 16px; color: var(--white); }
.coming-soon__text { color: rgba(255,255,255,0.65); max-width: 420px; margin: 0 auto 32px; line-height: 1.7; font-size: 0.95rem; }

/* ═══════════════════════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ─── Keyframes ──────────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes shimmerSlide {
  from { transform: translateX(-200%); }
  to   { transform: translateX(200%);  }
}

@keyframes rippleOut {
  to { transform: scale(4); opacity: 0; }
}

@keyframes iconBeat {
  0%, 100% { transform: scale(1);    opacity: 0.7; }
  50%       { transform: scale(1.18); opacity: 1;   }
}

@keyframes pageHeroExpand {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Hero entrance (staggered) ─────────────────────────────────────────────── */
.hero__pretitle,
.hero__title,
.hero__divider,
.hero__subtitle,
.hero__content > .btn {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero__pretitle       { animation-delay: 0.15s; }
.hero__title          { animation-delay: 0.38s; }
.hero__divider        { animation-delay: 0.58s; }
.hero__subtitle       { animation-delay: 0.75s; }
.hero__content > .btn { animation-delay: 0.95s; }

/* ─── Inner-page hero title ──────────────────────────────────────────────────── */
.page-hero__title {
  opacity: 0;
  animation: pageHeroExpand 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

/* ─── Scroll reveal ──────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity   0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.from-left  { transform: translateX(-42px); }
.reveal.from-right { transform: translateX(42px);  }
.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ─── Section divider shimmer ────────────────────────────────────────────────── */
.section-divider {
  background: rgba(201,168,76,0.45);
  position: relative;
  overflow: hidden;
}
.section-divider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: translateX(-200%);
  animation: shimmerSlide 3s linear infinite;
}

/* ─── Service card hover ─────────────────────────────────────────────────────── */
.service-card {
  border-radius: 8px;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.32s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 52px rgba(201,168,76,0.18);
}

/* ─── Svc card hover (Servicii page) ────────────────────────────────────────── */
.svc-card {
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.32s ease,
              background 0.25s,
              border-color 0.25s;
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 44px rgba(201,168,76,0.16);
  border-color: rgba(201,168,76,0.4);
}

/* ─── About / bio photo zoom ─────────────────────────────────────────────────── */
.about__photo,
.bio__photo {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.about__photo-side:hover .about__photo,
.bio__photo-wrap:hover   .bio__photo {
  transform: scale(1.05);
}

/* ─── Expertise item hover ───────────────────────────────────────────────────── */
.expertise__item {
  transition: background 0.25s;
  border-radius: 4px;
}
.expertise__item:hover {
  background: rgba(201,168,76,0.07);
}
.expertise__item:hover .expertise__item-icon {
  color: #e0bf6a;
}
.expertise__item-icon {
  transition: color 0.25s;
}

/* ─── Stat icon pulse ────────────────────────────────────────────────────────── */
.stat__icon {
  animation: iconBeat 2.6s ease-in-out infinite;
}

/* ─── Button ripple ──────────────────────────────────────────────────────────── */
.btn {
  position: relative;
  overflow: hidden;
}
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  transform: scale(0);
  animation: rippleOut 0.55s linear;
  pointer-events: none;
}

/* ─── FAQ SECTION ───────────────────────────────────────────────────────────── */
.faq {
  background: var(--maroon-deep);
  padding: 80px 24px;
}
.faq__inner {
  max-width: 860px;
  margin: 0 auto;
}
.faq__title {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gold);
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.faq__divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 48px;
}
.faq__item {
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 28px 0;
}
.faq__item:last-child { border-bottom: none; }
.faq__question {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 14px;
  line-height: 1.4;
}
.faq__answer p {
  color: var(--text-light);
  font-size: 0.97rem;
  line-height: 1.8;
}

/* ─── ARTICLES LISTING ──────────────────────────────────────────────────────── */
.articles-section {
  background: var(--maroon-dark);
  padding: 80px 24px;
  min-height: 400px;
}
.articles-section__inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.article-card {
  background: var(--maroon-bg);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 10px;
  padding: 32px 36px;
  transition: border-color 0.25s, transform 0.2s;
}
.article-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.article-card__meta {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
}
.article-card__category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.12);
  padding: 4px 12px;
  border-radius: 20px;
}
.article-card__date {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  align-self: center;
}
.article-card__title {
  font-family: var(--ff-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  line-height: 1.35;
  margin-bottom: 14px;
}
.article-card__title a {
  color: var(--white);
  transition: color 0.2s;
}
.article-card__title a:hover { color: var(--gold); }
.article-card__excerpt {
  color: var(--text-light);
  font-size: 0.94rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.article-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: gap 0.2s;
}
.article-card__link:hover { gap: 12px; }

/* ─── ARTICLE BODY PAGE ─────────────────────────────────────────────────────── */
.article-body {
  background: var(--maroon-dark);
  padding: 72px 24px 80px;
}
.article-body__inner {
  max-width: 820px;
  margin: 0 auto;
}
.article-body__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(201,168,76,0.25);
}
.article-meta__author,
.article-meta__date,
.article-meta__category {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.article-meta__author i,
.article-meta__date i,
.article-meta__category i {
  color: var(--gold);
  font-size: 0.8rem;
}
.article-body__content .article-lead {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 36px;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
}
.article-body__content h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--gold);
  margin: 40px 0 16px;
  letter-spacing: 0.02em;
}
.article-body__content p {
  color: var(--text-light);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 18px;
}
.article-body__content ul,
.article-body__content ol {
  color: var(--text-light);
  font-size: 0.97rem;
  line-height: 1.85;
  margin: 0 0 20px 24px;
}
.article-body__content li { margin-bottom: 8px; }
.article-body__content strong { color: var(--white); }
.article-body__cta {
  margin-top: 52px;
  padding: 32px 36px;
  background: var(--maroon-bg);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 10px;
  text-align: center;
}
.article-body__cta p {
  margin-bottom: 20px;
  font-size: 1rem;
}
.article-body__back {
  margin-top: 40px;
}
.page-hero__pretitle {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
