/* =====================================================
   CLARVĂZĂTOAREA REYYAN — style.css
   Fundal: gri‑cald (crem‑sidefat) + auriu + teal
   Mobile-first. Desktop: 768px+
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  /* Paleta principală – text și fundal */
  --bg-page:       #f7f5f0;   /* gri‑crem cald, fundal pagină */
  --bg-card:       #ffffff;   /* alb pentru carduri */
  --bg-card-alt:   #faf9f5;   /* alternativă ușor mai caldă */
  --text-body:     #2d2a24;   /* text principal, gri‑maro închis */
  --text-heading:  #1c1917;   /* titluri, aproape negru */
  --text-muted:    #6b7280;   /* text secundar, atenuat */
  --text-on-dark:  #f0fdf4;   /* text pe fundaluri închise (păstrat) */

  /* Accente teal / verde mistic */
  --teal:          #0d9488;
  --teal-l:        #2dd4bf;
  --teal-p:        #99f6e4;
  --teal-soft:     rgba(13,148,136,0.12);

  /* Accente aurii */
  --gold:          #d97706;
  --gold-l:        #f59e0b;
  --gold-p:        #fcd34d;
  --gold-soft:     rgba(217,119,6,0.1);
  --gold-glow:     rgba(217,119,6,0.35);

  /* Violet subtil */
  --violet:        #a855f7;

  /* Borduri și umbre */
  --border-light:  rgba(13,148,136,0.15);
  --border-gold:   rgba(217,119,6,0.2);
  --shadow-card:   0 12px 32px rgba(0,0,0,0.05);
  --shadow-gold:   0 8px 24px rgba(217,119,6,0.12);

  --r: 12px;
}

body {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 16px;
  background: var(--bg-page);
  color: var(--text-body);
  overflow-x: hidden;
  padding-bottom: 36px;
  -webkit-font-smoothing: antialiased;
}
@media (max-width:767px) { body { font-size: 17px; } }

/* Fundal decorativ: nebuloasă aurie fină */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(212,175,55,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 20%, rgba(245,158,11,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 85%, rgba(252,211,77,0.06) 0%, transparent 50%);
  animation: nebula 12s ease-in-out infinite alternate;
}
@keyframes nebula { 0%{opacity:.7} 100%{opacity:1} }

/* Praf de stele aurii */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Ccircle cx='20' cy='30' r='1.2' fill='rgba(212,175,55,0.22)'/%3E%3Ccircle cx='150' cy='80' r='0.8' fill='rgba(245,158,11,0.18)'/%3E%3Ccircle cx='300' cy='40' r='1.5' fill='rgba(212,175,55,0.18)'/%3E%3Ccircle cx='90' cy='250' r='1' fill='rgba(245,158,11,0.16)'/%3E%3Ccircle cx='200' cy='350' r='0.7' fill='rgba(252,211,77,0.2)'/%3E%3Ccircle cx='350' cy='200' r='1.3' fill='rgba(217,119,6,0.14)'/%3E%3Ccircle cx='280' cy='320' r='0.9' fill='rgba(212,175,55,0.18)'/%3E%3Ccircle cx='50' cy='180' r='1.1' fill='rgba(245,158,11,0.15)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 400px 400px;
  animation: twinkle 8s ease-in-out infinite alternate;
  opacity: 0.6;
}
@keyframes twinkle { 0%{opacity:.4} 100%{opacity:1} }

.container { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; padding: 0 18px; }
section    { padding: 56px 0; position: relative; z-index: 1; }

/* ── TYPOGRAPHY ── */
.eyebrow {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: .7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-l);
  margin-bottom: 10px;
  font-weight: 600;
}
.section-header { text-align: center; margin-bottom: 44px; }
.section-title {
  font-family: 'Cinzel Decorative', cursive;
  font-size: clamp(1.4rem, 5vw, 2.4rem);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.2;
  margin-bottom: 14px;
  text-shadow: 0 0 20px rgba(13,148,136,0.2);
}
.section-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-body);
  max-width: 640px;
  margin: 0 auto;
  font-style: italic;
}
.section-header::after {
  content: '— ✦ —';
  display: block;
  margin-top: 12px;
  font-size: .95rem;
  color: var(--teal);
  letter-spacing: 6px;
  opacity: .5;
}

/* ── BUTTONS ── */
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.btn-call {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Cinzel', serif; font-weight: 700; letter-spacing: 1.2px;
  text-decoration: none; color: #fff;
  background: linear-gradient(135deg, var(--gold-l), var(--gold-p));
  padding: 13px 28px; border-radius: 50px;
  box-shadow: 0 4px 18px var(--gold-glow);
  transition: transform .2s, box-shadow .3s; white-space: nowrap;
  font-size: .9rem;
}
.btn-call:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(217,119,6,0.5); }

.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Cinzel', serif; font-weight: 700; letter-spacing: 1.2px;
  text-decoration: none; color: #fff;
  background: linear-gradient(135deg, #1a7a45, #25d366);
  padding: 13px 28px; border-radius: 50px;
  box-shadow: 0 4px 18px rgba(37,211,102,.2);
  transition: transform .2s; white-space: nowrap; font-size: .9rem;
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(37,211,102,.4); }

.btn-mystic {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Cinzel', serif; font-size: .9rem; letter-spacing: 1.2px;
  text-decoration: none; color: var(--teal);
  background: transparent;
  border: 1px solid var(--border-light);
  padding: 12px 26px; border-radius: 50px;
  box-shadow: 0 2px 12px rgba(13,148,136,0.1);
  transition: all .3s; white-space: nowrap;
}
.btn-mystic:hover {
  background: rgba(13,148,136,0.05);
  box-shadow: 0 4px 20px rgba(13,148,136,0.2);
}

.btn-sm { font-size: .8rem !important; padding: 10px 20px !important; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}
.nav-inner {
  display: flex; align-items: center;
  padding: 8px 16px; gap: 8px;
  max-width: 1100px; margin: 0 auto;
}
.nav-logo {
  font-family: 'Cinzel Decorative', cursive;
  font-size: .82rem;
  color: var(--text-heading);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex; align-items: center; gap: 5px;
}
.nav-logo span { font-size: .78rem; color: var(--teal); }
.nav-burger {
  margin-left: auto;
  background: none;
  border: 1px solid var(--border-light);
  color: var(--text-body);
  font-size: 1rem;
  padding: 4px 9px;
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-links {
  list-style: none; display: none;
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--border-light);
  padding: 10px 0;
  z-index: 300;
}
.nav-links.open { display: block; }
.nav-links li a {
  display: block; padding: 10px 20px;
  font-family: 'Cinzel', serif; font-size: .78rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-body); text-decoration: none;
  transition: color .2s;
}
.nav-links li a:hover { color: var(--teal-l); }
.nav-cta {
  font-family: 'Cinzel', serif; font-size: .72rem; letter-spacing: .8px;
  background: linear-gradient(135deg, var(--teal), #0f766e);
  color: #fff; text-decoration: none;
  padding: 7px 12px; border-radius: 30px;
  white-space: nowrap; flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(13,148,136,0.3);
}

/* ── FLOATING CTA ── */
.floating-cta { display: none; }

/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 18px 72px;
}
.hero-badge {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: .64rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid var(--border-light);
  padding: 5px 18px;
  border-radius: 30px;
  background: rgba(13,148,136,0.04);
  margin-bottom: 18px;
}
.hero h1 {
  font-family: 'Cinzel Decorative', cursive;
  font-size: clamp(2rem, 9vw, 4rem);
  font-weight: 900;
  color: var(--text-heading);
  line-height: 1.1;
  margin-bottom: 10px;
  text-shadow: 0 0 30px rgba(13,148,136,0.15);
}
.h1-accent {
  color: transparent;
  background: linear-gradient(135deg, var(--teal-l), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-sub {
  font-family: 'Cinzel', serif;
  font-size: clamp(.72rem, 2.5vw, .95rem);
  color: var(--teal);
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

/* Hero photo */
.hero-photo-wrap {
  position: relative;
  width: min(86vw, 340px);
  aspect-ratio: 3/4;
  margin: 18px auto 0;
  border-radius: 16px;
  border: 2px solid rgba(13,148,136,0.4);
  box-shadow: 0 0 0 5px rgba(13,148,136,0.05), 0 12px 48px rgba(0,0,0,0.08);
  overflow: hidden;
  background: var(--bg-card);
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}
.hero-photo-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.hero-photo-fallback span { font-size: 3rem; opacity: .2; }
.hero-photo-fallback p {
  font-family: 'Cinzel', serif;
  font-size: .7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-contact-block {
  margin: 20px 0 22px;
  padding: 18px 16px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border-light);
  border-radius: var(--r);
}
@media (max-width: 767px) {
  .hero-contact-block .btn-group { flex-direction: column; gap: 10px; }
  .hero-contact-block .btn-call,
  .hero-contact-block .btn-wa {
    width: 100%;
    justify-content: center;
    animation: heroPulse 1.9s ease-out infinite;
  }
  @keyframes heroPulse {
    0%  { box-shadow: 0 0 0 0 rgba(245,158,11,.5), 0 4px 18px var(--gold-glow); }
    55% { box-shadow: 0 0 0 12px rgba(245,158,11,0), 0 4px 18px var(--gold-glow); }
    100%{ box-shadow: 0 0 0 0 rgba(245,158,11,0), 0 4px 18px var(--gold-glow); }
  }
}

.hero-desc {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.88;
  color: var(--text-body);
  max-width: 680px;
  margin: 0 auto 16px;
  font-style: italic;
}
.hero-desc strong { color: var(--text-heading); font-style: normal; }

.hero-collab {
  font-size: 1rem;
  color: var(--teal);
  max-width: 580px;
  margin: 0 auto 24px;
  font-style: italic;
  background: var(--teal-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--r);
  padding: 12px 18px;
  line-height: 1.7;
}
.hero-collab strong { color: var(--teal-l); font-style: normal; }

@media (min-width: 768px) {
  .hero-photo-wrap { width: 280px; aspect-ratio: 2/3; }
}

/* ── GARANTII ── */
.garantii-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  padding: 22px 18px;
  background: rgba(255,255,255,0.6);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  z-index: 1;
}
.g-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cinzel', serif;
  font-size: .7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-body);
}
.g-item span { font-size: 1rem; }

/* ── PHOTO + TEXT ── */
.pt-section { padding: 56px 0; }
.pt-section.pt-alt {
  background: linear-gradient(180deg, rgba(245,245,240,0.6), transparent);
}
.pt-row { display: flex; flex-direction: column; gap: 28px; }
.pt-img { order: 1; }
.pt-text { order: 2; }

.media-img {
  width: 100%;
  border-radius: var(--r);
  display: block;
  object-fit: cover;
  aspect-ratio: 3/4;
  object-position: center 10%;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
}
@media (min-width: 768px) { .media-img { aspect-ratio: 4/3; } }

.photo-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  aspect-ratio: 3/4;
  background: var(--bg-card-alt);
  border: 2px dashed var(--border-light);
  border-radius: var(--r);
  color: var(--text-muted);
  font-family: 'Cinzel', serif;
  font-size: .78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
}
.photo-slot span { font-size: 2.5rem; opacity: .3; }
.photo-slot small { font-size: .66rem; color: var(--text-muted); }

.pt-text h2 {
  font-family: 'Cinzel Decorative', cursive;
  font-size: clamp(1.2rem, 4.5vw, 1.8rem);
  color: var(--text-heading);
  margin-bottom: 14px;
  line-height: 1.3;
}
.pt-text p {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.88;
  color: var(--text-body);
  margin-bottom: 12px;
}
.pt-text p strong { color: var(--text-heading); }
.pt-text .btn-group { justify-content: flex-start; margin-top: 16px; }

/* ── SPECIALITATI ── */
.spec-section { padding: 56px 0; }
.spec-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(250,249,245,0.5));
  border-radius: var(--r);
  padding: 36px 22px;
  border: 1px solid var(--border-light);
}
.spec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 28px;
}
.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--bg-card);
  border-radius: var(--r);
  border: 1px solid var(--border-light);
  transition: border-color .3s;
}
.spec-item:hover { border-color: var(--teal); }
.spec-item > span { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.spec-item strong { color: var(--text-heading); display: block; margin-bottom: 2px; font-size: .93rem; }
.spec-item p { font-size: .86rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ── SERVICII ── */
#servicii { padding: 56px 0; }
.srv-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.srv-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r);
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.srv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--violet), var(--teal));
}
.srv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}
.srv-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.srv-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  color: var(--text-heading);
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.srv-card p {
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text-body);
  margin-bottom: 12px;
}
.srv-card ul { list-style: none; margin-bottom: 16px; }
.srv-card ul li {
  font-size: .88rem;
  color: var(--text-body);
  padding: 3px 0 3px 18px;
  position: relative;
}
.srv-card ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: .7rem;
  top: 5px;
}
.srv-btns { display: flex; gap: 8px; flex-wrap: wrap; }

/* ── CTA BANNER ── */
.cta-banner { padding: 56px 0; }
.cta-box {
  background: linear-gradient(135deg, #ffffff, #faf8f2);
  border: 1px solid var(--border-gold);
  border-radius: 22px;
  padding: 48px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}
.cta-box::before {
  content: '✦ ✦ ✦';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: .75rem;
  letter-spacing: 8px;
}
.cta-box h2 {
  font-family: 'Cinzel Decorative', cursive;
  font-size: clamp(1.2rem, 4vw, 2rem);
  color: var(--text-heading);
  margin-bottom: 14px;
}
.cta-box p {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 560px;
  margin: 0 auto 28px;
  font-style: italic;
  line-height: 1.8;
}

.phone-num {
  display: block;
  text-decoration: none;
  font-family: 'Cinzel Decorative', cursive;
  font-size: clamp(1.6rem, 6vw, 2.6rem);
  color: var(--gold);
  margin-bottom: 24px;
  white-space: nowrap;
  animation: phoneGlow 2.8s ease-in-out infinite;
}
@keyframes phoneGlow {
  0%,100% { text-shadow: 0 0 12px var(--gold-glow); }
  50%     { text-shadow: 0 0 32px rgba(245,158,11,0.6); }
}

/* ── VIDEO ── */
.video-section { padding: 56px 0; }
.video-wrap {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border-light);
  position: relative;
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
}
.local-video {
  width: 100%;
  display: block;
  border-radius: var(--r);
  background: #000;
  max-height: 70vh;
}
.video-default-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px 24px;
  background: var(--bg-card-alt);
  border-radius: var(--r);
  text-align: center;
  min-height: 260px;
}
.vd-icon { font-size: 3.5rem; opacity: .3; color: var(--teal); }
.video-default-thumb p {
  font-family: 'Cinzel', serif;
  font-size: .9rem;
  color: var(--text-body);
  letter-spacing: 1px;
}
.video-default-thumb small { font-size: .78rem; color: var(--text-muted); line-height: 1.8; }
.video-default-thumb strong { color: var(--teal-l); }

/* ── STEPS ── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-light);
}
.step:last-child { border-bottom: none; }
.step-n {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 2rem;
  color: rgba(13,148,136,0.2);
  min-width: 52px;
  text-align: center;
  line-height: 1;
  font-weight: 900;
}
.step-c h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--text-heading);
  margin-bottom: 6px;
}
.step-c p { font-size: .95rem; line-height: 1.7; color: var(--text-body); }

/* ── EXTRA BOX ── */
.extra-box {
  background: var(--bg-card);
  border-radius: var(--r);
  padding: 36px 24px;
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--teal);
  box-shadow: var(--shadow-card);
}
.extra-box h3 {
  font-family: 'Cinzel Decorative', cursive;
  font-size: clamp(1.2rem, 4vw, 1.6rem);
  color: var(--text-heading);
  margin-bottom: 16px;
}
.extra-box p {
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 14px;
}
.extra-box p strong { color: var(--text-heading); }
.extra-box p:last-of-type { margin-bottom: 0; }

/* ── TESTIMONIALE ── */
#multumiri { padding: 56px 0; }
.testi-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r);
  padding: 22px;
  position: relative;
  transition: transform .3s;
  box-shadow: var(--shadow-card);
}
.testi-card:hover { transform: translateY(-3px); }
.testi-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 16px;
  font-family: 'Cinzel Decorative', cursive;
  font-size: 3.5rem;
  color: var(--teal);
  opacity: .15;
  line-height: 1;
}
.testi-stars {
  color: var(--gold-l);
  font-size: .95rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.testi-text {
  font-size: .98rem;
  font-weight: 500;
  line-height: 1.78;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 12px;
}
.testi-author {
  font-family: 'Cinzel', serif;
  font-size: .82rem;
  color: var(--teal-l);
  letter-spacing: 1px;
}
.disclaimer {
  text-align: center;
  font-size: .76rem;
  color: var(--text-muted);
  margin-top: 18px;
  font-style: italic;
}

/* ── CONTACT ── */
.contact-box {
  background: linear-gradient(135deg, #ffffff, #faf8f2);
  border-radius: 26px;
  padding: 52px 24px;
  text-align: center;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-gold);
}
.contact-box h2 {
  font-family: 'Cinzel Decorative', cursive;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  color: var(--text-heading);
  margin-bottom: 14px;
}
.contact-box > p {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 520px;
  margin: 0 auto 28px;
  font-style: italic;
  line-height: 1.8;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border-light);
  padding: 36px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.footer-logo {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 1.1rem;
  color: var(--text-heading);
  margin-bottom: 14px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  list-style: none;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.footer-links a {
  font-family: 'Cinzel', serif;
  font-size: .72rem;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-decoration: none;
}
.footer-links a:hover { color: var(--teal-l); }
.footer-phones {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
}
.footer-phone {
  display: inline-block;
  font-family: 'Cinzel Decorative', cursive;
  font-size: clamp(.9rem, 3.5vw, 1.2rem);
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
}
.footer-wa { color: #25d366 !important; }
.footer-keywords {
  font-size: .68rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.8;
}
.footer-copy { font-size: .72rem; color: var(--text-muted); }

/* ── TICKER ── */
.ticker-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  height: 34px;
  background: rgba(255,255,255,0.95);
  border-top: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ticker-label {
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: linear-gradient(135deg, var(--teal), #0f766e);
  font-family: 'Cinzel', serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.ticker-track {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
}
.ticker-content {
  display: flex;
  white-space: nowrap;
  animation: tickScroll 55s linear infinite;
}
.ticker-content:hover { animation-play-state: paused; }
@keyframes tickScroll {
  0%{transform:translateX(0)} 100%{transform:translateX(-50%)}
}
.ti {
  font-family: 'Cinzel', serif;
  font-size: .66rem;
  letter-spacing: 1px;
  color: var(--text-body);
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ti a { color: var(--teal-l); text-decoration: none; }
.ts { color: rgba(13,148,136,0.4); }

/* ── MOBILE STICKY ── */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 42px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 148;
  width: calc(100% - 28px);
  max-width: 380px;
}
.mobile-sticky a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  font-family: 'Cinzel', serif;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--gold-l), var(--gold-p));
  padding: 15px 24px;
  border-radius: 50px;
  animation: msPulse 1.9s ease-out infinite;
}
@keyframes msPulse {
  0%  { box-shadow: 0 0 0 0 rgba(245,158,11,.7), 0 6px 18px var(--gold-glow); }
  55% { box-shadow: 0 0 0 12px rgba(245,158,11,0), 0 6px 18px var(--gold-glow); }
  100%{ box-shadow: 0 0 0 0 rgba(245,158,11,0), 0 6px 18px var(--gold-glow); }
}
.ring-icon {
  display: inline-block;
  animation: ringShake 2s ease-in-out infinite;
}
@keyframes ringShake {
  0%,60%,100%{transform:rotate(0)}
  10%{transform:rotate(-18deg)}
  20%{transform:rotate(18deg)}
  30%{transform:rotate(-12deg)}
  40%{transform:rotate(12deg)}
  50%{transform:rotate(-6deg)}
}

/* Watermark auriu subtil */
.wm-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='200'%3E%3Ctext transform='rotate(-35 180 100)' x='20' y='110' font-family='Georgia' font-size='12' fill='rgba(217,119,6,0.04)'%3E%C2%A9 clarvazatoareareyyan.com%3C/text%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 360px 200px;
}

/* ═══════════ DESKTOP 768px+ ═══════════ */
@media (min-width: 768px) {
  .nav-logo span { font-size: .88rem; }
  .nav-burger { display: none; }
  .nav-links {
    display: flex !important;
    position: static;
    background: none;
    border: none;
    padding: 0;
    gap: 20px;
    flex: 1;
    justify-content: center;
  }
  .nav-links li a { padding: 0; }

  .floating-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: fixed;
    bottom: 56px;
    right: 24px;
    z-index: 145;
    align-items: flex-end;
  }
  .float-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Cinzel', serif;
    font-size: .76rem;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 11px 16px;
    border-radius: 50px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    white-space: nowrap;
    transition: transform .2s;
  }
  .float-call {
    color: #fff;
    background: linear-gradient(135deg, var(--gold-l), var(--gold-p));
    animation: fpPulse 2.8s ease-in-out infinite;
  }
  @keyframes fpPulse {
    0%,100%{ box-shadow: 0 4px 14px var(--gold-glow); }
    50%    { box-shadow: 0 4px 32px rgba(252,211,77,0.5); }
  }
  .float-wa {
    color: #fff;
    background: linear-gradient(135deg, #1a7a45, #25d366);
  }
  .float-btn:hover { transform: scale(1.05); }

  .mobile-sticky { display: none !important; }

  .pt-row { flex-direction: row; gap: 48px; align-items: center; }
  .pt-img, .pt-text { flex: 1; order: unset !important; }
  .pt-reverse .pt-img { order: 2 !important; }
  .pt-reverse .pt-text { order: 1 !important; }

  .spec-grid { grid-template-columns: repeat(3, 1fr); }
  .srv-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .srv-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .mobile-sticky { display: block; }
}

/* ═══════════════════════════════════════
   DIPLOMA SECTION
   ═══════════════════════════════════════ */
.diploma-section { padding: 64px 0; position: relative; z-index: 1; }

.diploma-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.diploma-text h2 {
  font-family: 'Cinzel Decorative', cursive;
  font-size: clamp(1.2rem, 4.5vw, 1.8rem);
  color: var(--text-heading);
  margin-bottom: 16px;
  line-height: 1.3;
}
.diploma-text p {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.88;
  color: var(--text-body);
  margin-bottom: 14px;
}
.diploma-text p strong { color: var(--text-heading); }

.diploma-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.dt-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--r);
  box-shadow: var(--shadow-card);
}
.dt-item span { font-size: 1.3rem; flex-shrink: 0; }
.dt-item p {
  font-family: 'Cinzel', serif;
  font-size: .82rem;
  font-weight: 600;
  color: var(--teal-l);
  letter-spacing: 1px;
  margin: 0;
}

.diploma-img-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}
.diploma-frame {
  position: relative;
  width: 100%;
  max-width: 360px;
  border-radius: 12px;
  overflow: hidden;
}
.diploma-img {
  width: 100%;
  display: block;
  border-radius: 12px;
  box-shadow:
    0 0 0 2px rgba(217,119,6,0.5),
    0 0 0 6px rgba(217,119,6,0.08),
    0 20px 60px rgba(0,0,0,0.08);
  position: relative;
  z-index: 1;
  transition: transform .4s ease;
}
.diploma-frame:hover .diploma-img { transform: scale(1.02); }

.diploma-glow {
  position: absolute;
  inset: -4px;
  border-radius: 14px;
  z-index: 0;
  background: transparent;
  box-shadow: 0 0 0 2px rgba(217,119,6,0.5), 0 0 40px rgba(217,119,6,0.2);
  animation: diplomaGlow 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes diplomaGlow {
  0%,100% { box-shadow: 0 0 0 2px rgba(217,119,6,0.4), 0 0 30px rgba(217,119,6,0.15); }
  50%     { box-shadow: 0 0 0 3px rgba(252,211,77,0.6), 0 0 60px rgba(217,119,6,0.35); }
}

.diploma-caption {
  font-family: 'Cinzel', serif;
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .7;
  text-align: center;
}

@media (min-width: 768px) {
  .diploma-inner {
    flex-direction: row;
    gap: 56px;
    align-items: flex-start;
  }
  .diploma-text { flex: 1; }
  .diploma-img-col { flex: 0 0 340px; }
  .diploma-trust { flex-direction: row; flex-wrap: wrap; }
  .dt-item { flex: 1; min-width: 180px; }
}
/* ── Site Title Banner ── */
.site-title-banner {
  background: linear-gradient(135deg, #0d0618 0%, #1a0a2e 50%, #0d0618 100%);
  border-bottom: 2px solid var(--gold, #c9a84c);
  padding: 18px 20px 16px;
  text-align: center;
}
.site-title-text {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--gold, #c9a84c);
  letter-spacing: 1px;
  line-height: 1.4;
  margin: 0;
  text-shadow: 0 0 20px rgba(201,168,76,.5);
}
.site-title-sub {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: clamp(.75rem, 2vw, 1rem);
  font-weight: 400;
  color: #e8d5a0;
  letter-spacing: 2px;
  margin-top: 4px;
  text-transform: uppercase;
  opacity: .9;
}
