/* =========================================================
   Celeste Chic by Elena — stylesheet
   Paletă: roz pudrat + negru cărbune, pe crem cald
   Tipografie: Cormorant Garamond (display) + Allura (script) + Inter (text)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Allura&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- Variabile ---------- */
:root {
  --bg-cream: #fbeee8;
  --bg-soft: #fdf6f2;
  --bg-white: #ffffff;
  --text-dark: #1a1416;
  --text-soft: #4a3a3e;
  --text-muted: #8a7378;
  --pink-rose: #d4a3a5;
  --pink-deep: #b88082;
  --pink-light: #f5dcd9;
  --pink-blush: #ead0cd;
  --line: rgba(26, 20, 22, 0.12);
  --line-strong: rgba(26, 20, 22, 0.6);
  --shadow-soft: 0 10px 40px rgba(184, 128, 130, 0.15);
  --shadow-card: 0 20px 60px rgba(26, 20, 22, 0.08);

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-script: 'Allura', 'Brush Script MT', cursive;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1200px;
  --radius: 4px;
  --radius-lg: 12px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--bg-soft);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--pink-deep); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--text-dark); }
button { font-family: inherit; cursor: pointer; }

/* ---------- Tipografie ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); }
h4 { font-size: 1.15rem; font-weight: 600; }
p { margin: 0 0 1em; color: var(--text-soft); }

.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--pink-deep);
  letter-spacing: .01em;
  font-size: 1.4em;
  line-height: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--pink-deep);
  margin-bottom: 1.2rem;
}
.eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--pink-deep);
}

/* ---------- Container & sectiuni ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: clamp(60px, 9vw, 120px) 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: padding .3s ease;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav__logo img {
  height: 84px;
  width: auto;
  display: block;
}
.nav__menu {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__menu a {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-dark);
  position: relative;
  padding: 6px 0;
}
.nav__menu a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--pink-deep);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
}
.nav__menu a:hover::after,
.nav__menu a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__menu a.is-active { color: var(--pink-deep); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--text-dark);
  color: #fff;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: all .25s ease;
}
.nav__cta:hover { background: var(--pink-deep); color: #fff; transform: translateY(-1px); }

.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  position: relative;
}
.nav__toggle span {
  position: absolute;
  left: 8px; right: 8px;
  height: 1.5px;
  background: var(--text-dark);
  transition: all .3s ease;
}
.nav__toggle span:nth-child(1) { top: 14px; }
.nav__toggle span:nth-child(2) { top: 19px; }
.nav__toggle span:nth-child(3) { top: 24px; }
.nav__toggle.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(60px, 8vw, 120px) 0 clamp(80px, 10vw, 140px);
  background:
    radial-gradient(circle at 20% 20%, var(--pink-light) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, var(--pink-blush) 0%, transparent 55%),
    var(--bg-cream);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .03 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .6;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero__text { animation: fadeInUp 1s ease-out both; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.8rem, 6.5vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: .3em;
}
.hero__title em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  color: var(--pink-deep);
  font-size: 1.15em;
  line-height: 1;
  display: inline-block;
  transform: translateY(.04em);
}
.hero__subtitle {
  font-size: 1.1rem;
  max-width: 480px;
  color: var(--text-soft);
  margin-bottom: 2rem;
}
.hero__cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  animation: fadeIn 1.2s ease-out .2s both;
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.hero__visual::after {
  content: '';
  position: absolute;
  inset: 14px 14px -14px -14px;
  border: 1px solid var(--pink-deep);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.hero__badge {
  position: absolute;
  bottom: -28px;
  left: -28px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--text-dark);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: .95rem;
  line-height: 1.2;
  padding: 16px;
  box-shadow: var(--shadow-card);
  animation: spin 28s linear infinite;
}
.hero__badge span {
  display: block;
  font-family: var(--font-script);
  color: var(--pink-rose);
  font-size: 1.6rem;
  margin-bottom: 2px;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---------- Butoane ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .3s ease;
  text-decoration: none;
}
.btn--dark { background: var(--text-dark); color: #fff; }
.btn--dark:hover { background: var(--pink-deep); color: #fff; transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--text-dark);
}
.btn--ghost:hover { background: var(--text-dark); color: #fff; }
.btn--pink { background: var(--pink-deep); color: #fff; }
.btn--pink:hover { background: var(--text-dark); color: #fff; transform: translateY(-2px); }
.btn .arrow {
  display: inline-block;
  transition: transform .3s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Sectiuni titluri ---------- */
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-head--left {
  text-align: left;
  margin: 0 0 48px;
}
.section-head h2 {
  margin-bottom: .4em;
}
.section-head p {
  font-size: 1.05rem;
  color: var(--text-soft);
}

/* ---------- Servicii grid ---------- */
.services {
  background: var(--bg-white);
  position: relative;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--bg-soft);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: all .35s cubic-bezier(.2,.8,.2,1);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--pink-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  background: #fff;
  box-shadow: var(--shadow-card);
  border-color: transparent;
}
.service-card__icon {
  width: 48px; height: 48px;
  margin-bottom: 22px;
  color: var(--pink-deep);
}
.service-card__icon svg { width: 100%; height: 100%; stroke-width: 1.2; }
.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: .4em;
}
.service-card p {
  font-size: .95rem;
  color: var(--text-soft);
  margin-bottom: 1.2em;
}
.service-card__link {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-dark);
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.service-card__link:hover { color: var(--pink-deep); }

/* ---------- Servicii detaliate (servicii.html) ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 100px;
}
.service-detail:last-child { margin-bottom: 0; }
.service-detail--reverse .service-detail__media {
  order: 2;
}
.service-detail__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-detail__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s ease;
}
.service-detail__media:hover img { transform: scale(1.05); }
.service-detail__media .num {
  position: absolute;
  top: 24px; left: 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.2rem;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.service-detail h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
.service-detail ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 12px;
}
.service-detail ul li {
  position: relative;
  padding-left: 28px;
  font-size: .98rem;
  color: var(--text-soft);
}
.service-detail ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--pink-deep);
  font-size: .85rem;
  top: 4px;
}

/* ---------- Despre / Story ---------- */
.story {
  background: var(--bg-cream);
  position: relative;
}
.story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story__visual {
  position: relative;
  aspect-ratio: 1/1.15;
}
.story__visual--square { aspect-ratio: 1/1; }
.story__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.story__visual--frame::after {
  content: '';
  position: absolute;
  inset: -16px -16px 16px 16px;
  border: 1px solid var(--pink-deep);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.story__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.stat__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.6rem;
  color: var(--pink-deep);
  line-height: 1;
}
.stat__lbl {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ---------- Testimoniale ---------- */
.testimonials {
  background: var(--bg-white);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--bg-soft);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  position: relative;
  border: 1px solid var(--line);
}
.testimonial__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.testimonial__quote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0;
  color: var(--pink-deep);
  display: block;
  margin-bottom: 12px;
  height: 24px;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--pink-light);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--pink-deep);
  font-size: 1.1rem;
}
.testimonial__name { font-weight: 600; font-size: .92rem; color: var(--text-dark); }
.testimonial__meta { font-size: .78rem; color: var(--text-muted); }

/* ---------- CTA strip ---------- */
.cta-strip {
  background: var(--text-dark);
  color: #fff;
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before, .cta-strip::after {
  content: '✦';
  position: absolute;
  font-size: 1.4rem;
  color: var(--pink-deep);
  opacity: .4;
}
.cta-strip::before { top: 30%; left: 8%; }
.cta-strip::after { bottom: 30%; right: 8%; font-size: 2rem; }
.cta-strip h2 { color: #fff; }
.cta-strip h2 em {
  font-family: var(--font-script);
  color: var(--pink-rose);
  font-style: normal;
  font-size: 1.2em;
}
.cta-strip p {
  color: rgba(255,255,255,.7);
  max-width: 540px;
  margin: 0 auto 2rem;
}

/* ---------- Page header (pagini interioare) ---------- */
.page-header {
  padding: clamp(60px, 8vw, 110px) 0 clamp(40px, 6vw, 80px);
  background:
    radial-gradient(circle at 70% 30%, var(--pink-blush) 0%, transparent 50%),
    var(--bg-cream);
  text-align: center;
  position: relative;
}
.page-header__inner { max-width: 720px; margin: 0 auto; }
.page-header h1 em {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--pink-deep);
  font-size: 1.15em;
  display: inline-block;
  transform: translateY(.06em);
}
.page-header__breadcrumb {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.page-header__breadcrumb a { color: var(--text-muted); }
.page-header__breadcrumb a:hover { color: var(--pink-deep); }
.page-header__breadcrumb .sep { margin: 0 8px; opacity: .5; }

/* ---------- Despre — pagină dedicată ---------- */
.about-rich {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-rich h2 { margin-bottom: 1rem; }
.about-rich .lead {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.values {
  background: var(--bg-cream);
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-card {
  text-align: left;
  padding: 36px 28px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.value-card__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  color: var(--pink-deep);
  margin-bottom: 12px;
}
.value-card h3 { font-size: 1.3rem; margin-bottom: .5em; }
.value-card p { margin: 0; font-size: .95rem; }

/* ---------- Contact ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-form {
  background: #fff;
  padding: 44px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.field input, .field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: .98rem;
  color: var(--text-dark);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all .25s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--pink-deep);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(184,128,130,.12);
}
.field textarea { min-height: 130px; resize: vertical; }
.field--check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  color: var(--text-soft);
}
.field--check input { width: auto; margin-top: 4px; }

/* Mesaje de stare pentru formular (success / error / avertizare) */
.form-status {
  margin-top: 18px;
  padding: 0;
  font-size: .92rem;
  line-height: 1.5;
  border-radius: var(--radius);
  text-align: center;
  transition: all .25s ease;
}
.form-status:empty { display: none; }
.form-status--success {
  padding: 14px 18px;
  background: #ecf7ef;
  color: #1e6e3a;
  border: 1px solid #b6e1c2;
}
.form-status--error {
  padding: 14px 18px;
  background: #fdecec;
  color: #8a2222;
  border: 1px solid #f3c5c5;
}
.form-status--warn {
  padding: 14px 18px;
  background: #fff5e6;
  color: #8a5a13;
  border: 1px solid #f3d9a4;
}

/* Buton dezactivat în timpul trimiterii */
.btn:disabled,
.btn[disabled] {
  opacity: .65;
  cursor: not-allowed;
  pointer-events: none;
}

.contact-side {
  display: grid;
  gap: 28px;
}
.info-block {
  background: var(--bg-cream);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
}
.info-block h4 {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pink-deep);
  margin-bottom: 14px;
}
.info-block p, .info-block address {
  margin: 0 0 .3em;
  font-style: normal;
  color: var(--text-dark);
}
.info-block a { color: var(--text-dark); border-bottom: 1px solid var(--line); }
.info-block a:hover { color: var(--pink-deep); border-color: var(--pink-deep); }
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
  color: var(--text-soft);
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list li.is-today {
  color: var(--text-dark);
  font-weight: 600;
}

/* ---------- Pagini legale ---------- */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px clamp(60px, 9vw, 120px);
}
.legal h2 {
  font-size: 1.6rem;
  margin-top: 2.5em;
  padding-top: 1em;
  border-top: 1px solid var(--line);
}
.legal h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.legal p, .legal li { font-size: .98rem; color: var(--text-soft); }
.legal ul { padding-left: 22px; margin: 1em 0; }
.legal ul li { margin-bottom: .5em; }
.legal__updated {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  letter-spacing: .04em;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--text-dark);
  color: #fff;
  padding: 70px 0 30px;
  position: relative;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}
.footer__brand img {
  height: 110px;
  width: auto;
  margin-bottom: 18px;
}
.footer__brand p { color: rgba(255,255,255,.55); font-size: .92rem; }
.footer__col h5 {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--pink-rose);
}
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col ul li { margin-bottom: 10px; }
.footer__col a {
  color: rgba(255,255,255,.7);
  font-size: .92rem;
}
.footer__col a:hover { color: var(--pink-rose); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255,255,255,.5);
  font-size: .82rem;
}
.footer__bottom a { color: rgba(255,255,255,.7); }
.footer__bottom a:hover { color: var(--pink-rose); }

/* ---------- Tarife / Prețuri ---------- */
.tarife-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.tarife-intro p {
  font-size: 1.05rem;
  color: var(--text-soft);
  margin-bottom: 1.8em;
}
.tarife-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  background: var(--pink-light);
  color: var(--text-dark);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: all .25s ease;
  border: 1px solid var(--pink-blush);
}
.tarife-pdf-btn:hover {
  background: var(--pink-deep);
  color: #fff;
  border-color: var(--pink-deep);
  transform: translateY(-2px);
}
.tarife-pdf-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Anchor nav (jump links la categorii) */
.tarife-anchors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 70px;
  max-width: 760px;
}
.tarife-anchors a {
  padding: 9px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dark);
  transition: all .25s ease;
}
.tarife-anchors a:hover {
  background: var(--text-dark);
  color: #fff;
  border-color: var(--text-dark);
}

/* Container categorie */
.tarife-cat {
  margin-bottom: 80px;
  scroll-margin-top: 100px; /* offset pentru sticky header */
}
.tarife-cat:last-child { margin-bottom: 0; }
.tarife-cat__head {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.tarife-cat__head .eyebrow { margin-bottom: 1rem; }
.tarife-cat__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 500;
  color: var(--text-dark);
  margin: 0;
}
.tarife-cat__head h2 em {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--pink-deep);
  font-size: 1.15em;
  display: inline-block;
  transform: translateY(.06em);
}
.tarife-cat__head::after {
  content: '✦';
  display: block;
  color: var(--pink-deep);
  font-size: 1rem;
  margin-top: 20px;
  opacity: .6;
}

/* Sub-secțiune (în cadrul unei categorii: Tunsori, Vopsit, Balayage) */
.tarife-sub {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin-bottom: 24px;
  box-shadow: 0 4px 18px rgba(26,20,22,0.03);
}
.tarife-sub:last-child { margin-bottom: 0; }
.tarife-sub h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0 0 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.tarife-sub h3 em {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--pink-deep);
  font-size: 1.2em;
}

/* Lista de prețuri cu dotted leader */
.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.price-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 0;
  font-size: .98rem;
  border-bottom: 1px dashed transparent;
}
.price-list li:hover { background: var(--bg-soft); }
.price-list li:not(:last-child) {
  border-bottom-color: rgba(26,20,22,0.06);
}
.price-list .name {
  color: var(--text-dark);
  flex-shrink: 1;
}
.price-list .leader {
  flex: 1;
  border-bottom: 1px dotted rgba(184,128,130,0.5);
  margin: 0 8px;
  transform: translateY(-4px);
  min-width: 20px;
}
.price-list .price {
  color: var(--pink-deep);
  font-weight: 600;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* Note / disclaimere */
.tarife-note {
  margin-top: 18px;
  padding: 14px 18px;
  background: var(--bg-cream);
  border-left: 3px solid var(--pink-deep);
  border-radius: 4px;
  font-size: .88rem;
  color: var(--text-soft);
  font-style: italic;
}

/* Caseta CTA final pe Tarife */
.tarife-cta-box {
  background: var(--bg-cream);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
  margin-top: 60px;
}
.tarife-cta-box h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: .4em;
}
.tarife-cta-box h3 em {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--pink-deep);
}
.tarife-cta-box p {
  color: var(--text-soft);
  max-width: 520px;
  margin: 0 auto 1.8em;
}
.tarife-cta-box .btn-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 720px) {
  .tarife-sub { padding: 24px 22px; }
  .tarife-sub h3 { font-size: 1.35rem; }
  .price-list li { font-size: .92rem; padding: 9px 0; flex-wrap: wrap; }
  .price-list .leader { display: none; }
  .price-list .name { flex: 1; }
  .tarife-anchors { gap: 6px; }
  .tarife-anchors a { padding: 7px 13px; font-size: .72rem; }
  .tarife-cta-box { padding: 36px 22px; }
}

/* ---------- Header social/contact extra ---------- */
.nav__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--text-dark);
  margin-right: 6px;
  transition: all .25s ease;
}
.nav__social:hover {
  background: var(--pink-deep);
  color: #fff;
  border-color: var(--pink-deep);
  transform: translateY(-1px);
}
.nav__social svg { width: 18px; height: 18px; }
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-right: 14px;
  letter-spacing: .02em;
  white-space: nowrap;
}
.nav__phone:hover { color: var(--pink-deep); }
.nav__phone svg { width: 14px; height: 14px; }

/* ---------- Galerie / Portfolio ---------- */
.gallery {
  background: var(--bg-cream);
  position: relative;
  overflow: hidden;
}
.gallery__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}
.gallery__head > div { flex: 1; min-width: 280px; }
.gallery__head .eyebrow { margin-bottom: .8rem; }
.gallery__head h2 { margin-bottom: .3em; }
.gallery__head p { margin: 0; color: var(--text-soft); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  display: block;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26,20,22,.5));
  opacity: 0;
  transition: opacity .35s ease;
}
.gallery__item:hover::after { opacity: 1; }
.gallery__item .ig-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 2;
}
.gallery__item:hover .ig-overlay { opacity: 1; }
.gallery__item .ig-overlay svg { width: 36px; height: 36px; filter: drop-shadow(0 2px 8px rgba(0,0,0,.4)); }

/* Tile sizes (for asymmetric grid) */
.gallery__item--big {
  grid-column: span 3;
  grid-row: span 2;
}
.gallery__item--med {
  grid-column: span 3;
  grid-row: span 1;
}
.gallery__item--sm {
  grid-column: span 2;
  grid-row: span 1;
}
@media (max-width: 960px) {
  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery__item--big { grid-column: span 4; grid-row: span 2; }
  .gallery__item--med { grid-column: span 2; grid-row: span 1; }
  .gallery__item--sm { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 560px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 10px;
  }
  .gallery__item--big,
  .gallery__item--med,
  .gallery__item--sm {
    grid-column: span 2;
    grid-row: span 1;
  }
  .gallery__item--big { grid-row: span 2; }
}

/* ---------- Social block (footer + contact) ---------- */
.social-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  transition: all .25s ease;
}
.social-row a:hover {
  background: var(--pink-deep);
  color: #fff;
  transform: translateY(-2px);
}
.social-row a svg { width: 18px; height: 18px; }

.footer__contact-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}
.footer__contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: .92rem;
  color: rgba(255,255,255,0.75);
}
.footer__contact-list a { color: rgba(255,255,255,0.85); }
.footer__contact-list a:hover { color: var(--pink-rose); }
.footer__contact-list svg {
  width: 14px;
  height: 14px;
  color: var(--pink-rose);
  flex-shrink: 0;
}

/* Contact sidebar - social block */
.info-block--social {
  background: var(--text-dark);
  color: #fff;
}
.info-block--social h4 { color: var(--pink-rose); }
.info-block--social p { color: rgba(255,255,255,0.85); }
.info-block--social .social-row { margin-top: 14px; }

/* ---------- WhatsApp widget flotant ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  z-index: 999;
  transition: transform .25s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
.wa-float::before, .wa-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  z-index: -1;
  animation: pulseRing 2.4s cubic-bezier(.55,.0,.1,1) infinite;
}
.wa-float::after { animation-delay: 1.2s; }
@keyframes pulseRing {
  0% { transform: scale(1); opacity: .55; }
  80% { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav__logo img { height: 64px; }
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: block; }
  .nav__menu.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(253, 246, 242, 0.98);
    backdrop-filter: blur(12px);
    padding: 20px 24px 30px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
  }
  .nav__menu.is-open a { font-size: 1rem; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { aspect-ratio: 1/1.05; max-width: 480px; }
  .hero__badge { width: 110px; height: 110px; font-size: .82rem; bottom: -22px; left: -16px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail,
  .story__inner,
  .about-rich,
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .service-detail--reverse .service-detail__media { order: 0; }
  .story__stats { gap: 16px; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-form { padding: 32px 24px; }
}
@media (max-width: 560px) {
  .services__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .stat__num { font-size: 2rem; }
  .hero__cta-row { flex-direction: column; align-items: stretch; }
  .hero__cta-row .btn { justify-content: center; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
