/* ─────────────────────────────────────────────
   Autofolije WRAPP — themable styles (dark + light)
   ───────────────────────────────────────────── */

:root,
[data-theme="dark"] {
  --bg: #070708;
  --bg-soft: #0d0e10;
  --surface: #16181c;
  --surface-2: #1f2228;
  --surface-3: rgba(255, 255, 255, 0.03);
  --surface-hover: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);
  --fg: #ffffff;
  --muted: rgba(255, 255, 255, 0.7);
  --muted-2: rgba(255, 255, 255, 0.5);
  --muted-3: rgba(255, 255, 255, 0.4);
  --muted-strong: rgba(255, 255, 255, 0.55);
  --accent: #fbcf3b;
  --accent-soft: #ffe066;
  --accent-dark: #a16207;
  --accent-glow: 251, 207, 59; /* rgb triplet for use in rgba() */
  --accent-bg-strong: rgba(251, 207, 59, 0.16);
  --accent-bg-soft: rgba(251, 207, 59, 0.08);
  --accent-border: rgba(251, 207, 59, 0.32);
  --bg-radial-1: rgba(251, 207, 59, 0.12);
  --bg-radial-2: rgba(251, 207, 59, 0.06);
  --btn-grad-a: #ffe066;
  --btn-grad-b: #f5c211;
  --btn-fg: #131207;
  --hero-grid: rgba(255, 255, 255, 0.045);
  --input-bg: rgba(7, 7, 8, 0.6);
  --input-bg-focus: rgba(7, 7, 8, 0.9);
  --map-filter: invert(0.92) hue-rotate(180deg) saturate(0.6) brightness(0.95);
  --tile-shadow-1: #1a0608;
  --tile-shadow-2: #2d0e12;
}

[data-theme="light"] {
  --bg: #fafaf7;
  --bg-soft: #f3f3ee;
  --surface: #ffffff;
  --surface-2: #ffffff;
  --surface-3: rgba(10, 12, 16, 0.02);
  --surface-hover: rgba(10, 12, 16, 0.05);
  --border: rgba(10, 12, 16, 0.08);
  --border-strong: rgba(10, 12, 16, 0.18);
  --fg: #0a0c10;
  --muted: rgba(10, 12, 16, 0.7);
  --muted-2: rgba(10, 12, 16, 0.55);
  --muted-3: rgba(10, 12, 16, 0.45);
  --muted-strong: rgba(10, 12, 16, 0.5);
  --accent: #a16207;
  --accent-soft: #b8860b;
  --accent-dark: #713f12;
  --accent-glow: 202, 138, 4;
  --accent-bg-strong: rgba(202, 138, 4, 0.14);
  --accent-bg-soft: rgba(202, 138, 4, 0.07);
  --accent-border: rgba(202, 138, 4, 0.35);
  --bg-radial-1: rgba(251, 207, 59, 0.14);
  --bg-radial-2: rgba(251, 207, 59, 0.07);
  --btn-grad-a: #fcd34d;
  --btn-grad-b: #eab308;
  --btn-fg: #1c1917;
  --hero-grid: rgba(10, 12, 16, 0.06);
  --input-bg: #ffffff;
  --input-bg-focus: #ffffff;
  --map-filter: none;
  --tile-shadow-1: #f7f0d8;
  --tile-shadow-2: #efe3b8;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

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

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  color: var(--fg);
  background:
    radial-gradient(900px 600px at 85% -10%, var(--bg-radial-1), transparent 60%),
    radial-gradient(700px 500px at -10% 30%, var(--bg-radial-2), transparent 60%),
    var(--bg);
  background-attachment: fixed;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

/* Long German/Croatian compound words shouldn't blow past the column. */
h1, h2, h3, p, li, span, a, button {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* ─────── Generic semantic utilities used in markup ─────── */
.text-fg {
  color: var(--fg);
}
.text-muted {
  color: var(--muted);
}
.text-muted-2 {
  color: var(--muted-2);
}
.text-muted-3 {
  color: var(--muted-3);
}
.text-muted-strong {
  color: var(--muted-strong);
}

/* ─────── Nav ─────── */
#nav.is-scrolled {
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-text {
  color: var(--muted);
}

.nav-link {
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.nav-link:hover {
  color: var(--fg);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--accent);
  transition: right 0.3s ease;
}
.nav-link:hover::after {
  right: 0;
}

.mobile-menu-panel {
  background: color-mix(in srgb, var(--bg) 95%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: var(--border);
}

.mobile-link {
  display: block;
  padding: 12px 8px;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 500;
}
.mobile-link:hover {
  background: var(--surface-hover);
  color: var(--fg);
}

/* ─────── Icon button (theme toggle + mobile menu) ─────── */
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--fg);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease,
    transform 0.15s ease;
  cursor: pointer;
}
.icon-btn:hover {
  background: var(--surface-hover);
  border-color: var(--border-strong);
}
.icon-btn:active {
  transform: scale(0.96);
}
.icon-btn svg {
  width: 18px;
  height: 18px;
}

/* Show sun in light mode, moon in dark mode */
[data-theme="dark"] .icon-sun {
  display: none;
}
[data-theme="light"] .icon-moon {
  display: none;
}

/* ─────── Language switcher ─────── */
.lang-wrap {
  position: relative;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 12px;
  height: 38px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--fg);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.lang-btn:hover {
  background: var(--surface-hover);
  border-color: var(--border-strong);
}

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 150px;
  padding: 6px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px -12px rgba(0, 0, 0, 0.4);
  z-index: 50;
  list-style: none;
}

.lang-opt {
  display: block;
  width: 100%;
  text-align: left;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--fg);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.lang-opt:hover,
.lang-opt.is-active {
  background: var(--accent-bg-soft);
  color: var(--accent);
}
.lang-opt.is-active {
  font-weight: 600;
}

/* ─────── Mobile menu tools ─────── */
.mobile-tools {
  display: flex;
  gap: 8px;
  padding: 8px;
  border-radius: 14px;
  background: var(--surface-3);
  border: 1px solid var(--border);
}

.mobile-tool {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--fg);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.mobile-tool:hover {
  background: var(--surface-hover);
}
.mobile-tool svg {
  width: 16px;
  height: 16px;
}

.mobile-lang {
  display: inline-flex;
  margin-left: auto;
  padding: 2px;
  border-radius: 999px;
  background: var(--surface-hover);
  border: 1px solid var(--border);
}

.mobile-lang-opt {
  padding: 6px 12px;
  border: 0;
  background: transparent;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  letter-spacing: 0.06em;
  transition: background 0.15s ease, color 0.15s ease;
}
.mobile-lang-opt.is-active {
  background: var(--btn-grad-b);
  color: var(--btn-fg);
}

/* ─────── Logo ─────── */
.logo-img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

/* ─────── Selection & theme-aware accent text ─────── */
::selection {
  background: var(--accent);
  color: #131207;
}
.accent-text {
  color: var(--accent);
}
.hover-accent:hover {
  color: var(--accent-soft);
}

/* ─────── Eyebrow ─────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 12px;
  border-radius: 999px;
  background: var(--surface-3);
  border: 1px solid var(--border);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 600;
}
.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-bg-strong);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(var(--accent-glow), 0.35);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(var(--accent-glow), 0);
  }
}

/* ─────── Buttons ─────── */
.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(180deg, var(--btn-grad-a), var(--btn-grad-b));
  color: var(--btn-fg);
  box-shadow: 0 10px 30px -10px rgba(var(--accent-glow), 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px -10px rgba(var(--accent-glow), 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: var(--surface-3);
  border: 1px solid var(--border-strong);
  color: var(--fg);
}
.btn-ghost:hover {
  background: var(--surface-hover);
  border-color: var(--border-strong);
}

.btn-lg {
  padding: 14px 22px;
  font-size: 0.95rem;
}

/* ─────── HERO ─────── */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--hero-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--hero-grid) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 30% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 40%, #000 30%, transparent 75%);
  opacity: 0.6;
}

.hero-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  right: -200px;
  top: -200px;
  background: radial-gradient(closest-side, rgba(var(--accent-glow), 0.25), transparent);
  filter: blur(60px);
  pointer-events: none;
}

.hero-stroke {
  -webkit-text-stroke: 1.5px var(--fg);
  color: transparent;
  font-style: italic;
}

/* ─────── USP / section backgrounds ─────── */
.usp-bar {
  background: var(--surface-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-section,
.about-section {
  background: var(--surface-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-divider {
  border-color: var(--border);
}

/* ─────── USP icons ─────── */
.usp-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--accent-bg-strong), var(--accent-bg-soft));
  border: 1px solid var(--accent-border);
  color: var(--accent);
}
.usp-icon svg {
  width: 22px;
  height: 22px;
}

/* ─────── Service cards ─────── */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface-3), transparent);
  transition: transform 0.35s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  min-height: 480px;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--border-strong), transparent 45%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--accent-glow), 0.35);
  box-shadow: 0 30px 60px -20px rgba(var(--accent-glow), 0.2);
}
.service-card:hover::before {
  opacity: 1;
}

.service-card.featured {
  background: linear-gradient(180deg, var(--accent-bg-soft), transparent);
  border-color: rgba(var(--accent-glow), 0.25);
}

.service-card-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 0%, rgba(var(--accent-glow), 0.18), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover .service-card-bg,
.service-card.featured .service-card-bg {
  opacity: 1;
}

.featured-flag {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: linear-gradient(180deg, var(--btn-grad-a), var(--btn-grad-b));
  color: var(--btn-fg);
  box-shadow: 0 6px 16px -4px rgba(var(--accent-glow), 0.6);
}

.service-num {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent-soft);
  letter-spacing: 0.18em;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--accent-soft);
  font-size: 0.95rem;
  transition: color 0.2s ease, gap 0.2s ease;
}
.service-link:hover {
  color: var(--fg);
  gap: 14px;
}
.service-link:hover svg {
  transform: translateX(4px);
}

.check-li {
  position: relative;
  padding-left: 26px;
}
.check-li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-bg-strong);
  border: 1px solid var(--accent-border);
}
.check-li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 11px;
  width: 6px;
  height: 3px;
  border-left: 1.5px solid var(--accent-soft);
  border-bottom: 1.5px solid var(--accent-soft);
  transform: rotate(-45deg);
}

/* ─────── Process steps ─────── */
.step {
  position: relative;
  padding-left: 24px;
}
.step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(var(--accent-glow), 0.6), transparent);
}
.step-num {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--accent-soft);
  letter-spacing: 0.18em;
}
.step-title {
  margin-top: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--fg);
}
.step-text {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.96rem;
}

/* ─────── Gallery ─────── */
.gallery-tile {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--border);
  background-color: var(--surface);
  transition: transform 0.4s ease, border-color 0.3s ease;
  cursor: pointer;
  margin: 0;
}
.gallery-tile:hover {
  transform: scale(1.015);
  border-color: rgba(var(--accent-glow), 0.45);
}

.gallery-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-tile:hover img {
  transform: scale(1.04);
}

.gallery-tile::after {
  content: attr(data-tag);
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  color: var(--fg);
}

.gallery-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.55));
  z-index: 1;
}
[data-theme="light"] .gallery-tile::before {
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.2));
}

/* ─────── About ─────── */
.about-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface-3), transparent);
}
.about-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--hero-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--hero-grid) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000, transparent 75%);
}

.about-li {
  display: flex;
  gap: 16px;
}
.about-bullet {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--accent-bg-strong), var(--accent-bg-soft));
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 14px;
}

.stat-box {
  padding: 18px 16px;
  border-radius: 16px;
  background: var(--surface-3);
  border: 1px solid var(--border);
}
.stat-value {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--fg);
}
.stat-label {
  margin-top: 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-2);
}

/* ─────── Contact cards & form ─────── */
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 16px;
  background: var(--surface-3);
  border: 1px solid var(--border);
  color: var(--fg);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  cursor: pointer;
}
.contact-card:hover {
  background: var(--surface-hover);
  border-color: rgba(var(--accent-glow), 0.3);
  transform: translateY(-1px);
}
.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--accent-bg-strong), var(--accent-bg-soft));
  border: 1px solid var(--accent-border);
  color: var(--accent);
}
.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-form {
  padding: 24px;
  border-radius: 20px;
  background: var(--surface-3);
  border: 1px solid var(--border);
}
@media (min-width: 640px) {
  .contact-form {
    padding: 30px;
  }
}

.field span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--muted-strong);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--input-bg);
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted-3);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--input-bg-focus);
  box-shadow: 0 0 0 3px rgba(var(--accent-glow), 0.18);
}
.field textarea {
  resize: vertical;
  min-height: 110px;
}
.field select {
  appearance: none;
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
[data-theme="dark"] .field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
}
[data-theme="light"] .field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230a0c10' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
}
.field select option {
  background: var(--surface);
  color: var(--fg);
}

.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 500;
}
.form-status.success {
  background: var(--accent-bg-soft);
  border: 1px solid var(--accent-border);
  color: var(--accent);
}
.form-status.error {
  background: rgba(225, 82, 82, 0.1);
  border: 1px solid rgba(225, 82, 82, 0.35);
  color: #e15252;
}

/* ─────── Map ─────── */
.map-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: var(--map-filter);
}

/* ─────── Footer ─────── */
.footer-link {
  color: var(--muted);
  transition: color 0.2s ease;
}
.footer-link:hover {
  color: var(--accent-soft);
}

/* ─────── Reveal animation ─────── */
.reveal {
  transform: translateY(16px);
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.in {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transform: none;
    transition: none;
  }
  .eyebrow .dot {
    animation: none;
  }
}

/* ─────── Focus states ─────── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─────── Print/email-friendly ─────── */
@media print {
  body {
    background: white !important;
    color: black !important;
  }
  #nav,
  footer,
  .map-wrap,
  .contact-form {
    display: none !important;
  }
}
