/* Průvodkyně krajinou – statický web */
:root {
  --bg: hsl(38, 25%, 95%);
  --fg: hsl(28, 22%, 14%);
  --primary: hsl(138, 32%, 22%);
  --primary-fg: hsl(38, 25%, 95%);
  --secondary: hsl(26, 28%, 32%);
  --muted: hsl(120, 12%, 86%);
  --gold: hsl(42, 65%, 48%);
  --gold-dark: hsl(42, 65%, 28%);
  --cream: hsl(38, 25%, 95%);
  --border: hsl(38, 18%, 78%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Nunito', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5 { font-family: 'Lora', Georgia, serif; }
.section-header h2, h2 { font-weight: 300; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1rem 0;
  transition: all 0.5s;
}
.nav.scrolled {
  background: rgba(255, 251, 245, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 251, 245, 0.3);
  padding: 0.5rem 0;
}
.nav-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  color: white;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.nav.scrolled .nav-logo { color: var(--fg); text-shadow: none; }
.nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
}
.nav.scrolled .nav-links a { color: var(--fg); }
.nav-links a:hover { color: var(--gold); }
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: white;
}
.nav.scrolled .nav-toggle { color: var(--fg); }
.nav-toggle-bar {
  width: 22px;
  height: 2px;
  background: currentColor;
}
.nav-mobile {
  display: none;
  background: rgba(255, 251, 245, 0.55);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(0,0,0,0.05);
  padding: 1rem 1.5rem;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; margin: 0; padding: 0; }
.nav-mobile a {
  display: block;
  padding: 0.5rem 0;
  font-size: 1rem;
  color: var(--fg);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--gold); }
@media (min-width: 768px) {
  .nav-logo { font-size: 1.5rem; }
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  /* from-foreground/85 via-foreground/70 to-foreground/95 – tmavší overlay jako v Next.js */
  background: linear-gradient(to bottom, rgba(28,22,14,0.85), rgba(28,22,14,0.7), rgba(28,22,14,0.95));
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 48rem;
  margin: 0 auto;
}
.hero-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.hero-subtitle .line {
  width: 4rem;
  height: 1px;
  background: rgba(212, 175, 55, 0.7);
}
.hero-subtitle span { color: var(--gold); font-size: 0.875rem; letter-spacing: 0.3em; font-weight: 600; text-shadow: 0 1px 2px rgba(0,0,0,0.3); }
.hero h1 {
  font-size: 3.75rem; /* text-6xl */
  color: var(--cream);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 2rem;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-tagline {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  color: var(--cream);
  font-style: italic;
  font-weight: 500;
  margin: 0 0 2.5rem;
  line-height: 1.5;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,251,245,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, rgba(255,251,245,0.5), transparent);
}
@media (min-width: 768px) {
  .hero h1 { font-size: 6rem; } /* text-8xl */
  .hero-tagline { font-size: 1.875rem; }
  h2, .section-header h2 { font-size: 3rem; } /* text-5xl jako v buildu */
}

/* Buttons */
.text-primary { color: var(--primary); }
.text-gold { color: var(--gold); }
.icon-map-pin { color: var(--gold); flex-shrink: 0; }
.icon-calendar { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover { background: var(--gold); color: var(--fg); }
/* Hero „Co nabízím“ – oranžovější, bg-gold/20 jako v Next.js */
.btn-hero-outline {
  border: 1px solid var(--gold);
  color: var(--cream);
  background: rgba(212, 175, 55, 0.2);
  font-weight: 600;
}
.btn-hero-outline:hover { background: var(--gold); color: var(--fg); }
.btn-primary {
  background: var(--primary);
  color: var(--primary-fg);
}
.btn-primary:hover { background: hsl(138, 32%, 28%); }
.btn-full { width: 100%; text-align: center; }

/* Sections */
.section { padding: 7rem 1.5rem; }
#o-mne { padding-top: 4rem; padding-bottom: 5rem; }
.section-muted { background: rgba(204, 214, 204, 0.3); }
.section-light { background: rgba(204, 214, 204, 0.2); }
.section-muted-light { background: rgba(204, 214, 204, 0.2); }
.container { max-width: 72rem; margin: 0 auto; }
.container-narrow { max-width: 64rem; margin: 0 auto; }
.label {
  font-size: 0.875rem; /* text-sm jako v buildu */
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: 2.25rem; font-weight: 300; margin: 0; }
h2 { font-size: 2.25rem; font-weight: 300; }
.divider {
  width: 3rem;
  height: 1px;
  background: var(--gold);
  margin: 0 0 2rem;
}
.divider.center { margin: 1.5rem auto 0; }
.text-block p,
p.text-block { margin: 0 0 1.25rem; font-size: 1.125rem; line-height: 1.7; }
.text-block p:last-child,
p.text-block:last-child { margin-bottom: 0; }
.text-block .italic { font-style: italic; font-weight: 500; }
.text-secondary { color: var(--secondary); font-style: italic; }
.section-quote {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--secondary);
  text-align: center;
  max-width: 42rem;
  margin: 4rem auto 0;
  line-height: 1.6;
}
.text-center { text-align: center; }

/* Grid */
.grid-2 {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .order-1 { order: 1; }
  .order-2 { order: 2; }
}

/* About photo */
.about-photo { position: relative; }
.about-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  border: none; /* žádný zelený border – jen stín + zlatý roh */
}
.photo-frame {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 6rem;
  height: 6rem;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-radius: 0 0 0.75rem 0;
}
.photo-frame.tr {
  top: -1rem;
  right: -1rem;
  bottom: auto;
  width: 6rem;
  height: 6rem;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-bottom: none;
  border-radius: 0 0.75rem 0 0; /* pravý horní roh – zarovnáno s zaoblením obrázku */
}
.photo-frame.tl {
  top: -1rem;
  left: -1rem;
  right: auto;
  bottom: auto;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  border-bottom: none;
  border-right: none;
  border-radius: 0.75rem 0 0 0;
}
/* Mat za fotkou jen u O mně – teplý odstín (ne zelený muted) */
.about-photo.has-mat::before {
  content: '';
  position: absolute;
  inset: -1rem;
  background: hsl(38, 15%, 91%);
  border-radius: 1rem;
  z-index: -1;
}
.aspect-video-wrap.about-photo img { aspect-ratio: 16/9; }
/* Pro koho – fotka s zlatým rohem vpravo nahoře jako u ostatních */
#pro-koho .about-photo { max-width: 26rem; }

/* Services */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 0 auto;
  max-width: 64rem;
}
.service-card {
  width: 100%;
}
@media (min-width: 640px) {
  .service-card { width: calc((100% - 2rem) / 2); }
}
@media (min-width: 768px) {
  .service-card { width: calc((100% - 4rem) / 3); }
}
.service-card {
  background: var(--bg);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s, background-color 0.3s;
  cursor: pointer;
}
.service-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-4px);
  background-color: rgba(255, 251, 245, 0.9);
}
.service-card:hover .service-icon {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.15);
}
.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(56, 95, 66, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
  transition: color 0.3s, background 0.3s;
}
.akce-card:hover .service-icon { color: var(--gold); }
.service-icon svg { flex-shrink: 0; }
.text-primary { color: var(--primary); }
.text-gold { color: var(--gold); }
.icon-map-pin { color: var(--gold); display: inline-block; vertical-align: middle; margin-right: 0.25rem; }
.places-tags span { display: inline-flex; align-items: center; gap: 0.375rem; }
.btn-icon, .icon-inline { display: inline-block; vertical-align: middle; margin-right: 0.5rem; }
.service-card h3 { font-size: 1.5rem; margin: 0 0 0.75rem; }
.service-card p { margin: 0; color: rgba(28,22,14,0.85); font-size: 1.125rem; line-height: 1.6; }

/* Pro koho */
.pro-koho-list { display: flex; flex-direction: column; gap: 1rem; }
.pro-koho-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.125rem;
  line-height: 1.6;
}
.pro-koho-item .check {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(56, 95, 66, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--primary);
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
}
.step { text-align: center; }
.step-num {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-fg);
  font-family: 'Lora', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all 0.3s;
}
.step:hover .step-num { background: var(--gold); color: var(--fg); }
.step h3 { font-size: 1.5rem; margin: 0 0 0.75rem; }
.step p { margin: 0; color: rgba(28,22,14,0.85); font-size: 1.125rem; line-height: 1.6; }

/* Akce */
.akce-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .akce-grid { grid-template-columns: 1fr 1fr; }
}
.akce-card {
  background: rgba(204, 214, 204, 0.4);
  border-radius: 0.75rem;
  padding: 2.5rem;
  border: 1px solid rgba(0,0,0,0.05);
  transition: border-color 0.3s;
}
.akce-card:hover { border-color: rgba(212, 175, 55, 0.4); }
.akce-card h3 { font-size: 1.875rem; font-weight: 300; margin: 0 0 1rem; }
.akce-card p { margin: 0 0 1.5rem; font-size: 1.125rem; line-height: 1.6; color: rgba(28,22,14,0.85); }
.link-arrow {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  border-bottom: 1px solid rgba(56, 95, 66, 0.3);
  padding-bottom: 2px;
  transition: all 0.2s;
}
.link-arrow:hover { color: var(--gold); border-color: var(--gold); }
.calendar-box {
  background: rgba(56, 95, 66, 0.05);
  border: 1px solid rgba(56, 95, 66, 0.2);
  border-radius: 0.75rem;
  padding: 2.5rem;
  text-align: center;
}
.calendar-icon { font-size: 2rem; margin-bottom: 1rem; }
.calendar-box h3 { font-size: 1.5rem; font-weight: 300; margin: 0 0 0.75rem; }
.calendar-box p {
  margin: 0 0 1.5rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(28,22,14,0.85);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
.calendar-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* Místa */
.places-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.places-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: var(--bg);
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid rgba(0,0,0,0.05);
}
.places-tags .muted { color: rgba(28,22,14,0.5); font-style: italic; font-weight: normal; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
.gallery-item {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 0.5rem;
  overflow: hidden;
  aspect-ratio: 1;
  display: block;
}
.gallery-item:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(28, 22, 14, 0.9);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: rgba(255,251,245,0.8);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { color: var(--cream); }
.lightbox-close { top: 1rem; right: 1rem; font-size: 2.5rem; }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}
.lightbox-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,251,245,0.7);
  font-size: 0.875rem;
  margin: 0;
}

/* Wave */
.wave {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wave svg {
  width: 100%;
  fill: rgba(204, 214, 204, 0.6);
}
.wave-up svg { transform: rotate(180deg); fill: rgba(204, 214, 204, 0.3); }

/* Contact */
.contact-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-links { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.contact-link:hover { color: var(--gold); }
.contact-icon { font-size: 1.25rem; }
.contact-icon-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(56, 95, 66, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  transition: color 0.2s, background 0.2s;
}
.contact-link:hover .contact-icon-circle { background: rgba(212, 175, 55, 0.2); color: var(--gold); }
.contact-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.125rem;
}

/* Form */
.contact-form-wrap {
  background: rgba(56, 95, 66, 0.05);
  border: 1px solid rgba(56, 95, 66, 0.1);
  border-radius: 0.75rem;
  padding: 2rem;
  min-height: 400px;
}
.contact-form-plain {
  background: transparent;
  border: none;
  padding: 0;
  min-height: auto;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}
.contact-form label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(56, 95, 66, 0.2);
  border-radius: 0.5rem;
  background: var(--bg);
  color: var(--fg);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(28,22,14,0.4); }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(56, 95, 66, 0.6);
  box-shadow: 0 0 0 2px rgba(56, 95, 66, 0.1);
}
.contact-form textarea { resize: none; }
.required { color: var(--gold-dark); }
.optional { color: rgba(28,22,14,0.4); font-weight: normal; text-transform: none; letter-spacing: normal; }
.form-note { font-size: 0.75rem; color: rgba(28,22,14,0.5); text-align: center; margin: 0; }
.form-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}
.form-success-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(56, 95, 66, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.form-success h3 { font-size: 1.5rem; margin: 0 0 0.75rem; }
.form-success p {
  margin: 0 0 2rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(28,22,14,0.8);
  max-width: 20rem;
}
.form-success-link {
  font-size: 0.875rem;
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}
.form-success-link:hover { color: var(--primary); }
button.form-success-link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}
.btn.loading { opacity: 0.6; cursor: not-allowed; }
.btn.loading .btn-text::after {
  content: '…';
  animation: dots 1s steps(4, end) infinite;
}
@keyframes dots {
  0%, 20% { content: '.'; }
  40% { content: '..'; }
  60%, 100% { content: '...'; }
}

/* Footer */
.footer {
  background: var(--primary);
  color: var(--primary-fg);
  padding: 3rem 1.5rem;
}
.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-title { font-family: 'Lora', Georgia, serif; font-size: 1.5rem; font-weight: 300; margin: 0; }
.footer-copy { font-size: 0.875rem; opacity: 0.8; margin: 0.25rem 0 0; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
