/* =============================================================
   Атанасови - СА — основен стил
   Дизайн: Claude Design "Premium Design System"
   Всеки цвят / шрифт / отстояние идва от променливите по-долу.
   ============================================================= */

/* ---------- 1. Токени ------------------------------------- */
:root {
  /* Всеки цвят е даден два пъти: hex за стари браузъри, после oklch —
     новите браузъри презаписват с точния цвят, старите пазят hex-а. */
  --navy-900: #07162a;  --navy-900: oklch(20% 0.045 255);
  --navy-800: #15273e;  --navy-800: oklch(27% 0.05 255);
  --navy-700: #243954;  --navy-700: oklch(34% 0.055 255);
  --gold:     #c3972a;  --gold:     oklch(70% 0.13 85);
  --gold-600: #9d7200;  --gold-600: oklch(58% 0.12 82);
  /* gold-700 е за ТЕКСТ: gold-600 дава само 4.34:1 върху бяло (нужни са 4.5).
     gold-600 остава за иконки и едри заглавия, където 3:1 е достатъчно. */
  --gold-700: #916600;  --gold-700: oklch(54% 0.12 82);
  --gold-100: #f8edd8;  --gold-100: oklch(95% 0.03 85);
  --cream:    #f9f4ec;  --cream:    oklch(97% 0.012 80);
  --cream-2:  #f3e5da;  --cream-2:  oklch(93% 0.022 60);
  --ink:      #1c1f24;  --ink:      oklch(24% 0.01 260);
  --muted:    #575b62;  --muted:    oklch(47% 0.012 260);
  --hair:     #dbdee3;  --hair:     oklch(90% 0.008 260);

  /* Шрифтове — смяна на заглавния шрифт става САМО тук
     (и в списъка на Google Fonts в partials/header.php). */
  --font-display: "Lobster", cursive;
  --font-heading: "Lora", "Times New Roman", serif;
  --font-body:    "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-para:    "Ubuntu Condensed", system-ui, sans-serif;

  /* Размери */
  --maxw:      1200px;
  --maxw-wide: 1280px;
  --pad-x: 32px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;

  --shadow-card: 0 1px 2px rgba(20, 20, 40, .04);
  --shadow-lift: 0 10px 28px rgba(20, 20, 40, .10);
  --shadow-deep: 0 12px 32px rgba(20, 20, 40, .10);
  --shadow-gold: 0 4px 16px rgba(180, 140, 60, .18);
}

/* ---------- 2. База --------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 500; margin: 0; line-height: 1.2; }
p  { font-family: var(--font-para); margin: 0; }
ul, ol { margin: 0; }
img { max-width: 100%; }

a { color: var(--navy-800); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--gold-700); }

:focus-visible { outline: 2px solid var(--gold-600); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--gold-100); color: var(--navy-900); }

/* Скрито визуално, но остава за екранни четци */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Прескачане до съдържанието — първи Tab на страницата */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--navy-900); color: #fff; padding: 10px 18px;
  border-radius: 0 0 var(--r-sm) var(--r-sm); font-size: 14px;
  transition: top .18s ease;
}
.skip-link:focus { top: 0; color: #fff; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* Уважава системната настройка "по-малко движение" */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ---------- 3. Оформление --------------------------------- */
.section { padding: 72px var(--pad-x); }
.section--tight     { padding-top: 56px; padding-bottom: 56px; }
.section--flush-top { padding-top: 16px; }
.section--cream     { background: var(--cream); }
.section--white     { background: #fff; }

.wrap       { max-width: var(--maxw); margin-inline: auto; }
.wrap--wide { max-width: var(--maxw-wide); }
.wrap--md   { max-width: 1100px; }
.wrap--sm   { max-width: 1000px; }
.wrap--xs   { max-width: 820px; }
.wrap--text { max-width: 760px; }
.wrap--form { max-width: 720px; }
.center     { text-align: center; }

/* Решетка с адаптивен брой колони.
   --min задава минималната ширина на колона за конкретния блок.
   min(...,100%) пази блока да не излиза извън екрана на тесни телефони. */
.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(min(var(--min, 240px), 100%), 1fr));
}
.grid--fill { grid-template-columns: repeat(auto-fill, minmax(min(var(--min, 240px), 100%), 1fr)); }

/* Двуколонна секция: текст + снимка */
.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }

.lift { transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.lift:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

/* Секция, която "захапва" отгоре предходната скосена секция */
.overlap { margin-top: -56px; position: relative; z-index: 2; }
.overlap--sm { margin-top: -40px; }

/* ---------- 4. Типография --------------------------------- */
.kicker {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 400; margin: 0 0 12px;
  color: var(--muted);
}
.kicker--navy { color: var(--navy-800); }
.kicker--gold { color: var(--gold-700); }

.h-page    { font-size: clamp(30px, 4.2vw, 46px); font-style: italic; color: var(--navy-900); margin: 0 0 18px; }
.h-section { font-size: clamp(26px, 3.2vw, 36px); margin: 0 0 12px; }
.h-cta     { font-size: clamp(24px, 3vw, 32px); margin: 0 auto 16px; max-width: 24ch; }
.h-italic  { font-style: italic; }

.lede        { font-size: 16px; color: var(--ink); line-height: 1.65; margin: 0; }
.lede--muted { color: var(--muted); font-size: 15px; }
.measure       { max-width: 56ch; }
.measure--wide { max-width: 60ch; }
.measure--auto { margin-inline: auto; }
.muted { color: var(--muted); }

/* ---------- 5. Хедър и навигация -------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff; box-shadow: 0 1px 0 var(--hair);
}
.header-inner {
  max-width: var(--maxw-wide); margin-inline: auto; width: 100%;
  padding: 14px 20px;
  display: flex; align-items: center; flex-wrap: wrap;
  justify-content: space-between; gap: 8px 14px;
}
.brand { order: 1; flex: 0 0 auto; display: flex; align-items: center; }
.brand img { height: 60px; width: auto; border-radius: 12px; display: block; }

.header-call { order: 2; padding: 9px 16px; font-size: 13.5px; flex: 0 0 auto; white-space: nowrap; }

.nav-toggle {
  order: 3; display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: 1.5px solid var(--hair); border-radius: var(--r-sm);
  background: #fff; color: var(--navy-900); cursor: pointer; font-size: 22px; padding: 0;
}
.nav-toggle:hover { border-color: var(--navy-900); }

.nav {
  order: 4; flex: 0 0 100%; width: 100%;
  display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: center;
  font-family: var(--font-para); font-size: 17px;
}
/* И двата вида връзки трябва да са блокови, за да им легне еднакво отстоянието
   отгоре. Преките деца на .nav стават блокови сами (flex ги преобразува), но
   връзката вътре в .nav-drop остава редова — а при редов елемент вертикалният
   отстъп не мести текста и „Услуги" застава с 2px по-високо от останалите. */
.nav > a, .nav-drop > a { display: block; padding: 2px 0; }
.nav a[aria-current="page"] { color: var(--gold-700); }

.nav-drop { position: relative; }
.nav-drop-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #fff; border: 1px solid var(--hair); border-radius: var(--r-sm);
  padding: 8px; display: flex; flex-direction: column; min-width: 170px;
  box-shadow: 0 10px 28px rgba(20, 20, 40, .12);
  opacity: 0; visibility: hidden;
  transition: opacity .15s ease, visibility .15s ease; z-index: 60;
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu { opacity: 1; visibility: visible; }
.nav-drop-menu a { padding: 8px 10px; border-radius: 6px; font-size: 15px; }
.nav-drop-menu a:hover { background: var(--cream); color: var(--gold-700); }

/* ---------- 6. Бутони ------------------------------------- */
.pill-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px;
  font-family: var(--font-para); font-size: 15px; font-weight: 500;
  border: none; cursor: pointer; text-align: center;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease,
              border-color .15s ease, color .15s ease;
}
.pill-btn:hover  { transform: translateY(-1px); }
.pill-btn:active { transform: translateY(0); }

.pill-primary { background: var(--navy-900); color: #fff; }
.pill-primary:hover  { background: var(--navy-800); color: #fff; }
.pill-primary:active { background: var(--navy-700); }

.pill-outline { background: var(--cream); color: var(--navy-900); border: 1.5px solid var(--hair); }
.pill-outline:hover  { border-color: var(--navy-900); color: var(--navy-900); }
.pill-outline:active { background: var(--cream-2); }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ---------- 7. Карти и медия ------------------------------ */
.soft-card {
  background: var(--cream); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--shadow-card);
}
.soft-card--white { background: #fff; }

.bordered-card {
  border: 1px solid var(--hair); background: var(--cream);
  border-radius: var(--r-md); padding: 22px;
}
a.bordered-card { display: flex; gap: 14px; align-items: flex-start; color: inherit; }
a.bordered-card:hover { border-color: var(--gold); color: inherit; }

/* Кръгче с иконка — три размера */
.icon-circle {
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: linear-gradient(160deg, #fff, var(--gold-100));
  box-shadow: var(--shadow-gold); flex: 0 0 auto;
}
.icon-circle--sm { width: 56px; height: 56px; }
.icon-circle--md { width: 64px; height: 64px; }
.icon-circle--lg { width: 96px; height: 96px; }
.icon-circle i     { font-size: 24px; color: var(--gold-600); }
.icon-circle--md i { font-size: 28px; }
.icon-circle img   { object-fit: contain; }
.icon-circle--lg img { width: 56px; height: 56px; }

.card-icon { font-size: 28px; color: var(--gold-600); margin-bottom: 12px; display: block; }

/* Рамка за снимка със зададено съотношение */
.photo-frame {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-deep); background: var(--cream);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ar-4-5  { aspect-ratio: 4 / 5; }
.ar-4-3  { aspect-ratio: 4 / 3; }
.ar-16-10 { aspect-ratio: 16 / 10; }
.ar-3-4  { aspect-ratio: 3 / 4; }
.ar-wide { aspect-ratio: 720 / 333; }

/* ---------- 8. Заглавен екран (начало) -------------------- */
.hero {
  position: relative; padding: 96px var(--pad-x) 220px; overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 50% 100%, 0 92%);
}
.hero-gradient {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 55%, #ecdcc8 100%);
}
.hero-photo {
  position: absolute; inset: 0; z-index: 0; opacity: .55;
  background-image: url("../assets/img/hero-bg.webp");
  background-size: cover; background-position: center;
  will-change: transform, opacity; transition: transform .1s linear;
}
.hero-veil {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(62% 60% at 50% 42%,
    rgba(255, 255, 255, .85) 0%, rgba(255, 255, 255, .4) 55%, rgba(255, 255, 255, 0) 100%);
}
.hero-inner {
  position: relative; z-index: 1; max-width: 760px; margin: 0 auto;
  text-align: center; animation: fadeUp .9s ease both;
}
.hero-kicker { font-family: var(--font-display); color: var(--navy-800); font-size: 20px; margin: 0 0 20px; }
.hero-title {
  font-family: var(--font-display); font-size: clamp(36px, 5.6vw, 58px);
  color: var(--navy-900); max-width: 16ch; margin: 0 auto 10px; line-height: 1.15;
}
/* Слоган на фирмата — стои плътно под името, затова горното отстояние на
   заглавието е по-малко от долното на слогана. Текстът е в SITE_SLOGAN. */
.hero-slogan {
  font-family: var(--font-heading); font-style: italic;
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--gold-700); margin: 0 0 20px; line-height: 1.35;
}
.hero-area  { font-size: 15px; color: var(--muted); margin: 0 0 20px; }
.hero-ornament { display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.hero-ornament img { width: 100%; max-width: 220px; height: auto; opacity: .8; }
.hero-lede { font-size: 18px; color: #000; max-width: 44ch; margin: 0 auto 28px; line-height: 1.65; font-weight: 500; }
.hero-note { font-size: 13px; color: var(--muted); }
.hero-note i { color: var(--gold-600); }
.hero-phones { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; margin-top: 14px; }
.hero-phones a { font-size: 16px; font-weight: 600; color: var(--navy-900); font-family: var(--font-para); }
.hero-phones i { color: var(--gold-600); }

/* Заглавен екран на вътрешните страници */
.page-hero {
  position: relative; padding: 80px var(--pad-x) 120px; overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 50% 100%, 0 92%);
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.page-hero--shallow {
  padding-bottom: 96px;
  clip-path: polygon(0 0, 100% 0, 100% 94%, 50% 100%, 0 94%);
}

/* ---------- 9. Блокове по страници ------------------------ */

/* Карти "с какво помагаме" (начало) */
.trust-card img { width: 72px; height: 72px; object-fit: contain; flex: 0 0 auto; }
.trust-card h3  { font-size: 16px; margin: 0 0 4px; }
.trust-card p   { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.5; }

/* Три стъпки */
.step-card { display: block; color: inherit; text-decoration: none; }
.step-card:hover { color: inherit; }
.step-card .icon-circle { margin-bottom: 20px; }
.step-num  { font-size: 12px; color: var(--muted); margin: 0 0 4px; letter-spacing: .06em; }
.step-card h3 { font-family: var(--font-para); font-size: 19px; margin: 0 0 8px; }
.step-card p  { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.55; }

/* Списък "Предлагани услуги" върху фонова графика */
.offered { position: relative; padding: 96px var(--pad-x); background: #fff; }
.offered-bg {
  position: absolute; inset: 0;
  background-image: url("../assets/img/services-bg-white.jpg");
  background-size: 100% 100%; background-position: center; background-repeat: no-repeat;
}
.offered-inner { position: relative; max-width: 820px; margin: 0 auto; }
.service-line {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 4px; border-bottom: 1px solid var(--hair);
}
/* По-дълъг списък се разлива в две колони на широк екран, за да не става
   отвесна ивица. На телефон се връща в една колона.
   grid-auto-flow:column пълни първо лявата колона докрай — така списъкът се
   чете отгоре надолу, а не отляво надясно. Броят редове идва от страницата
   (--rows), за да се дели по равно при добавяне на нов ред. */
.service-lines { display: grid; gap: 0 48px; grid-template-columns: 1fr; }

@media (min-width: 860px) {
  .service-lines {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(var(--rows, 5), auto);
    grid-auto-flow: column;
  }
}
.service-line i    { color: var(--gold-600); font-size: 22px; flex: 0 0 auto; }
.service-line span { color: var(--navy-900); font-size: 24px; font-family: var(--font-display); }

/* Отзиви */
.testimonial .stars { color: var(--gold-700); font-size: 13px; margin-bottom: 10px; }
.testimonial blockquote { font-family: var(--font-para); font-size: 14px; line-height: 1.6; margin: 0 0 14px; color: var(--ink); }
.testimonial cite { font-family: var(--font-para); font-size: 13px; color: var(--muted); font-style: normal; }

/* Защо да изберете нас */
.why-card { text-align: center; }
.why-card img { width: 84px; height: 84px; object-fit: contain; margin-bottom: 10px; }
.why-card p   { font-size: 15px; color: var(--ink); margin: 0; font-weight: 500; }

/* Често задавани въпроси — на <details>, работи и без JavaScript */
.faq-section {
  padding: 96px var(--pad-x) 100px; background: var(--cream);
  clip-path: polygon(0 0, 100% 0, 100% 92%, 50% 100%, 0 92%); margin-top: -40px;
}
.faq { border-bottom: 1px solid var(--hair); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 4px; font-family: var(--font-heading); font-size: 16px;
  color: var(--ink); cursor: pointer; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::marker { content: ""; }
.faq summary:hover { color: var(--gold-700); }
.faq summary i { color: var(--navy-800); flex: 0 0 auto; transition: transform .2s ease; }
.faq[open] summary i { transform: rotate(180deg); }
.faq p { font-size: 14.5px; color: var(--muted); line-height: 1.65; padding: 0 4px 20px; margin: 0; }

/* Документи (погребение / кремация) */
.doc-title { font-size: 21px; margin: 0 0 16px; }
.doc-title + .doc-list { margin-bottom: 0; }
.doc-title--next { margin-top: 32px; }
.doc-list {
  margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 10px;
  font-size: 14.5px; color: var(--ink); line-height: 1.6;
}

/* Паметници — филтри и решетка */
.filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.filter-btn {
  padding: 10px 20px; border-radius: 999px;
  font-family: var(--font-para); font-size: 15px; cursor: pointer;
  border: 1.5px solid var(--hair); background: #fff; color: var(--navy-900);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.filter-btn:hover { border-color: var(--navy-900); }
.filter-btn[aria-pressed="true"] { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.mon-card .photo-frame { margin-bottom: 14px; border-radius: 18px; box-shadow: 0 6px 24px rgba(20, 20, 40, .08); }
.mon-cat { font-size: 12px; color: var(--gold-700); margin: 0 0 4px; text-transform: uppercase; letter-spacing: .04em; }
.mon-card h3 { font-size: 17px; margin: 0 0 6px; }
.mon-card p  { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.55; }

/* Материали — мостри камък.
   Снимките са изрязани в самите файлове (вграденият надпис е махнат), затова
   тук няма ограничение за съотношението. 4:3 дава плътна мостра, а не ивица. */
.material { margin: 0; text-align: center; }

.material-photo {
  position: relative;
  aspect-ratio: 4 / 3; overflow: hidden;
  border-radius: var(--r-md); box-shadow: var(--shadow-deep);
  margin-bottom: 18px; background: var(--cream);
}
.material-photo img {
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: center;
}
/* Тънък вътрешен кант — иначе белият мрамор се слива с бялата страница. */
.material-photo::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(20, 20, 40, .12);
  pointer-events: none;
}

.material h3 { font-size: 18px; margin: 0; color: var(--navy-900); }
.material h3::after {
  content: ""; display: block; width: 28px; height: 2px;
  background: var(--gold); border-radius: 2px; margin: 12px auto 14px;
}
/* Без max-width — колоната и без това е тясна (около 254px на монитор),
   а допълнително стесняване накъсва описанието на много къси редове. */
.material p { font-size: 13.5px; color: var(--muted); line-height: 1.7; margin: 0; }

/* Стъпки с номер в кръгче (паметници) */
.num-step { background: #fff; border-radius: var(--r-lg); padding: 28px; }
.num-step .icon-circle { margin-bottom: 16px; }
.num-step .num { font-family: var(--font-heading); font-style: italic; font-size: 22px; color: var(--gold-700); }
.num-step h3 { font-size: 18px; margin: 0 0 8px; }
.num-step p  { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.55; }

/* ---------- 10. Форма за контакт -------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; }
.contact-card {
  background: #fff; border-radius: var(--r-lg); padding: 32px;
  box-shadow: 0 12px 32px rgba(20, 20, 40, .08);
}
.cf-form  { display: flex; flex-direction: column; gap: 16px; }
.cf-field { display: flex; flex-direction: column; gap: 6px; }
.cf-field label { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--navy-800); }
.cf-field label .req { color: var(--gold-700); }
.cf-input {
  font-family: var(--font-body); font-size: 15px; width: 100%;
  padding: 12px 14px; border: 1.5px solid var(--hair); border-radius: 12px;
  background: #fff; color: var(--ink);
  transition: border-color .15s ease;
}
.cf-input::placeholder { color: var(--muted); opacity: .7; }
.cf-input:hover { border-color: var(--gold); }
.cf-input:focus { outline: 2px solid var(--gold-600); outline-offset: 1px; border-color: transparent; }
textarea.cf-input { resize: vertical; min-height: 110px; }

/* Капан за спам — скрит за хора, видим за ботове */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-msg { border-radius: var(--r-md); padding: 20px 22px; margin-bottom: 20px; }
.form-msg h3 { font-size: 17px; margin: 10px 0 6px; }
.form-msg p  { margin: 0; font-size: 14px; color: var(--muted); }
.form-msg i  { font-size: 28px; }
.form-msg--ok  { background: var(--cream); }
.form-msg--ok i { color: var(--gold-600); }
.form-msg--err { background: var(--gold-100); }
.form-msg--err i { color: #a3341f; }
.form-hint { font-family: var(--font-body); font-size: 12.5px; color: var(--muted); margin: 0; }

.info-list { display: flex; flex-direction: column; gap: 14px; font-size: 14.5px; }
.info-item { display: flex; gap: 10px; align-items: center; }
.info-item--top { align-items: flex-start; }
.info-item i { font-size: 20px; color: var(--gold-600); flex: 0 0 auto; }

/* ---------- 11. Футър и бутон за обаждане ----------------- */
.site-footer {
  background: var(--navy-900); color: rgba(255, 255, 255, .82);
  padding: 64px var(--pad-x) 28px;
}
.footer-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
}
.site-footer a { color: rgba(255, 255, 255, .82); }
.site-footer a:hover { color: var(--gold); }
.footer-logo { height: 52px; width: auto; border-radius: 12px; display: block; margin-bottom: 12px; }
.footer-about { font-size: 13.5px; max-width: 34ch; line-height: 1.6; opacity: .85; }
.footer-title {
  font-family: var(--font-body); color: #fff; font-weight: 600; font-size: 13px;
  letter-spacing: .06em; text-transform: uppercase; margin: 0 0 14px;
}
.footer-title--next { margin-top: 22px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-contact p { font-size: 14px; margin: 0 0 8px; }
.footer-contact a { color: #fff; }
.social-row { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255, 255, 255, .1); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; color: #fff;
  transition: background .15s ease;
}
.social-btn:hover { background: rgba(255, 255, 255, .2); color: #fff; }
.social-btn i { font-size: 18px; }
.footer-legal { text-align: center; font-size: 12px; opacity: .6; margin: 48px 0 0; }

.call-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy-900); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(20, 30, 60, .35);
  transition: background .15s ease, transform .15s ease;
}
.call-fab:hover { background: var(--navy-800); color: #fff; transform: translateY(-2px); }
.call-fab i { font-size: 24px; }

/* ---------- 12. Адаптация към екрана ---------------------- */

/* Таблет */
@media (max-width: 1024px) {
  :root { --pad-x: 24px; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero { padding-bottom: 180px; }
}

/* Под тази ширина менюто става падащо (бургер) */
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    margin-top: 6px; padding: 6px 0 10px; border-top: 1px solid var(--hair);
  }
  .nav.is-open { display: flex; }
  .nav > a, .nav-drop > a {
    display: block; padding: 13px 6px; font-size: 18px;
    border-bottom: 1px solid var(--hair);
  }
  .nav-drop { position: static; }
  .nav-drop-menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    border: none; box-shadow: none; padding: 4px 0 4px 18px; min-width: 0;
    background: transparent;
  }
  .nav-drop-menu a {
    font-size: 16px; color: var(--muted); padding: 10px 6px;
    border-bottom: 1px solid var(--hair);
  }
}

/* Телефон */
@media (max-width: 768px) {
  :root { --pad-x: 18px; }
  .section { padding: 48px var(--pad-x); }
  .section--tight { padding-top: 40px; padding-bottom: 40px; }
  .hero { padding: 64px var(--pad-x) 140px; }
  .page-hero { padding: 56px var(--pad-x) 92px; }
  .page-hero--shallow { padding-bottom: 76px; }
  .brand img { height: 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .site-footer { padding-top: 48px; }
  .footer-legal { margin-top: 32px; }
  .soft-card { padding: 22px; }
  .contact-card { padding: 24px; }
  .overlap { margin-top: -40px; }
  .faq-section { padding: 64px var(--pad-x) 72px; }
  .offered { padding: 64px var(--pad-x); }
  .offered-bg { background-size: cover; opacity: .5; }
  .service-line span { font-size: 20px; }
  /* Филтрите стават достатъчно високи за пръст (44px) */
  .filter-btn { padding: 12px 20px; }
  .call-fab { bottom: 16px; right: 16px; width: 52px; height: 52px; }
  .hero-lede { font-size: 16.5px; }
  .grid { gap: 16px; }
}

/* Тесен телефон */
@media (max-width: 480px) {
  .brand img { height: 42px; }
  .header-inner { padding: 10px 14px; }
  /* Логото, бутонът за обаждане и бургерът не се събират на един ред,
     затова бутонът остава само с иконката (текстът е в aria-label). */
  .header-call { padding: 0; width: 44px; height: 44px; gap: 0; }
  .header-call .call-label { display: none; }
  .header-call i { font-size: 20px; }
  .pill-btn { padding: 12px 20px; font-size: 14px; }
  .btn-row { gap: 10px; }
  .btn-row .pill-btn { flex: 1 1 100%; }
  .hero { padding-bottom: 110px; clip-path: polygon(0 0, 100% 0, 100% 95%, 50% 100%, 0 95%); }
  .page-hero { clip-path: polygon(0 0, 100% 0, 100% 96%, 50% 100%, 0 96%); }
  .faq-section { clip-path: polygon(0 0, 100% 0, 100% 96%, 50% 100%, 0 96%); }
  .hero-phones { gap: 14px; }
  .trust-card img { width: 56px; height: 56px; }
  .why-card img { width: 68px; height: 68px; }
}

/* ---------- 13. Печат ------------------------------------- */
@media print {
  .site-header, .call-fab, .nav-toggle, .btn-row, .hero-photo, .hero-veil { display: none !important; }
  body { color: #000; background: #fff; }
  .hero, .page-hero, .faq-section { clip-path: none; background: #fff; padding: 24px 0; }
  .site-footer { background: #fff; color: #000; padding: 24px 0; }
  .site-footer a, .footer-contact a { color: #000; }
  a[href^="tel:"]::after { content: " (" attr(href) ")"; font-size: 11px; }
  .faq p { display: block !important; }
}
