/* ============================================================
   Restoran Aleksića Tvrđava — glavni stylesheet
   Design: dark elegant, gold accents, mobile-first
   ============================================================ */

/* --- Reset & base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #c9a84c;
  --gold-light: #e8c97a;
  --dark:       #0e0e0e;
  --dark-2:     #1a1a1a;
  --dark-3:     #252525;
  --text:       #e2e2e2;
  --text-muted: #999;
  --white:      #ffffff;
  --bordo:      #6b1a1a;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --nav-h: 70px;
  --max-w: 1100px;
  --gap:   clamp(1.5rem, 4vw, 3rem);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(var(--max-w), 100% - 2rem);
  margin-inline: auto;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

.section-label {
  display: block;
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 55ch;
}

.divider {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 1.2rem 0 2rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 2rem;
  border-radius: 2px;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all .25s ease;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--dark); }

/* ============================================================
   NAVIGACIJA
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background .3s ease, box-shadow .3s ease;
}

.nav.scrolled {
  background: rgba(10,10,10,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__logo span {
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 400;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding-bottom: 2px;
  transition: color .2s;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width .25s ease;
}

.nav__links a:hover,
.nav__links a.active { color: var(--gold); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

.nav__phone {
  font-size: .82rem;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: .4rem 1rem;
  border-radius: 2px;
  transition: all .2s;
  white-space: nowrap;
}
.nav__phone:hover { background: var(--gold); color: var(--dark); }

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all .3s ease;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 768px) {
  .nav__burger { display: flex; }

  .nav__links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(10,10,10,.99);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 1rem 0 2rem;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform .35s ease, opacity .35s ease;
    pointer-events: none;
  }

  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav__links a {
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 1rem;
  }
  .nav__links a::after { display: none; }

  .nav__phone { display: none; }
}

/* ============================================================
   HERO (Početna)
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero.jpg') center/cover no-repeat;
  filter: brightness(.35);
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero__bg.loaded { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.1) 0%, rgba(0,0,0,.5) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}

.hero__eyebrow {
  font-size: .75rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.hero__title {
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-family: var(--font-serif);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: .5rem;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-family: var(--font-serif);
  font-style: italic;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: var(--text-muted);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: bounce 2.5s infinite;
}

.hero__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   SEKCIJE — zajednički stil
   ============================================================ */
section { padding: clamp(4rem, 8vw, 7rem) 0; }

.section-center { text-align: center; }
.section-center .divider { margin-inline: auto; }
.section-center .section-subtitle { margin-inline: auto; }

/* ============================================================
   SALE (Grid na početnoj)
   ============================================================ */
.rooms {
  background: var(--dark-2);
}

.rooms__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3px;
  margin-top: 3rem;
}

.room-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5/2;
  cursor: pointer;
}

.room-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  filter: brightness(.6);
}

.room-card:hover img { transform: scale(1.06); filter: brightness(.4); }

.room-card__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 100%);
  transition: padding .3s ease;
}

.room-card__name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: .2rem;
}

.room-card__cap {
  font-size: .8rem;
  color: var(--gold);
  letter-spacing: .08em;
}

.room-card__desc {
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: .5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, opacity .4s ease;
  opacity: 0;
}

.room-card:hover .room-card__desc { max-height: 80px; opacity: 1; }

/* ============================================================
   ABOUT STRIP (kratki deo na početnoj)
   ============================================================ */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.about-strip__img {
  position: relative;
  min-height: 400px;
}

.about-strip__img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-strip__text {
  background: var(--dark-3);
  padding: clamp(2.5rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-strip__text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

@media (max-width: 700px) {
  .about-strip { grid-template-columns: 1fr; }
  .about-strip__img { min-height: 280px; position: relative; }
}

/* ============================================================
   FEATURES (ikone / highlight-ovi)
   ============================================================ */
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 4px;
  transition: border-color .3s, transform .3s;
}

.feature:hover { border-color: var(--gold); transform: translateY(-4px); }

.feature__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.feature__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: .5rem;
}

.feature p { font-size: .9rem; color: var(--text-muted); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--bordo);
  background-image: linear-gradient(135deg, #4a1010 0%, var(--bordo) 50%, #4a1010 100%);
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) 1rem;
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: .8rem;
}

.cta-banner p {
  color: rgba(255,255,255,.8);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.cta-banner .phone-big {
  display: inline-block;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-family: var(--font-serif);
  color: var(--gold-light);
  letter-spacing: .03em;
  margin-bottom: 1.5rem;
}

/* ============================================================
   O NAMA PAGE
   ============================================================ */
.page-hero {
  height: 40svh;
  min-height: 280px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.3);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 2rem 1rem 3rem;
}

.page-hero__content h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
.page-hero__breadcrumb {
  font-size: .8rem;
  color: var(--gold);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}

/* Galerija */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: .8rem;
  margin-top: 3rem;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery__item:hover img { transform: scale(1.08); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid rgba(255,255,255,.1);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color .2s;
}
.lightbox__close:hover { color: var(--white); }

/* ============================================================
   GALERIJA — filter tabs & masonry
   ============================================================ */
.filter-tabs {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.filter-tab {
  padding: .6rem 1.4rem;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  background: none;
  transition: all .25s ease;
}
.filter-tab:hover { color: var(--text); border-color: rgba(255,255,255,.35); }
.filter-tab.active { color: var(--dark); background: var(--gold); border-color: var(--gold); }

.masonry {
  columns: 3 240px;
  column-gap: 1rem;
  margin-top: 3rem;
}
@media (max-width: 700px) { .masonry { columns: 2 150px; } }

.masonry .gallery__item {
  aspect-ratio: auto;
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 3px;
}
.masonry .gallery__item img { height: auto; object-fit: initial; }

.masonry .gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 40%);
  opacity: 0;
  transition: opacity .35s ease;
}
.masonry .gallery__item:hover::after { opacity: 1; }

.masonry .gallery__item .g-caption {
  position: absolute;
  left: .9rem; bottom: .8rem;
  z-index: 1;
  font-size: .78rem;
  letter-spacing: .06em;
  color: var(--text);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s ease, transform .35s ease;
}
.masonry .gallery__item:hover .g-caption { opacity: 1; transform: translateY(0); }

/* Food strip (meni / početna) */
.food-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin: 3rem 0;
}
.food-strip__item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
  border: 1px solid rgba(255,255,255,.08);
}
.food-strip__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.food-strip__item:hover img { transform: scale(1.08); }
.food-strip__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.15) 45%, transparent 70%);
}
.food-strip__item span {
  position: absolute;
  left: 1.1rem; bottom: .9rem;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  letter-spacing: .02em;
  color: var(--white);
}

/* ============================================================
   MENI PAGE
   ============================================================ */
.menu-tabs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-bottom: 0;
}

.menu-tab {
  padding: .7rem 1.4rem;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  transition: color .2s, border-color .2s;
}

.menu-tab:hover { color: var(--text); }
.menu-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-category {
  margin-bottom: 3rem;
}

.menu-subheader {
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 1.3rem 0 .3rem;
  padding-top: .9rem;
  border-top: 1px dashed rgba(255,255,255,.09);
}
.menu-subheader:first-child { border-top: none; padding-top: 0; margin-top: 0; }

.menu-photo-banner {
  position: relative;
  height: 260px;
  border-radius: 4px;
  overflow: hidden;
  margin: 3.5rem 0 2.5rem;
}
.menu-photo-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.55);
}
.menu-photo-banner span {
  position: absolute;
  left: 1.8rem; bottom: 1.3rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--white);
}

.menu-category__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(201,168,76,.2);
}

.menu-items { display: flex; flex-direction: column; gap: .3rem; }

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: .8rem 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.menu-item:last-child { border-bottom: none; }

.menu-item__name {
  font-size: .98rem;
  color: var(--text);
  flex: 1;
}

.menu-item__desc {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: .15rem;
}

.menu-item__price {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================================
   VINSKA KARTA
   ============================================================ */
.wine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem 4rem;
  margin-top: 2rem;
}

.wine-category__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(201,168,76,.2);
  display: flex;
  align-items: center;
  gap: .6rem;
}

.wine-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
}

.wine-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.wine-item__info { flex: 1; }
.wine-item__name { font-size: .95rem; color: var(--text); }
.wine-item__origin { font-size: .78rem; color: var(--text-muted); }
.wine-item__price { color: var(--gold); font-family: var(--font-serif); white-space: nowrap; }

/* ============================================================
   KONTAKT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 720px) {
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

.contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-detail__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: .1rem;
  color: var(--gold);
}

.contact-detail__label {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .2rem;
}

.contact-detail__value { color: var(--text); font-size: .98rem; }
.contact-detail__value a:hover { color: var(--gold); }

.contact-detail__value .big-phone {
  font-size: 1.4rem;
  font-family: var(--font-serif);
  color: var(--white);
  display: block;
  margin-bottom: .25rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,.1);
  padding: .5rem 1rem;
  border-radius: 2px;
  transition: all .2s;
}
.social-links a:hover { color: var(--gold); border-color: var(--gold); }

/* Kontakt forma */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: .4rem; }

.form-group label {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--text);
  padding: .85rem 1rem;
  font-size: .95rem;
  font-family: var(--font-sans);
  border-radius: 2px;
  transition: border-color .2s;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea { min-height: 130px; }

.form-status {
  padding: .9rem;
  border-radius: 2px;
  font-size: .9rem;
  display: none;
}

.form-status.success { background: rgba(50,180,80,.15); border: 1px solid rgba(50,180,80,.3); color: #7dda8e; display: block; }
.form-status.error   { background: rgba(220,60,60,.15);  border: 1px solid rgba(220,60,60,.3);  color: #f08080; display: block; }

/* Mapa */
.map-wrapper {
  margin-top: 4rem;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
}

.map-wrapper iframe {
  width: 100%;
  height: 350px;
  display: block;
  filter: grayscale(1) invert(1) brightness(.8) contrast(.9);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 3rem 0 1.5rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 700px) {
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}

.footer__brand p {
  font-size: .9rem;
  color: var(--text-muted);
  margin-top: .8rem;
  max-width: 32ch;
  line-height: 1.6;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
}

.footer__logo small {
  display: block;
  font-size: .6rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 400;
}

.footer h4 {
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer ul li { margin-bottom: .5rem; }
.footer ul a { color: var(--text-muted); font-size: .9rem; transition: color .2s; }
.footer ul a:hover { color: var(--gold); }

.footer__address {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer__address a { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .78rem;
  color: var(--text-muted);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }

.text-gold { color: var(--gold); }

/* Fade-in animacija */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
