/* ============================================================
   DESIGN SYSTEM - Krečenje Beograd
   ============================================================ */

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

/* ---- Tokens ---- */
:root {
  --c-bg:        #FAFAF8;
  --c-surface:   #F2F1EE;
  --c-border:    #E4E3DF;
  --c-muted:     #6B6866;
  --c-text:      #1E1C1A;
  --c-accent:    #B8965A;
  --c-accent-d:  #9A7B46;
  --c-accent-l:  #F5EDD9;
  --c-dark:      #2A2723;
  --c-white:     #FFFFFF;

  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body:    'Inter', system-ui, sans-serif;

  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  16px;
  --r-xl:  24px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.05);

  --trans: 0.25s ease;
  --trans-slow: 0.5s ease;

  --max-w: 1200px;
  --max-w-text: 680px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body.nav-open { overflow: hidden; position: fixed; width: 100%; }
body {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
p  { color: var(--c-muted); }

.display-italic { font-style: italic; color: var(--c-accent); }
.label {
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
}

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}
.section {
  padding-block: var(--sp-24);
}
.section--sm { padding-block: var(--sp-16); }
.section--dark {
  background: var(--c-text);
  color: var(--c-white);
}
.section--dark p { color: rgba(255,255,255,.65); }
.section--surface { background: var(--c-surface); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }

@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .container { padding-inline: var(--sp-4); }
  .section { padding-block: var(--sp-16); }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.875rem 2rem;
  border-radius: var(--r-sm);
  font-family: var(--f-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all var(--trans);
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-accent);
  color: var(--c-white);
}
.btn-primary:hover {
  background: var(--c-accent-d);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  border: 1px solid var(--c-text);
  color: var(--c-text);
}
.btn-outline:hover {
  background: var(--c-text);
  color: var(--c-white);
  transform: translateY(-1px);
}
.btn-outline--light {
  border: 1px solid rgba(255,255,255,.4);
  color: var(--c-white);
}
.btn-outline--light:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--c-white);
}
.btn-lg { padding: 1.1rem 2.5rem; font-size: 0.95rem; }

/* ---- Section header ---- */
.section-header {
  margin-bottom: var(--sp-12);
}
.section-header--center { text-align: center; }
.section-header .label { margin-bottom: var(--sp-3); display: block; }
.section-header p {
  max-width: 560px;
  margin-top: var(--sp-4);
}
.section-header--center p { margin-inline: auto; }

/* ---- Divider ---- */
.divider {
  width: 48px;
  height: 2px;
  background: var(--c-accent);
  margin-top: var(--sp-4);
}
.divider--center { margin-inline: auto; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--trans), box-shadow var(--trans);
  background: rgba(250,250,248,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--c-border);
}
.nav.scrolled {
  background: rgba(250,250,248,.98);
  box-shadow: 0 1px 0 var(--c-border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  padding-inline: var(--sp-6);
  max-width: var(--max-w);
  margin-inline: auto;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.nav__logo img {
  height: 80px;
  width: auto;
}
.nav__logo-text {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.1;
}
.nav__logo-text small {
  display: block;
  font-family: var(--f-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}
.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text);
  position: relative;
  transition: color var(--trans);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1px;
  background: var(--c-accent);
  transform: scaleX(0);
  transition: transform var(--trans);
}
.nav__link:hover::after,
.nav__link.active::after { transform: scaleX(1); }
.nav__link.active { color: var(--c-accent); }

.nav__cta { margin-left: var(--sp-4); }
.nav__mobile-cta { display: none; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--c-text);
  transition: all var(--trans);
}

/* Nav hero variant (transparent over hero) */
.nav--hero {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.nav--hero .nav__link { color: var(--c-white); }
.nav--hero .nav__link::after { background: var(--c-white); }
.nav--hero.scrolled {
  background: rgba(250,250,248,.98);
  box-shadow: 0 1px 0 var(--c-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav--hero.scrolled .nav__link { color: var(--c-text); }
.nav--hero.scrolled .nav__link::after { background: var(--c-accent); }
.nav--hero.scrolled .nav__link.active { color: var(--c-accent); }
.nav--hero .nav__logo-text { color: var(--c-white); }
.nav--hero.scrolled .nav__logo-text { color: var(--c-text); }
.nav--hero .nav__logo-text small { color: rgba(255,255,255,.6); }
.nav--hero.scrolled .nav__logo-text small { color: var(--c-muted); }

@media (max-width: 768px) {
  .nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(250,250,248,.98);
  }
  .nav--hero {
    background: rgba(0,0,0,.35);
  }
  .nav--hero.scrolled {
    background: rgba(250,250,248,.98);
  }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__inner { padding-inline: var(--sp-4); height: 72px; }
  .nav__logo img { height: 52px; }
  .nav__logo-text { font-size: 1rem; }
  .nav__logo-text small { display: none; }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--c-bg);
    padding: var(--sp-8) var(--sp-6);
    gap: var(--sp-8);
    align-items: center;
    justify-content: center;
    z-index: 99;
    overflow-y: auto;
  }
  .nav__links.open li { list-style: none; text-align: center; }
  .nav__links.open .nav__link {
    font-size: 1.75rem;
    font-family: var(--f-display);
    color: var(--c-text);
    display: block;
  }
  .nav__links.open .nav__link.active { color: var(--c-accent); }
  .nav__links.open .nav__mobile-cta { display: block; margin-top: var(--sp-4); }
  .nav--hero .nav__burger span { background: var(--c-white); }
  .nav--hero.scrolled .nav__burger span { background: var(--c-text); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--c-text);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/static/images/gallery/slika1.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); opacity: 0.3; }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20,20,18,.85) 0%,
    rgba(20,20,18,.5) 50%,
    rgba(20,20,18,.7) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: var(--sp-8) var(--sp-6);
  padding-top: 120px;
  padding-bottom: 7rem;
}
.hero__label {
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.hero__label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--c-accent);
  display: inline-block;
}
.hero__title {
  font-family: var(--f-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--c-white);
  line-height: 1.05;
  max-width: 780px;
  margin-bottom: var(--sp-6);
}
.hero__title em {
  font-style: italic;
  color: var(--c-accent);
}
.hero__subtitle {
  font-family: var(--f-body);
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: var(--sp-10);
}
.hero__actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-16);
}
.hero__stats {
  display: flex;
  gap: var(--sp-12);
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero__stat-number {
  font-family: var(--f-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--c-white);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,.55);
  margin-top: var(--sp-1);
  letter-spacing: 0.06em;
}
.hero__scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}
.hero__scroll svg { width: 20px; height: 20px; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@media (max-width: 600px) {
  .hero__stats { gap: var(--sp-6); flex-wrap: wrap; }
  .hero__stat-number { font-size: 1.75rem; }
  .hero__content { padding-inline: var(--sp-4); }
}

/* ============================================================
   WHY US
   ============================================================ */
.why-card {
  padding: var(--sp-8);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  background: var(--c-white);
  transition: all var(--trans);
}
.why-card:hover {
  border-color: var(--c-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.why-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--sp-6);
  color: var(--c-accent);
}
.why-card h4 {
  margin-bottom: var(--sp-2);
  font-size: 1.15rem;
}
.why-card p { font-size: 0.9rem; line-height: 1.6; }

/* ============================================================
   SERVICES
   ============================================================ */
.service-card {
  display: flex;
  flex-direction: column;
  padding: var(--sp-8);
  background: var(--c-surface);
  border-radius: var(--r-lg);
  border: 1px solid transparent;
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--c-accent);
  transition: height var(--trans-slow);
}
.service-card:hover::before { height: 100%; }
.service-card:hover {
  border-color: var(--c-border);
  background: var(--c-white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card__number {
  font-family: var(--f-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--c-border);
  line-height: 1;
  margin-bottom: var(--sp-4);
  transition: color var(--trans);
}
.service-card:hover .service-card__number { color: var(--c-accent); }
.service-card h4 {
  font-size: 1.2rem;
  margin-bottom: var(--sp-3);
}
.service-card p { font-size: 0.875rem; line-height: 1.65; flex: 1; }

/* ============================================================
   GALLERY PREVIEW
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: var(--sp-3);
}
.gallery-grid .item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,18,.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--trans);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-4);
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay span {
  color: var(--c-white);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-grid .item:first-child { grid-column: span 1; grid-row: span 1; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--c-border);
}
.stats-bar__item {
  padding: var(--sp-12) var(--sp-8);
  text-align: center;
  background: var(--c-bg);
}
.stats-bar__number {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--c-accent);
  line-height: 1;
  display: block;
}
.stats-bar__label {
  font-size: 0.8rem;
  color: var(--c-muted);
  letter-spacing: 0.06em;
  margin-top: var(--sp-2);
}
@media (max-width: 600px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.review-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  transition: all var(--trans);
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.review-stars {
  display: flex;
  gap: 3px;
  color: var(--c-accent);
  margin-bottom: var(--sp-4);
}
.review-stars svg { width: 18px; height: 18px; fill: currentColor; }
.review-card__text {
  font-size: 0.925rem;
  line-height: 1.75;
  color: var(--c-text);
  margin-bottom: var(--sp-6);
  font-style: italic;
}
.review-card__author {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--c-text);
}
.review-card__location {
  font-size: 0.8rem;
  color: var(--c-muted);
  margin-top: var(--sp-1);
}
.review-card__time {
  font-size: 0.75rem;
  color: var(--c-muted);
  margin-top: var(--sp-1);
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.75rem;
  color: var(--c-muted);
  margin-top: var(--sp-3);
}
.google-badge svg { width: 16px; height: 16px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  text-align: center;
  padding-block: var(--sp-24);
  background: var(--c-dark) !important;
}
.cta-section h2 { color: var(--c-white); margin-bottom: var(--sp-4); }
.cta-section p { margin-bottom: var(--sp-8); max-width: 480px; margin-inline: auto; margin-bottom: var(--sp-8); color: rgba(255,255,255,.65); }
.cta-section .btn-group { display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--c-surface);
  color: var(--c-muted);
  border-top: 1px solid var(--c-border);
  padding-top: var(--sp-16);
  padding-bottom: var(--sp-8);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid var(--c-border);
  margin-bottom: var(--sp-8);
}
.footer__brand p { font-size: 0.875rem; line-height: 1.75; margin-top: var(--sp-4); max-width: 300px; color: var(--c-muted); }
.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.footer__logo img { height: 72px; }
.footer__logo-text {
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: var(--c-text);
}
.footer h5 {
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: var(--sp-6);
}
.footer__links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__links a {
  font-size: 0.875rem;
  color: var(--c-muted);
  transition: color var(--trans);
}
.footer__links a:hover { color: var(--c-accent); }
.footer__contact { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__contact-item {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--c-muted);
}
.footer__contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--c-accent); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: var(--sp-4);
  color: var(--c-muted);
}
.footer__social {
  display: flex;
  gap: var(--sp-4);
}
.footer__social a {
  color: var(--c-muted);
  transition: color var(--trans);
}
.footer__social a:hover { color: var(--c-accent); }
.footer__social svg { width: 20px; height: 20px; }

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  padding-top: calc(72px + var(--sp-16));
  padding-bottom: var(--sp-16);
  background: var(--c-dark);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--c-accent);
  opacity: 0.06;
}
.about-hero p { color: rgba(255,255,255,.7); max-width: 560px; margin-top: var(--sp-4); }

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.about-split img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--r-xl);
}
@media (max-width: 768px) {
  .about-split { grid-template-columns: 1fr; }
  .about-split img { height: 300px; }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}
.value-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  padding: var(--sp-4);
}
.value-item__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-accent);
  flex-shrink: 0;
  margin-top: 8px;
}
.value-item h4 { font-size: 1rem; margin-bottom: var(--sp-1); }
.value-item p { font-size: 0.875rem; }

.partners-note {
  padding: var(--sp-8);
  background: var(--c-surface);
  border-radius: var(--r-lg);
}
.partners-note p { color: var(--c-text); font-size: 0.9rem; line-height: 1.7; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.page-hero {
  padding-top: calc(72px + var(--sp-12));
  padding-bottom: var(--sp-12);
  background: var(--c-dark);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: var(--c-accent);
  opacity: 0.07;
}
.page-hero .label { color: var(--c-accent); }
.page-hero p { color: rgba(255,255,255,.65); margin-top: var(--sp-3); }

.gallery-filters {
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: relative;
  margin-bottom: var(--sp-12);
  border-bottom: 1px solid var(--c-border);
}
.filter-indicator {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--c-accent);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
              width 0.35s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.filter-btn {
  padding: 0.75rem 2rem 0.9375rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: none;
  background: transparent;
  color: var(--c-muted);
  cursor: pointer;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.filter-btn.active {
  color: var(--c-accent);
}
.filter-btn:hover:not(.active) {
  color: var(--c-text);
}

.gallery-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
.gallery-full .gallery-item { aspect-ratio: 4/3; height: auto; }
@media (max-width: 768px) { .gallery-full { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-full { grid-template-columns: 1fr; } }

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-8);
}
.video-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: var(--c-text);
  transition: all var(--trans);
}
.video-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  cursor: pointer;
  overflow: hidden;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; opacity: 0.85; }
.video-card:hover .video-thumb img { transform: scale(1.04); }
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-play svg {
  width: 64px;
  height: 64px;
  color: var(--c-white);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.4));
  transition: transform var(--trans);
}
.video-thumb:hover .video-play svg { transform: scale(1.1); }
.video-card__info {
  padding: var(--sp-4) var(--sp-6);
}
.video-card__info h4 {
  font-size: 0.9rem;
  color: rgba(255,255,255,.85);
  font-family: var(--f-body);
  font-weight: 500;
}
@media (max-width: 768px) { .video-grid { grid-template-columns: 1fr; } }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,.95);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--r-sm);
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  background: rgba(255,255,255,.1);
  border: none;
  color: var(--c-white);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--trans);
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,.2); }
.lightbox__close { top: var(--sp-6); right: var(--sp-6); }
.lightbox__prev { left: var(--sp-6); top: 50%; transform: translateY(-50%); }
.lightbox__next { right: var(--sp-6); top: 50%; transform: translateY(-50%); }
.lightbox__close svg, .lightbox__prev svg, .lightbox__next svg { width: 20px; height: 20px; }

/* ============================================================
   TESTIMONIALS PAGE
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .reviews-grid { grid-template-columns: 1fr; } }

.rating-summary {
  text-align: center;
  padding: var(--sp-12);
  background: var(--c-surface);
  border-radius: var(--r-xl);
  margin-bottom: var(--sp-12);
}
.rating-summary__score {
  font-family: var(--f-display);
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--c-text);
}
.rating-summary__stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: var(--c-accent);
  margin: var(--sp-3) 0 var(--sp-2);
}
.rating-summary__stars svg { width: 24px; height: 24px; fill: currentColor; }
.rating-summary p { font-size: 0.875rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-12);
  align-items: start;
}
@media (max-width: 768px) { .contact-layout { grid-template-columns: 1fr; } }

.contact-info h3 { margin-bottom: var(--sp-6); }
.contact-detail {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--c-border);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail svg {
  width: 20px; height: 20px;
  color: var(--c-accent);
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-detail__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: var(--sp-1);
}
.contact-detail__value { font-size: 0.95rem; color: var(--c-text); }
.contact-detail__value a:hover { color: var(--c-accent); }

.map-wrapper {
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: var(--sp-6);
  height: 240px;
}
.map-wrapper iframe { width: 100%; height: 100%; border: none; }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: var(--sp-4); }
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text);
}
.form-input, .form-textarea {
  padding: 0.875rem 1rem;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  background: var(--c-white);
  color: var(--c-text);
  font-size: 0.95rem;
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(184,150,90,.12);
}
.form-input.error, .form-textarea.error { border-color: #D9534F; }
.form-textarea { resize: vertical; min-height: 140px; }
.form-error { font-size: 0.8rem; color: #D9534F; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
@media (max-width: 480px) { .form-grid { grid-template-columns: 1fr; } }

.alert {
  padding: var(--sp-4) var(--sp-6);
  border-radius: var(--r-md);
  font-size: 0.9rem;
}
.alert-success { background: #ECFDF5; color: #166534; border: 1px solid #BBF7D0; }
.alert-error   { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }

.privacy-note {
  font-size: 0.78rem;
  color: var(--c-muted);
  line-height: 1.6;
  margin-top: var(--sp-2);
}

/* ============================================================
   404 PAGE
   ============================================================ */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-8);
}
.page-404__number {
  font-family: var(--f-display);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 300;
  color: var(--c-border);
  line-height: 1;
}
.page-404 h2 { margin: var(--sp-4) 0 var(--sp-3); }
.page-404 p { margin-bottom: var(--sp-8); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-accent { color: var(--c-accent); }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); }
.mt-12 { margin-top: var(--sp-12); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-8 { margin-bottom: var(--sp-8); }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-4 { gap: var(--sp-4); }
.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;
}

/* ============================================================
   BLOG - LISTING
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}
.blog-grid--sm {
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-grid, .blog-grid--sm { grid-template-columns: 1fr; gap: var(--sp-6); }
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--trans);
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: transparent;
}
.blog-card__image-wrap {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.blog-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card__image-wrap img { transform: scale(1.04); }

.blog-card__body {
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--sp-3);
}
.blog-card__category {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--c-accent);
}
.blog-card__title {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
}
.blog-card__title--sm { font-size: 1.1rem; }
.blog-card__title a {
  color: var(--c-text);
  transition: color var(--trans);
}
.blog-card__title a:hover { color: var(--c-accent); }
.blog-card__excerpt {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--c-muted);
  flex: 1;
}
.blog-card__meta {
  font-size: 0.78rem;
  color: var(--c-muted);
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
}
.blog-card__read {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--c-accent);
  letter-spacing: 0.03em;
  transition: gap var(--trans);
  margin-top: var(--sp-2);
}
.blog-card__read:hover { color: var(--c-accent-d); }
.blog-empty {
  text-align: center;
  padding: var(--sp-16);
  color: var(--c-muted);
}
.blog-empty a { color: var(--c-accent); }

/* ============================================================
   BLOG - ARTICLE PAGE
   ============================================================ */
.article-breadcrumbs {
  background: var(--c-dark);
  padding: var(--sp-3) 0;
  margin-top: 90px;
}
@media (max-width: 768px) {
  .article-breadcrumbs { margin-top: 72px; }
}
.article-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,.5);
}
.article-breadcrumbs li { display: flex; align-items: center; gap: var(--sp-2); }
.article-breadcrumbs li + li::before {
  content: '/';
  color: rgba(255,255,255,.3);
}
.article-breadcrumbs a {
  color: rgba(255,255,255,.6);
  transition: color var(--trans);
}
.article-breadcrumbs a:hover { color: var(--c-accent); }
.article-breadcrumbs [aria-current="page"] { color: rgba(255,255,255,.4); }

.article-header {
  background: var(--c-dark);
  color: var(--c-white);
  padding: var(--sp-12) 0 var(--sp-16);
  position: relative;
  overflow: hidden;
}
.article-header::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: var(--c-accent);
  opacity: 0.05;
}
.article-header .label { color: var(--c-accent); margin-bottom: var(--sp-4); display: block; }
.article-header h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--c-white);
  max-width: 720px;
  margin-bottom: var(--sp-4);
}
.article-header__lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}
.article-meta {
  display: flex;
  gap: var(--sp-2);
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap;
}
.article-meta__sep { color: rgba(255,255,255,.25); }

.article-featured-image {
  background: var(--c-dark);
  padding-bottom: var(--sp-12);
}
.article-featured-image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--r-xl);
}

/* Article prose */
.article-body {
  max-width: var(--max-w-text);
  margin-inline: auto;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--c-text);
}
.article-body h2 {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--c-text);
  margin-top: var(--sp-12);
  margin-bottom: var(--sp-4);
  letter-spacing: -0.01em;
}
.article-body h3 {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--c-text);
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-3);
}
.article-body p {
  color: var(--c-text);
  margin-bottom: var(--sp-4);
}
.article-body ul, .article-body ol {
  padding-left: var(--sp-6);
  margin-bottom: var(--sp-4);
}
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li {
  margin-bottom: var(--sp-2);
  color: var(--c-text);
  line-height: 1.7;
}
.article-body strong { font-weight: 600; color: var(--c-text); }
.article-body em { font-style: italic; }
.article-body a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-body a:hover { color: var(--c-accent-d); }
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin-block: var(--sp-6);
  font-size: 0.9rem;
}
.article-body th {
  padding: var(--sp-3) var(--sp-4);
  background: var(--c-surface);
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--c-border);
}
.article-body td {
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1px solid var(--c-border);
  vertical-align: top;
}
@media (max-width: 600px) {
  .article-body table { display: block; overflow-x: auto; }
}
.article-body blockquote {
  border-left: 3px solid var(--c-accent);
  padding: var(--sp-4) var(--sp-6);
  margin-block: var(--sp-6);
  background: var(--c-accent-l);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-style: italic;
}
.article-body blockquote p { margin-bottom: 0; }

/* FAQ */
.article-faq {
  max-width: var(--max-w-text);
  margin-inline: auto;
  margin-top: var(--sp-16);
  padding-top: var(--sp-12);
  border-top: 1px solid var(--c-border);
}
.article-faq h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-bottom: var(--sp-8);
}
.faq-list { display: flex; flex-direction: column; gap: var(--sp-6); }
.faq-item {
  padding: var(--sp-6);
  background: var(--c-surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
}
.faq-question {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--c-text);
  margin-bottom: var(--sp-3);
}
.faq-answer {
  font-size: 0.925rem;
  line-height: 1.7;
  color: var(--c-muted);
  margin: 0;
}

/* Article CTA box */
.article-cta {
  max-width: var(--max-w-text);
  margin-inline: auto;
  margin-top: var(--sp-12);
}
.article-cta__inner {
  background: var(--c-dark);
  color: var(--c-white);
  padding: var(--sp-12) var(--sp-8);
  border-radius: var(--r-xl);
  text-align: center;
}
.article-cta__inner h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--c-white);
  margin-bottom: var(--sp-4);
}
.article-cta__inner p {
  color: rgba(255,255,255,.65);
  margin-bottom: var(--sp-6);
  max-width: 440px;
  margin-inline: auto;
}

/* Related articles */
.article-related {
  max-width: 100%;
  margin-top: var(--sp-16);
  padding-top: var(--sp-12);
  border-top: 1px solid var(--c-border);
}
.article-related h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-bottom: var(--sp-8);
}
