/* =====================================
   SPTUR Biljana — Novi Sajt
   ===================================== */

:root {
  --primary:       #76000e;
  --primary-dark:  #540009;
  --dark:          #111111;
  --text:          #1c1c1c;
  --text-muted:    #6b6b6b;
  --cream:         #F4EFE6;
  --cream-light:   #FAF7F3;
  --white:         #ffffff;
  --border:        #E0D8CE;
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
}

/* ——— RESET ——— */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

/* ——— UTILITY ——— */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--primary);
  flex-shrink: 0;
}

.section-tag--light { color: rgba(255,255,255,0.7); }
.section-tag--light::before { background: rgba(255,255,255,0.5); }

.section-header {
  max-width: 540px;
  margin-bottom: 56px;
}

.section-header h2 { margin-bottom: 14px; }

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ——— TYPOGRAPHY ——— */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem);   font-weight: 500; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 500; }

.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.body-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

/* ——— BUTTONS ——— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease),
              border-color 0.25s var(--ease),
              color 0.25s var(--ease),
              transform 0.2s var(--ease);
}

.btn:hover { transform: translateY(-1px); }

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

.btn-light {
  background: var(--white);
  color: var(--text);
  border-color: var(--white);
}
.btn-light:hover { background: var(--cream); border-color: var(--cream); }

.btn-ghost-light {
  background: transparent;
  color: rgba(255,255,255,0.82);
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost-light:hover { border-color: rgba(255,255,255,0.8); color: var(--white); }

/* ——— HEADER ——— */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 28px;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

#header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}

.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.3s;
}

.logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s;
}

#header.scrolled .logo-main { color: var(--text); }
#header.scrolled .logo-sub  { color: var(--text-muted); }

/* Nav */
.nav ul {
  display: flex;
  list-style: none;
  gap: 38px;
  align-items: center;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.8);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.25s;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 1px;
  width: 0;
  background: var(--primary);
  transition: width 0.3s var(--ease);
}

.nav-link:hover,
.nav-link.active { color: var(--white); }

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

#header.scrolled .nav-link         { color: var(--text-muted); }
#header.scrolled .nav-link:hover,
#header.scrolled .nav-link.active  { color: var(--text); }

.nav-link--cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 2px;
  letter-spacing: 0.08em;
}
.nav-link--cta::after { display: none; }
.nav-link--cta:hover { background: var(--primary-dark); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s;
  border-radius: 1px;
}

#header.scrolled .nav-toggle span { background: var(--text); }

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ——— HERO ——— */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url('images/hero/1png.png');
  background-size: cover;
  background-position: center bottom;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.72) 0%,
    rgba(5,0,0,0.60) 50%,
    rgba(0,0,0,0.68) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  text-align: center;
  padding: 0;
}

.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 8vw, 6rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.03;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.88);
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: color 0.25s;
  animation: heroScrollBounce 2.2s ease-in-out infinite;
}

.hero-scroll:hover { color: var(--white); }

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

/* Reveal animation on load */
.reveal-hero {
  opacity: 0;
  transform: translateY(24px);
  animation: heroReveal 1s var(--ease) 0.3s forwards;
}

@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ——— ABOUT ——— */
.about {
  padding: 120px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 3px;
}

.about-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 120px;
  height: 120px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--white);
  text-align: center;
  box-shadow: 0 8px 24px rgba(118,0,14,0.35);
}

.about-badge i {
  font-size: 1.2rem;
  opacity: 0.8;
}

.about-badge span {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
  opacity: 0.85;
}

.about-text h2 {
  margin-bottom: 22px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.feature-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
}

.feature-body h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}

.feature-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ——— MATERIALS ——— */
.materials {
  padding: 120px 0;
  background: var(--cream);
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.material-card {
  background: var(--white);
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.material-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.09);
}

.material-card--featured {
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
}

.material-img {
  height: 230px;
  overflow: hidden;
}

.material-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.material-card:hover .material-img img {
  transform: scale(1.05);
}

.material-body {
  padding: 26px 28px;
  position: relative;
}

.badge-featured {
  position: absolute;
  top: -14px;
  left: 28px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
}

.material-body h3 {
  font-size: 1.55rem;
  margin-bottom: 8px;
  margin-top: 4px;
}

.material-body p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Special banner */
.special-banner {
  background: var(--dark);
  border-radius: 3px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.special-banner-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}

.special-banner-text { flex: 1; }

.special-banner-text h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 4px;
}

.special-banner-text p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
}

.special-banner .btn-primary { margin-left: auto; white-space: nowrap; }

/* ——— PRODUCTS / GALLERY ——— */
.products {
  padding: 120px 0;
  background: var(--white);
}

/* Filter bar */
.filter-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.22s var(--ease);
}

.filter-btn:hover {
  border-color: var(--text);
  color: var(--text);
}

.filter-btn.active {
  background: var(--text);
  border-color: var(--text);
  color: var(--white);
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 0.3s var(--ease);
}

.gallery-item.hidden {
  display: none;
}

.gallery-inner {
  position: relative;
  padding-bottom: 115%;
}

.gallery-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.gallery-item:hover .gallery-inner img {
  transform: scale(1.07);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.15) 60%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 16px;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}

.gallery-expand {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.92);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-top: -4px;
}

.gallery-expand:hover {
  background: var(--primary);
  color: var(--white);
}

/* ——— PROCESS CALLOUT ——— */
.process-callout {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}

.process-callout-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.process-callout-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-callout-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.55) 55%,
    rgba(0,0,0,0.25) 100%
  );
}

.process-callout .container { position: relative; z-index: 1; }

.process-callout-content {
  max-width: 520px;
}

.process-callout-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.process-callout-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 36px;
}

/* ——— CONTACT ——— */
.contact {
  padding: 120px 0;
  background: var(--cream-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-text h2 { margin-bottom: 14px; }

.contact-text .lead {
  margin-bottom: 40px;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.contact-list li:first-child { border-top: 1px solid var(--border); }

.contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.85rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.contact-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.contact-value {
  display: block;
  font-size: 0.96rem;
  color: var(--text);
  line-height: 1.5;
}

.contact-link { color: var(--primary); transition: opacity 0.2s; }
.contact-link:hover { opacity: 0.7; }

.contact-legal {
  display: flex;
  gap: 32px;
  padding: 18px 22px;
  background: var(--cream);
  border-radius: 3px;
  border: 1px solid var(--border);
}

.contact-legal > div { display: flex; flex-direction: column; gap: 3px; }

.legal-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.legal-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.contact-img-wrap {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}

.contact-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.contact-quote {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  padding: 48px 32px 28px;
}

.contact-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  line-height: 1.45;
}

/* ——— FOOTER ——— */
.footer {
  background: var(--dark);
  padding: 52px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.footer-logo-main {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.footer-logo-sub {
  display: block;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
}

.footer-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--white); }

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
  width: 100%;
  text-align: center;
}

/* ——— LIGHTBOX ——— */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.open { display: flex; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6,4,4,0.93);
  cursor: pointer;
}

.lightbox-img-wrap {
  position: relative;
  z-index: 1;
  max-width: min(88vw, 900px);
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.lightbox-btn {
  position: absolute;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-btn:hover { background: rgba(255,255,255,0.22); }

.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
}

/* ——— SCROLL REVEAL ——— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ——— RESPONSIVE ——— */
@media (max-width: 1024px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-visual { order: -1; }
  .about-img-wrap img { height: 380px; }
  .about-badge { right: -16px; bottom: -16px; }

  .materials-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); }

  .contact-img-wrap img { height: 320px; }
}

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

  .nav {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    padding: 20px 28px 32px;
    border-top: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
    z-index: 199;
  }

  .nav.open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .nav ul {
    flex-direction: column;
    gap: 0;
  }

  .nav-link {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    color: var(--text) !important;
    border-bottom: 1px solid var(--border);
  }

  .nav-link--cta {
    margin-top: 12px;
    display: inline-flex;
    padding: 10px 22px !important;
    border-radius: 2px;
  }

  /* Sections */
  .about,
  .materials,
  .products,
  .contact { padding: 80px 0; }

  .hero-actions { flex-direction: column; gap: 10px; justify-content: center; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .special-banner {
    flex-direction: column;
    text-align: center;
  }

  .special-banner .btn-primary { margin: 0 auto; }

  .process-callout { padding: 80px 0; }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }

  .contact-legal { flex-direction: column; gap: 14px; }

  .footer-nav { gap: 18px; }
}
