/* =====================================================================
   Dr Nemanja Ranković — Design System
   Paleta: duboko teget-zelena + zlatna, tipografija Fraunces + Manrope
   ===================================================================== */

/* Ova stilska datoteka se učitava samo na stranicama plugina, pa je
   bezbedno postaviti globalni overflow-x guard bez dodatnog skoupinga. */
html {
  overflow-x: hidden;
}

:root {
  --ink:        #0c2925;
  --ink-2:      #123832;
  --ink-3:      #17453d;
  --gold:       #c9a44c;
  --gold-light: #e7cd8b;
  --gold-dark:  #a6832e;
  --cream:      #faf6ee;
  --cream-2:    #f2ead9;
  --white:      #ffffff;
  --text:       #1b2624;
  --text-soft:  #5c6b67;
  --text-faint: #8a968f;
  --border:     #e6ded0;
  --border-dark: rgba(255,255,255,0.14);

  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans:  'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(12,41,37,0.06);
  --shadow-md: 0 14px 40px rgba(12,41,37,0.10);
  --shadow-gold: 0 10px 30px rgba(201,164,76,0.35);
}

/* ---------- Reset ---------- */
.dnr-page, .dnr-page *, .dnr-page *::before, .dnr-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.dnr-page {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.dnr-page [id] { scroll-margin-top: 110px; }
.dnr-page img { max-width: 100%; display: block; }
.dnr-page a { color: inherit; text-decoration: none; }
.dnr-page ul { list-style: none; }
.dnr-page button { font-family: inherit; cursor: pointer; }
.dnr-page svg { width: 1em; height: 1em; }

.dnr-page h1, .dnr-page h2, .dnr-page h3, .dnr-page h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.dnr-container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

.dnr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.dnr-eyebrow::before {
  content: '';
  width: 26px;
  height: 1.5px;
  background: var(--gold-dark);
  display: inline-block;
}
.dnr-section--dark .dnr-eyebrow,
.dnr-hero .dnr-eyebrow {
  color: var(--gold-light);
}
.dnr-section--dark .dnr-eyebrow::before,
.dnr-hero .dnr-eyebrow::before { background: var(--gold-light); }

.dnr-section {
  padding: 100px 0;
}
.dnr-section--tight { padding: 72px 0; }
.dnr-section--dark {
  background: var(--ink);
  color: rgba(255,255,255,0.86);
}
.dnr-section--dark h2, .dnr-section--dark h3 { color: var(--white); }
.dnr-section--cream { background: var(--cream-2); }

.dnr-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.dnr-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.dnr-head h2 { font-size: clamp(28px, 3.4vw, 42px); margin: 14px 0 16px; }
.dnr-head p { color: var(--text-soft); font-size: 17px; }
.dnr-section--dark .dnr-head p { color: rgba(255,255,255,0.7); }

/* ---------- Buttons ---------- */
.dnr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color .25s ease;
  white-space: nowrap;
}
.dnr-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.dnr-btn:hover { transform: translateY(-2px); }

.dnr-btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-dark));
  color: var(--ink);
  box-shadow: var(--shadow-gold);
}
.dnr-btn--gold:hover { box-shadow: 0 16px 34px rgba(201,164,76,0.45); }

.dnr-btn--outline-light {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.dnr-btn--outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

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

.dnr-btn--dark {
  background: var(--ink);
  color: var(--white);
}
.dnr-btn--dark:hover { background: var(--ink-3); }

.dnr-btn--sm { padding: 11px 22px; font-size: 14px; }
.dnr-btn--block { width: 100%; }

/* ---------- Header ---------- */
.dnr-header {
  position: sticky;
  top: 0;
  z-index: 500;
  width: 100%;
  background: rgba(250,246,238,0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(12,41,37,0.08);
  transition: padding .3s ease, box-shadow .3s ease;
}
.dnr-header.is-scrolled { box-shadow: 0 8px 30px rgba(12,41,37,0.08); }
.dnr-header__inner {
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  transition: padding .3s ease;
}
.dnr-header.is-scrolled .dnr-header__inner { padding-top: 13px; padding-bottom: 13px; }

.dnr-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.15;
  min-width: 0;
  flex-shrink: 1;
}
.dnr-logo__name {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.dnr-logo__title {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-top: 3px;
  white-space: nowrap;
}

.dnr-nav { display: flex; align-items: center; gap: 2px; }
.dnr-nav a {
  padding: 10px 13px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  border-radius: 100px;
  transition: background .2s ease, color .2s ease;
  position: relative;
}
.dnr-nav a:hover { background: rgba(12,41,37,0.06); }
.dnr-nav a.is-active { color: var(--gold-dark); }

.dnr-header__actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.dnr-header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.dnr-header__phone svg { width: 17px; height: 17px; color: var(--gold-dark); }

.dnr-burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  border: none;
  flex-shrink: 0;
}
.dnr-burger svg { width: 20px; height: 20px; }

.dnr-mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100vh;
  height: 100dvh;
  z-index: 999999;
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  padding: 22px 26px 24px;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform .4s cubic-bezier(.5,0,.2,1);
}
.dnr-mobile-nav.is-open { transform: translateY(0); }
.dnr-mobile-nav__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; flex-shrink: 0; }
.dnr-mobile-nav__close {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: none; color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dnr-mobile-nav ul { display: flex; flex-direction: column; gap: 2px; flex-shrink: 0; }
.dnr-mobile-nav a {
  font-family: var(--font-serif);
  font-size: 25px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: block;
}
.dnr-mobile-nav__footer { margin-top: auto; padding-top: 20px; flex-shrink: 0; }
.dnr-mobile-nav__footer .dnr-btn {
  width: 100%;
  text-align: center;
}

/* ---------- Hero ---------- */
.dnr-hero {
  position: relative;
  background: radial-gradient(120% 140% at 15% -10%, #164039 0%, var(--ink) 55%, #071e1a 100%);
  color: var(--white);
  padding: 76px 0 110px;
  overflow: hidden;
}
.dnr-hero::before,
.dnr-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.5;
}
.dnr-hero::before {
  width: 520px; height: 520px;
  right: -160px; top: -180px;
  background: radial-gradient(circle at 30% 30%, rgba(201,164,76,0.35), transparent 70%);
}
.dnr-hero::after {
  width: 420px; height: 420px;
  left: -140px; bottom: -160px;
  background: radial-gradient(circle at 60% 60%, rgba(255,255,255,0.06), transparent 70%);
}
.dnr-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}
.dnr-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 9px 18px 9px 10px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 26px;
}
.dnr-hero__badge span.dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold-light);
  flex-shrink: 0;
}
.dnr-hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  color: var(--white);
  margin-bottom: 20px;
}
.dnr-hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}
.dnr-hero p.lead {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 38px;
}
.dnr-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 54px; }

.dnr-hero__meta {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}
.dnr-hero__meta div { display: flex; flex-direction: column; }
.dnr-hero__meta strong {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--gold-light);
}
.dnr-hero__meta span {
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

/* Zajednički "uramljeni" prikaz fotografije — koristi se za hero i portret */
.dnr-photo-frame {
  position: relative;
  z-index: 2;
}
.dnr-photo-frame::before {
  content: '';
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1.5px solid rgba(201,164,76,0.45);
  border-radius: var(--radius-lg);
  z-index: 0;
  pointer-events: none;
}

.dnr-hero__visual {
  position: relative;
  z-index: 1;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 30px 60px rgba(3,15,13,0.45);
  overflow: hidden;
}
.dnr-hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.dnr-hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,22,19,0.9) 0%, rgba(6,22,19,0.18) 42%, transparent 62%);
}
.dnr-hero__visual .caption {
  position: absolute;
  z-index: 2;
  bottom: 26px;
  left: 26px;
  right: 26px;
  text-align: center;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* ---------- Page banner (interne stranice) ---------- */
.dnr-page-banner {
  position: relative;
  background: radial-gradient(120% 160% at 85% -20%, #164039 0%, var(--ink) 55%, #071e1a 100%);
  color: var(--white);
  padding: 64px 0 84px;
  overflow: hidden;
  text-align: center;
}
.dnr-page-banner::before {
  content: '';
  position: absolute;
  width: 460px; height: 460px;
  right: -140px; top: -200px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(201,164,76,0.3), transparent 70%);
}
.dnr-page-banner .dnr-container { position: relative; z-index: 2; }
.dnr-page-banner .dnr-eyebrow { justify-content: center; color: var(--gold-light); }
.dnr-page-banner .dnr-eyebrow::before { background: var(--gold-light); }
.dnr-page-banner h1 {
  color: var(--white);
  font-size: clamp(32px, 4.4vw, 50px);
  margin: 16px 0 14px;
}
.dnr-page-banner p {
  color: rgba(255,255,255,0.68);
  max-width: 560px;
  margin: 0 auto;
  font-size: 17px;
}
.dnr-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 20px;
}
.dnr-breadcrumb a:hover { color: var(--white); }

/* ---------- Stats strip ---------- */
.dnr-stats {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.dnr-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.dnr-stats__item {
  text-align: center;
  padding: 40px 16px;
  border-left: 1px solid var(--border);
}
.dnr-stats__item:first-child { border-left: none; }
.dnr-stats__item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--ink);
}
.dnr-stats__item span {
  display: block;
  margin-top: 6px;
  font-size: 13.5px;
  color: var(--text-soft);
}

/* ---------- Cards / Services ---------- */
.dnr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.dnr-grid--3 { grid-template-columns: repeat(3, 1fr); }
.dnr-grid--2 { grid-template-columns: repeat(2, 1fr); }

.dnr-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.dnr-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,164,76,0.4);
}
.dnr-card__icon {
  width: 54px; height: 54px;
  border-radius: 15px;
  background: var(--ink);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: background .3s ease, color .3s ease;
}
.dnr-card__icon svg { width: 26px; height: 26px; }
.dnr-card:hover .dnr-card__icon { background: var(--gold); color: var(--ink); }
.dnr-card h3 { font-size: 19px; margin-bottom: 10px; }
.dnr-card p { color: var(--text-soft); font-size: 14.5px; }
.dnr-card a.dnr-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--gold-dark);
}
.dnr-card a.dnr-card__link svg { width: 14px; height: 14px; transition: transform .25s ease; }
.dnr-card a.dnr-card__link:hover svg { transform: translateX(4px); }

/* Service detail (full list on Oblasti rada) — svaka oblast je zasebna kartica */
.dnr-service-full {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 42px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.dnr-service-full:last-child { margin-bottom: 0; }
.dnr-service-full__head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}
.dnr-service-full__icon {
  width: 56px; height: 56px;
  border-radius: 15px;
  background: var(--cream-2);
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dnr-service-full__icon svg { width: 26px; height: 26px; }
.dnr-service-full h3 { font-size: 22px; }
.dnr-service-full__body p {
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 16px;
}
.dnr-service-full__body p:last-of-type { margin-bottom: 22px; }
.dnr-service-full__highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dnr-service-full__highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 600;
}
.dnr-service-full__highlights li svg {
  width: 14px; height: 14px;
  padding: 5px;
  box-sizing: content-box;
  color: var(--gold-dark);
  background: var(--cream-2);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---------- Timeline ---------- */
.dnr-timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding-left: 34px;
  border-left: 2px solid var(--border);
}
.dnr-timeline__item { position: relative; padding-bottom: 44px; }
.dnr-timeline__item:last-child { padding-bottom: 0; }
.dnr-timeline__item::before {
  content: '';
  position: absolute;
  left: -41px;
  top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--gold);
}
.dnr-timeline__year {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}
.dnr-timeline__item h3 { font-size: 19px; margin-bottom: 8px; }
.dnr-timeline__item p { color: var(--text-soft); font-size: 15px; max-width: 560px; }

/* ---------- About / bio ---------- */
.dnr-bio {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}
.dnr-bio__portrait-frame {
  position: sticky;
  top: 110px;
}
.dnr-bio__portrait {
  position: relative;
  z-index: 1;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.dnr-bio__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}
.dnr-bio__text p { color: var(--text-soft); margin-bottom: 18px; font-size: 16.5px; }
.dnr-bio__text h2 { font-size: 30px; margin-bottom: 18px; }
.dnr-bio__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.dnr-pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 18px;
}
.dnr-pillar svg { width: 24px; height: 24px; color: var(--gold-dark); margin-bottom: 12px; }
.dnr-pillar h4 { font-family: var(--font-sans); font-size: 15px; margin-bottom: 6px; }
.dnr-pillar p { font-size: 13.5px; color: var(--text-soft); }

/* ---------- FAQ ---------- */
.dnr-faq { max-width: 780px; margin: 0 auto; }
.dnr-faq__item {
  border-bottom: 1px solid var(--border);
}
.dnr-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--ink);
}
.dnr-faq__q svg { width: 20px; height: 20px; color: var(--gold-dark); flex-shrink: 0; transition: transform .3s ease; }
.dnr-faq__item.is-open .dnr-faq__q svg { transform: rotate(180deg); }
.dnr-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.dnr-faq__a p { padding: 0 4px 26px; color: var(--text-soft); max-width: 640px; }

/* ---------- CTA banner ---------- */
.dnr-cta {
  position: relative;
  background: radial-gradient(120% 160% at 85% 20%, #1a4a41 0%, var(--ink) 60%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 64px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
}
.dnr-cta h2 { color: var(--white); font-size: clamp(26px,3vw,36px); margin-bottom: 12px; }
.dnr-cta p { color: rgba(255,255,255,0.7); max-width: 440px; }
.dnr-cta__actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.dnr-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.dnr-info-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 30px; }
.dnr-info-item { display: flex; gap: 16px; align-items: flex-start; }
.dnr-info-item__icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--ink);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dnr-info-item__icon svg { width: 21px; height: 21px; }
.dnr-info-item h4 { font-family: var(--font-sans); font-size: 14px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-faint); margin-bottom: 4px; }
.dnr-info-item p, .dnr-info-item a { font-size: 16px; font-weight: 600; color: var(--ink); }
.dnr-info-item .hours-row { display: flex; justify-content: space-between; font-weight: 500; font-size: 14.5px; color: var(--text-soft); max-width: 260px; }

.dnr-map {
  width: 100%;
  aspect-ratio: 16/11;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  filter: grayscale(0.15) contrast(1.02);
}
.dnr-map iframe { width: 100%; height: 100%; border: 0; }

.dnr-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.dnr-form-card h3 { font-size: 24px; margin-bottom: 8px; }
.dnr-form-card > p { color: var(--text-soft); margin-bottom: 26px; font-size: 14.5px; }

.dnr-field { margin-bottom: 18px; }
.dnr-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--ink);
}
.dnr-field input, .dnr-field textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--cream);
  transition: border-color .2s ease, background .2s ease;
}
.dnr-field input:focus, .dnr-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.dnr-field textarea { min-height: 120px; resize: vertical; }
.dnr-hp { position: absolute; left: -9999px; opacity: 0; }

.dnr-form-notice {
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}
.dnr-form-notice--success { background: #e4f3ea; color: #1c6b41; }
.dnr-form-notice--error { background: #fbe7e7; color: #9c2b2b; }

/* ---------- Footer ---------- */
.dnr-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 76px 0 30px;
}
.dnr-footer__top {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.dnr-footer__brand .dnr-logo__name { color: var(--white); font-size: 24px; }
.dnr-footer__brand p { margin-top: 16px; max-width: 300px; font-size: 14.5px; color: rgba(255,255,255,0.55); }
.dnr-footer h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.dnr-footer ul { display: flex; flex-direction: column; gap: 11px; }
.dnr-footer ul a, .dnr-footer ul span { font-size: 14.5px; color: rgba(255,255,255,0.68); }
.dnr-footer ul a:hover { color: var(--white); }
.dnr-footer__social {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 6px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 700;
}
.dnr-footer__social svg { width: 16px; height: 16px; }
.dnr-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.2,.6,.3,1), transform .7s cubic-bezier(.2,.6,.3,1);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .dnr-hero__grid { grid-template-columns: 1fr; }
  .dnr-hero__visual-frame { max-width: 380px; margin: 0 auto; }
  .dnr-grid { grid-template-columns: repeat(2, 1fr); }
  .dnr-bio { grid-template-columns: 1fr; }
  .dnr-bio__portrait-frame { position: static; max-width: 340px; margin: 0 auto 24px; }
  .dnr-bio__pillars { grid-template-columns: 1fr; }
  .dnr-contact-grid { grid-template-columns: 1fr; }
  .dnr-footer__top { grid-template-columns: 1fr 1fr; }
  .dnr-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .dnr-stats__item:nth-child(3) { border-left: none; }
}

@media (max-width: 1180px) {
  .dnr-nav, .dnr-header__phone { display: none; }
  .dnr-burger { display: flex; }
  .dnr-header__actions { gap: 10px; }
  .dnr-header__actions .dnr-btn { padding: 11px 18px; font-size: 13.5px; }
  .dnr-burger { width: 40px; height: 40px; }
}

@media (max-width: 860px) {
  .dnr-section { padding: 68px 0; }
  .dnr-cta { flex-direction: column; text-align: center; padding: 46px 30px; }
  .dnr-cta__actions { justify-content: center; }
}

@media (max-width: 600px) {
  .dnr-header__inner { padding-top: 14px; padding-bottom: 14px; gap: 12px; }
  .dnr-header.is-scrolled .dnr-header__inner { padding-top: 11px; padding-bottom: 11px; }
  .dnr-logo__name { font-size: 17px; }
  .dnr-logo__title { font-size: 9px; }
  .dnr-header__actions { gap: 8px; }
  .dnr-header__actions .dnr-btn { padding: 9px 14px; font-size: 12.5px; }
  .dnr-header__actions .dnr-btn svg { width: 14px; height: 14px; }
}

/* Na vrlo uskim ekranima uklanjamo tekst logotipa — ostaje samo CTA i meni,
   da header nikad ne lomi tekst u više redova. */
@media (max-width: 440px) {
  .dnr-logo { display: none; }
  .dnr-header__inner { padding-top: 16px; padding-bottom: 16px; }
  .dnr-header__actions { width: 100%; justify-content: space-between; }
}

@media (max-width: 620px) {
  .dnr-container { padding-left: 20px; padding-right: 20px; }
  .dnr-grid, .dnr-grid--3 { grid-template-columns: 1fr; }
  .dnr-hero { padding: 44px 0 60px; }
  .dnr-hero__meta { gap: 22px; }
  .dnr-hero__visual-frame { max-width: 300px; }
  .dnr-photo-frame::before { inset: 12px -10px -10px 12px; }
  .dnr-stats__grid { grid-template-columns: 1fr 1fr; }
  .dnr-service-full { padding: 26px 22px; border-radius: var(--radius-md); }
  .dnr-service-full__head { gap: 14px; margin-bottom: 16px; }
  .dnr-service-full__icon { width: 46px; height: 46px; }
  .dnr-service-full__icon svg { width: 21px; height: 21px; }
  .dnr-service-full h3 { font-size: 19px; }
  .dnr-footer__top { grid-template-columns: 1fr; }
  .dnr-form-card { padding: 26px; }
}

@media (max-height: 640px) {
  .dnr-mobile-nav__top { margin-bottom: 16px; }
  .dnr-mobile-nav a { font-size: 21px; padding: 7px 0; }
  .dnr-mobile-nav__footer { padding-top: 12px; }
  .dnr-mobile-nav__footer .dnr-btn { padding: 12px 20px; }
}
