/* Sanacije kupatila — Majstor Zoki */
:root {
  --ink: #0e1714;
  --ink-soft: #24332c;
  --fog: #e8eee9;
  --paper: #f4f7f5;
  --white: #ffffff;
  --teal: #0f6b5c;
  --teal-deep: #0a4a40;
  --copper: #c45c26;
  --copper-hot: #a84818;
  --line: rgba(14, 23, 20, 0.12);
  --muted: #5a6b63;
  --ok: #1f7a4c;
  --sticky-h: 118px;
  --max: 1120px;
  --radius: 14px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --display: "Arial Narrow", "Segoe UI", system-ui, sans-serif;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-bottom: calc(var(--sticky-h) + 24px);
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  padding-bottom: calc(var(--sticky-h) + 28px);
  overflow-x: clip;
}

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

a {
  color: var(--teal-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--copper);
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 10000;
}

.skip:focus {
  left: 0.5rem;
  top: 0.5rem;
}

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

/* Top bar */
.topbar {
  background: var(--ink);
  color: #d7e0db;
  font-size: 0.86rem;
  padding: 0.45rem 0;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.topbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.topbar span {
  opacity: 0.85;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 247, 245, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--teal), var(--teal-deep));
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.brand-text strong {
  display: block;
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 0.35rem 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 650;
  font-size: 0.92rem;
}

.nav a:hover,
.nav a[aria-current="page"],
.nav-drop-btn[aria-current="page"] {
  color: var(--teal);
}

/* Mega menu — 8 usluga */
.nav-drop {
  position: relative;
}

.nav-drop-btn {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-weight: 650;
  font-size: 0.92rem;
  color: var(--ink-soft);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-drop-btn::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.15s;
}

.nav-drop.is-open .nav-drop-btn::after {
  transform: rotate(-135deg) translateY(2px);
}

.nav-mega {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 0.55rem);
  width: min(920px, calc(100vw - 2rem));
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(14, 23, 20, 0.14);
  padding: 1.1rem;
  z-index: 50;
}

.nav-drop.is-open .nav-mega,
.nav-drop:focus-within .nav-mega {
  display: block;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem 1rem;
}

.mega-col strong {
  display: block;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  line-height: 1.15;
}

.mega-col strong a {
  color: var(--ink);
  text-decoration: none;
}

.mega-col strong a:hover,
.mega-col strong a[aria-current="page"] {
  color: var(--teal);
}

.mega-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-col li + li {
  margin-top: 0.2rem;
}

.mega-col li a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
}

.mega-col li a:hover {
  color: var(--copper);
}

.subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.subnav a {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink-soft);
}

.subnav a:hover {
  border-color: var(--teal);
  color: var(--teal-deep);
}

.cards-4 {
  grid-template-columns: repeat(4, 1fr);
}

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

@media (max-width: 900px) {
  .mega-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cards-4 {
    grid-template-columns: 1fr;
  }

  .cards-2 {
    grid-template-columns: 1fr;
  }

  .nav-drop {
    width: 100%;
  }

  .nav-mega {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    padding: 0.5rem 0 0 0.5rem;
    display: none;
  }

  .nav-drop.is-open .nav-mega {
    display: block;
  }

  .nav-drop:focus-within .nav-mega {
    display: none;
  }

  .nav-drop.is-open:focus-within .nav-mega {
    display: block;
  }
}

@media (max-width: 520px) {
  .mega-grid {
    grid-template-columns: 1fr;
  }
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: var(--copper);
  color: #fff !important;
  font-weight: 800;
  text-decoration: none !important;
}

.nav-cta:hover {
  background: var(--copper-hot);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 10px;
  padding: 0.45rem 0.7rem;
  font-weight: 700;
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  color: #f3f7f5;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(196, 92, 38, 0.35), transparent 55%),
    radial-gradient(900px 420px at 10% 20%, rgba(15, 107, 92, 0.55), transparent 50%),
    linear-gradient(160deg, #071510 0%, #12352d 48%, #1a2a24 100%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -18deg,
      transparent 0 14px,
      rgba(255, 255, 255, 0.015) 14px 15px
    );
  pointer-events: none;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: end;
  padding: 3.2rem 0 3.6rem;
  min-height: min(78vh, 720px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b7d4cc;
  margin: 0 0 0.85rem;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 4px rgba(196, 92, 38, 0.25);
}

.hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  max-width: 11ch;
}

body.is-home .hero h1 {
  font-size: clamp(1.65rem, 3.8vw, 2.85rem);
  line-height: 1.08;
  max-width: 28ch;
  text-transform: none;
  letter-spacing: 0.01em;
}

body.is-home .hero-lead {
  max-width: 42ch;
}

.hero-lead {
  margin: 0 0 1.4rem;
  max-width: 38ch;
  color: #c9d8d2;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.7rem 1.15rem;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none !important;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.98rem;
}

.btn-primary {
  background: var(--copper);
  color: #fff !important;
}

.btn-primary:hover {
  background: var(--copper-hot);
  color: #fff !important;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff !important;
}

.btn-dark {
  background: var(--ink);
  color: #fff !important;
}

.btn-dark:hover {
  background: #1a2923;
  color: #fff !important;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.84rem;
  font-weight: 650;
  color: #e4eeea;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 1.25rem;
  backdrop-filter: blur(8px);
}

.hero-panel h2 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.55rem;
  margin: 0 0 0.75rem;
  line-height: 1.05;
}

.hero-panel ol {
  margin: 0;
  padding-left: 1.1rem;
  color: #d5e2dd;
}

.hero-panel li + li {
  margin-top: 0.45rem;
}

.phone-xl {
  display: block;
  margin-top: 1rem;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #fff;
  text-decoration: none;
}

.phone-xl:hover {
  color: #ffd2b8;
}

/* Sections */
section {
  padding: 3.2rem 0;
}

.section-head {
  max-width: 42rem;
  margin-bottom: 1.6rem;
}

.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1;
  margin: 0 0 0.6rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.band-dark {
  background: var(--ink);
  color: #e7efeb;
}

.band-dark .section-head p,
.band-dark p {
  color: #a9bbb3;
}

.band-dark h2,
.band-dark h3 {
  color: #fff;
}

.band-teal {
  background: linear-gradient(180deg, #0f6b5c, #0a4a40);
  color: #eef7f4;
}

.band-teal .section-head p {
  color: #c5ddd6;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.15rem 1.3rem;
}

.band-dark .card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  color: #e7efeb;
}

.card h3 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.35rem;
  margin: 0 0 0.45rem;
  line-height: 1.05;
}

.card p {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.band-dark .card p {
  color: #aebfb7;
}

.card a.more {
  font-weight: 800;
  text-decoration: none;
  color: var(--copper);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.media-block {
  border-radius: 18px;
  min-height: 280px;
  background:
    linear-gradient(160deg, rgba(14, 23, 20, 0.35), rgba(14, 23, 20, 0.7)),
    radial-gradient(circle at 30% 20%, rgba(196, 92, 38, 0.35), transparent 45%),
    linear-gradient(145deg, #1b3d35, #0e1714);
  color: #fff;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.media-block strong {
  font-family: var(--display);
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1;
}

.media-block span {
  opacity: 0.85;
  margin-top: 0.35rem;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checklist li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.7rem;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 3px;
  background: var(--teal);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.price-table th,
.price-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.price-table th {
  background: var(--ink);
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.6rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 750;
}

.faq p {
  margin: 0.6rem 0 0.2rem;
  color: var(--muted);
}

.muni-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}

.muni-grid a {
  display: block;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  color: var(--ink);
  font-weight: 750;
}

.muni-grid a:hover {
  border-color: var(--teal);
  color: var(--teal-deep);
}

.cta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.3rem;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
}

.cta-strip strong {
  font-family: var(--display);
  font-size: 1.7rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: block;
  line-height: 1;
}

.page-hero {
  padding: 2.4rem 0 1.2rem;
}

.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 0.98;
  margin: 0 0 0.7rem;
  max-width: 16ch;
}

.page-hero p {
  margin: 0;
  max-width: 46ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.prose {
  max-width: 68ch;
}

.prose h2 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.7rem;
  margin: 1.8rem 0 0.6rem;
  line-height: 1.05;
}

.prose p {
  color: var(--ink-soft);
}

.breadcrumbs {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

.footer {
  background: #0a100e;
  color: #b7c5bf;
  padding: 2.4rem 0 2rem;
  margin-top: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.4rem;
}

.footer h3 {
  color: #fff;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 0.7rem;
  font-size: 1.2rem;
}

.footer a {
  color: #d7e4de;
  text-decoration: none;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer li + li {
  margin-top: 0.35rem;
}

.footer-note {
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Sticky contact */
.sticky-contact {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 9990;
  width: min(440px, calc(100% - 12px));
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 7px 7px calc(7px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 107, 92, 0.28);
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -10px 30px rgba(14, 23, 20, 0.18);
}

.sticky-contact .call,
.sticky-contact .quote {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  font-weight: 900;
  text-decoration: none !important;
  font-size: 0.98rem;
}

.sticky-contact .quote {
  color: var(--teal-deep);
  background: #e7f4f0;
  border: 1px solid #9cc8bd;
}

.sticky-contact .call {
  min-height: 52px;
  color: #fff !important;
  background: linear-gradient(180deg, #d06a2e, #c45c26);
  border: 1px solid #9a4318;
  font-size: 1.02rem;
}

.sticky-contact .call:hover {
  background: var(--copper-hot);
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 0.8rem 1rem 1rem;
    flex-direction: column;
    align-items: stretch;
  }

  .nav.is-open {
    display: flex;
  }

  .site-header {
    position: relative;
  }

  .nav-row {
    position: relative;
  }
}

@media (max-width: 640px) {
  .sticky-contact {
    width: calc(100% - 10px);
  }

  .hero-grid {
    min-height: auto;
    padding: 2.2rem 0 2.4rem;
  }

  .hero h1 {
    max-width: none;
  }
}

/* Photo gallery — naši radovi */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}

.photo-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--fog);
}

.photo-grid figcaption {
  padding: 0.65rem 0.75rem 0.75rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.35;
}

.photo-grid figcaption strong {
  display: block;
  color: var(--ink);
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.gallery-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gallery-preview img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  background: var(--fog);
}

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

.video-wrap {
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--line);
}

.video-wrap video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: #111;
}

.video-teaser {
  display: block;
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
}

.video-teaser picture,
.video-teaser img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-teaser-play {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.video-teaser-label {
  display: block;
  padding: 0.85rem 1rem;
  background: var(--white);
  font-weight: 700;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* Nav submenus */
.nav-sub { list-style: none; margin: 0; padding: 0.35rem 0; min-width: 220px; }
.nav-sub li + li { margin-top: 0.15rem; }
.nav-sub a { font-size: 0.88rem; font-weight: 600; color: var(--ink-soft); text-decoration: none; display: block; padding: 0.35rem 0.5rem; border-radius: 8px; }
.nav-sub a:hover { background: var(--fog); color: var(--teal-deep); }

/* CTA block */
.cta-block { background: linear-gradient(135deg, var(--teal-deep), var(--teal)); color: #eef5f2; padding: 2.2rem 0; margin-top: 1rem; }
.cta-block h2 { margin: 0 0 0.5rem; font-family: var(--display); text-transform: uppercase; letter-spacing: 0.04em; }
.cta-block p { margin: 0 0 1rem; max-width: 52ch; }
.cta-block .btn-ghost { border-color: rgba(255,255,255,0.45); color: #fff; }

/* Gallery filters */
.gallery-filters,
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1rem; }
.gallery-filters button,
.filter-btn { border: 1px solid var(--line); background: var(--white); border-radius: 999px; padding: 0.4rem 0.85rem; font: inherit; font-weight: 700; font-size: 0.84rem; cursor: pointer; max-width: 100%; }
.gallery-filters button.is-active,
.gallery-filters button:hover,
.filter-btn.is-active,
.filter-btn:hover { border-color: var(--teal); color: var(--teal-deep); }
.gallery-filters button:focus-visible,
.filter-btn:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }

.photo-grid a { display: block; border-radius: 10px; overflow: hidden; }
.photo-grid figure[hidden] { display: none; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(7, 12, 10, 0.92); z-index: 1000; display: grid; place-items: center; padding: 1rem; }
.lightbox[hidden] { display: none !important; }
.lightbox-inner { position: relative; max-width: min(960px, 100%); width: 100%; }
.lightbox img { width: 100%; max-height: 78vh; object-fit: contain; margin: 0 auto; background: #111; border-radius: 10px; }
.lightbox figcaption { color: #dce7e1; text-align: center; margin-top: 0.6rem; font-size: 0.92rem; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; border: 0; background: rgba(255,255,255,0.12); color: #fff;
  width: 44px; height: 44px; border-radius: 999px; font-size: 1.6rem; cursor: pointer;
}
.lightbox-close { top: -0.2rem; right: -0.2rem; }
.lightbox-prev { left: -3rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: -3rem; top: 50%; transform: translateY(-50%); }
.lightbox-close:focus-visible, .lightbox-prev:focus-visible, .lightbox-next:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
body.lightbox-open { overflow: hidden; }

.steps { padding-left: 1.2rem; }
.steps li { margin-bottom: 0.45rem; }
.footer-hours { font-size: 0.88rem; opacity: 0.9; margin-top: 0.5rem; }

@media (max-width: 720px) {
  .lightbox-prev { left: 0.2rem; }
  .lightbox-next { right: 0.2rem; }
}
