/* ===== O.Z.O.R.A. TOUR 2026 - style.css ===== */

:root {
  /* Palette lifted directly from the O.Z.O.R.A. TOUR logo (bright cyan / dark teal / mint / cream) */
  --teal-dark: #0e4b57;   /* dark teal from the logo icon background - dark sections, header */
  --teal: #148ca7;        /* medium teal from the logo - primary accent, buttons */
  --teal-mid: #1ee9f0;    /* bright cyan from the logo pattern - tags, secondary accents */
  --teal-light: #7dffe2;  /* mint from the logo pattern - light accents, gallery */
  --cream: #fef7bd;       /* pale yellow from the logo center - CTA buttons, highlights */
  --ink: #0e2024;
  --ink-soft: #3a5157;
  --white: #ffffff;
  --off-white: #f2fbfb;
  --border: #dcedee;
  --shadow: 0 10px 30px rgba(14, 75, 87, 0.16);
  --radius: 16px;
  --max-width: 1160px;
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--off-white);
  line-height: 1.6;
}

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

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }

h1, h2, h3, h4 {
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--teal-dark);
}

h2.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  text-align: center;
  margin-bottom: 8px;
}

p.section-lead {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal-mid);
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--cream);
  color: var(--teal-dark);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}
.btn-primary:hover { background: #fff3c4; }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.8);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-teal {
  background: var(--teal);
  color: #fff;
}
.btn-teal:hover { background: var(--teal-dark); }

/* ---------- Teszt banner + modal ---------- */
.test-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  background: #ffcc33;
  color: #1a1a1a;
  text-align: center;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 16px;
  line-height: 1.4;
}

.test-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 32, 36, 0.72);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.test-modal-overlay.hidden { display: none; }
.test-modal {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 440px;
  width: 100%;
  padding: 32px 28px;
  text-align: center;
}
.test-modal h3 { margin-top: 0; color: var(--teal-dark); }
.test-modal p { color: var(--ink-soft); margin-bottom: 24px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: var(--banner-h, 0px); left: 0; right: 0;
  z-index: 100;
  background: rgba(14, 75, 87, 0.0);
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(14, 75, 87, 0.94);
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
  padding: 10px 0;
  backdrop-filter: blur(6px);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: #fff;
  font-size: 1.05rem;
}
.brand img { width: 64px; height: 64px; border-radius: 14px; transition: width 0.25s ease, height 0.25s ease; }
.site-header.scrolled .brand img { width: 46px; height: 46px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.92;
}
.nav-links a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }

.nav-cta { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 880px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 260px;
    background: var(--teal-dark);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.25);
    z-index: 150; /* a fix fejléc (100) fölött, de a lightbox (300) alatt - mindig a térkép (1) fölött marad */
  }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: block; }
  .nav-cta .btn-teal.header-only { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  background: linear-gradient(180deg, rgba(8,45,53,0.5) 0%, rgba(8,45,53,0.5) 45%, rgba(6,32,38,0.82) 100%),
              url("../images/hero-bg.jpg") center top/cover no-repeat;
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: calc(140px + var(--banner-h, 0px));
  padding-bottom: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 22px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin-bottom: 6px;
  text-shadow: 0 6px 24px rgba(0,0,0,0.35);
}
.hero .hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 30px;
}
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  margin-bottom: 34px;
  font-size: 0.98rem;
  font-weight: 600;
}
.hero-facts span { display: flex; align-items: center; gap: 8px; }

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 46px;
}

/* countdown */
.countdown {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.countdown .cd-item {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 14px;
  padding: 16px 20px;
  min-width: 84px;
  text-align: center;
  backdrop-filter: blur(4px);
}
.countdown .cd-num {
  font-size: 1.9rem;
  font-weight: 800;
  display: block;
  font-variant-numeric: tabular-nums;
}
.countdown .cd-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream);
}

/* ---------- Bemutatkozás / About ---------- */
.about {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.about-text p { color: var(--ink-soft); margin-bottom: 16px; }
.highlight-box {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.highlight-box h3 { color: #fff; font-size: 1.15rem; margin-bottom: 10px; }
.highlight-list { list-style: none; margin: 0; padding: 0; }
.highlight-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  font-size: 0.95rem;
}
.highlight-list li:last-child { border-bottom: none; }
.highlight-list .ico { font-size: 1.2rem; }

.organizers {
  margin-top: 28px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.organizer-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  font-weight: 700;
  color: var(--teal-dark);
  font-size: 0.95rem;
  max-width: 300px;
}
.organizer-card span {
  display: block;
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

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

/* ---------- Távok ---------- */
.tavok { background: var(--off-white); }
.tav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tav-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-top: 6px solid var(--teal);
}
.tav-card.child { border-top-color: #e0a13b; }
.tav-card.family { border-top-color: var(--teal); }
.tav-card.sport { border-top-color: var(--teal-dark); }

.tav-card-head { padding: 28px 28px 0; }
.tav-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 8px;
}
.tav-card h3 { font-size: 1.35rem; margin-bottom: 2px; }
.tav-dist {
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal-dark);
  margin: 6px 0 2px;
}
.tav-dist small { font-size: 1rem; font-weight: 600; color: var(--ink-soft); }

.tav-card-body { padding: 18px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.tav-meta {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.tav-meta li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
}
.tav-meta li b { color: var(--ink); text-align: right; }

.tav-route {
  font-size: 0.85rem;
  color: var(--ink-soft);
  background: var(--off-white);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 18px;
  line-height: 1.5;
}
.tav-price {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.tav-price .price { font-size: 1.3rem; font-weight: 800; color: var(--teal-dark); }
.tav-price .price.free { color: #2f9e44; }

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

/* ---------- Táv térkép ---------- */
.tav-map-block {
  margin: 40px auto 0;
  max-width: 760px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
}
.tav-map-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}
.tav-map-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tav-map-tab {
  border: 2px solid var(--border);
  background: var(--off-white);
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 9px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tav-map-tab span {
  font-weight: 600;
  font-size: 0.78rem;
  opacity: 0.75;
}
.tav-map-tab:hover { border-color: var(--teal); color: var(--teal-dark); }
.tav-map-tab.active {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: #fff;
}
.tav-map-tab.active span { opacity: 0.85; }

.gpx-download {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal-dark);
  border: 2px solid var(--border);
  padding: 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
  transition: all 0.15s ease;
}
.gpx-download:hover { border-color: var(--teal); background: var(--off-white); }

.tav-map {
  width: 100%;
  height: 440px;
  background: var(--off-white);
  position: relative;
  z-index: 1; /* contains Leaflet's internal panes/controls (z-index up to 1000) so they never escape above the fixed header */
}

.tav-map-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
}
.tav-map-stats .stat { text-align: center; }
.tav-map-stats .stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal-dark);
  font-variant-numeric: tabular-nums;
}
.tav-map-stats .stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

.elev-profile-wrap {
  border-top: 1px solid var(--border);
  padding: 20px 22px 24px;
}
.elev-profile-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  font-weight: 700;
  margin-bottom: 10px;
}
.elev-profile {
  width: 100%;
  line-height: 0;
}
.elev-profile svg { width: 100%; height: auto; display: block; cursor: crosshair; }
.elev-profile .elev-grid-line { stroke: var(--border); stroke-width: 1; }
.elev-profile .elev-grid-label {
  font-size: 9px;
  fill: var(--ink-soft);
  font-family: "Segoe UI", Arial, sans-serif;
}
.elev-profile .elev-endpoint { stroke: #fff; stroke-width: 2; }

/* Leaflet marker label tweaks */
.ozora-marker-start, .ozora-marker-end {
  border-radius: 50%;
  width: 16px;
  height: 16px;
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.ozora-marker-start { background: #2f9e44; }
.ozora-marker-end { background: #e03131; }

@media (max-width: 640px) {
  .tav-map { height: 320px; }
  .tav-map-stats { gap: 24px; }
}

/* ---------- Nevezés ---------- */
.nevezes {
  background: linear-gradient(160deg, var(--teal-dark), var(--teal) 70%);
  color: #fff;
}
.nevezes h2.section-title, .nevezes .eyebrow { color: #fff; }
.nevezes p.section-lead { color: rgba(255,255,255,0.85); }

.nevezes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 48px;
}
.price-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
}
.price-card h4 { color: #fff; margin-bottom: 6px; font-size: 1.1rem; }
.price-card .amount { font-size: 2rem; font-weight: 800; color: var(--cream); margin: 8px 0; }
.price-card p { color: rgba(255,255,255,0.8); font-size: 0.88rem; margin: 0; }

.nevezes-info {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 32px;
  align-items: center;
}
.nevezes-info ul { margin: 0; padding-left: 20px; color: rgba(255,255,255,0.9); font-size: 0.95rem; }
.nevezes-info li { margin-bottom: 8px; }
.nevezes-cta { text-align: center; }
.nevezes-cta .btn { width: 100%; margin-bottom: 12px; font-size: 1.05rem; padding: 16px; }
.nevezes-cta small { display: block; color: rgba(255,255,255,0.7); font-size: 0.8rem; }
.deadline-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.18);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 14px;
}

@media (max-width: 880px) {
  .nevezes-grid { grid-template-columns: 1fr; }
  .nevezes-info { grid-template-columns: 1fr; }
}

/* ---------- Program ---------- */
.program { background: var(--white); }
.timeline { max-width: 760px; margin: 0 auto; }
.timeline-day {
  margin-bottom: 34px;
}
.timeline-day h3 {
  font-size: 1.1rem;
  color: var(--teal);
  border-bottom: 2px solid var(--border);
  padding-bottom: 10px;
  margin-bottom: 18px;
}
.timeline-row {
  display: flex;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.timeline-row:last-child { border-bottom: none; }
.timeline-time {
  min-width: 130px;
  font-weight: 800;
  color: var(--teal-dark);
  font-variant-numeric: tabular-nums;
}
.timeline-desc { color: var(--ink-soft); }
.timeline-desc b { color: var(--ink); }

/* ---------- Útvonal ---------- */
.utvonal { background: var(--off-white); }

/* ---------- Tudnivalók ---------- */
.tudnivalok { background: var(--white); }
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.info-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
}
.info-card h3 { font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
.info-card ul { margin: 0; padding-left: 20px; color: var(--ink-soft); font-size: 0.94rem; }
.info-card li { margin-bottom: 8px; }

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

/* ---------- Galéria ---------- */
.galeria { background: var(--off-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}
.gallery-placeholder {
  aspect-ratio: 1;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.9);
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  padding: 12px;
  opacity: 0.85;
}
.gallery-item {
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  border: none;
  padding: 0;
  cursor: pointer;
  background: none;
  display: block;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.08); }
.gallery-item:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; }

/* Lightbox */
.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 300;
  background: rgba(6, 20, 24, 0.92);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px 20px;
}
.lightbox-overlay.open { display: flex; }
.lightbox-img {
  max-width: min(90vw, 1100px);
  max-height: 78vh;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  object-fit: contain;
}
.lightbox-caption {
  color: rgba(255,255,255,0.85);
  margin-top: 16px;
  font-size: 0.95rem;
  text-align: center;
  max-width: 700px;
}
.lightbox-close {
  position: absolute;
  top: 18px; right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 6px 10px;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 2.2rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
@media (max-width: 620px) {
  .lightbox-nav { width: 42px; height: 42px; font-size: 1.8rem; }
  .lightbox-close { font-size: 2rem; top: 10px; right: 14px; }
}
@media (max-width: 880px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- GYIK ---------- */
.gyik { background: var(--white); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--off-white);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-q .plus { transition: transform 0.2s ease; font-size: 1.3rem; color: var(--teal); }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 22px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.faq-item.open .faq-a { padding-bottom: 20px; }

/* ---------- Kapcsolat / Footer ---------- */
.kapcsolat {
  background: var(--teal-dark);
  color: #fff;
}
.kapcsolat h2.section-title, .kapcsolat .eyebrow { color: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: center;
}
.contact-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 28px;
}
.contact-card h4 { color: #fff; margin-bottom: 8px; }
.contact-card p, .contact-card a { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.contact-card a:hover { text-decoration: underline; }

.site-footer {
  background: #072a30;
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 26px 0;
  font-size: 0.85rem;
}
.site-footer a { color: var(--cream); }

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

/* section spacing on small screens */
@media (max-width: 640px) {
  section { padding: 64px 0; }
}
